From dd17e81cc9dd31e320241addc2068026ae79c458 Mon Sep 17 00:00:00 2001 From: Filippo Mutta Date: Wed, 1 Oct 2025 08:12:41 +0200 Subject: [PATCH] USB: Fixed relative paths for deps in usb/ dir --- usb/usbhubd/Cargo.toml | 2 +- usb/xhcid/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/usb/usbhubd/Cargo.toml b/usb/usbhubd/Cargo.toml index 708234e823..8534ebb2a1 100644 --- a/usb/usbhubd/Cargo.toml +++ b/usb/usbhubd/Cargo.toml @@ -11,4 +11,4 @@ log = "0.4" redox_syscall = "0.5" xhcid = { path = "../xhcid" } -common = { path = "../common" } +common = { path = "../../common" } diff --git a/usb/xhcid/Cargo.toml b/usb/xhcid/Cargo.toml index 7f566ce208..e59d63cd61 100644 --- a/usb/xhcid/Cargo.toml +++ b/usb/xhcid/Cargo.toml @@ -29,7 +29,7 @@ smallvec = { version = "1", features = ["serde"] } thiserror = "1" toml = "0.5" -common = { path = "../common" } -pcid = { path = "../pcid" } +common = { path = "../../common" } +pcid = { path = "../../pcid" } libredox = "0.1.3" regex = "1.10.6"