From 1151ec36a9a7cc7f39dcd77b00606c87728d05f7 Mon Sep 17 00:00:00 2001 From: auronandace Date: Sun, 22 Mar 2026 08:07:48 +0000 Subject: [PATCH 1/2] update libredox dependency for hwd --- Cargo.toml | 2 +- drivers/hwd/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 092776fa71..ca214f3e3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ drm = "0.14.2" drm-sys = "0.8.1" libc = "0.2.181" log = "0.4" -libredox = "0.1.14" +libredox = "0.1.14" # remember to keep hwd in sync orbclient = "0.3.51" redox_event = "0.4.6" redox-ioctl = { git = "https://gitlab.redox-os.org/redox-os/relibc.git" } diff --git a/drivers/hwd/Cargo.toml b/drivers/hwd/Cargo.toml index 01795d5572..651fb6943c 100644 --- a/drivers/hwd/Cargo.toml +++ b/drivers/hwd/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" fdt = "0.1.5" log.workspace = true ron = "0.8.1" -libredox = { version = "0.1.12", default-features = false, features = ["std", "call"] } +libredox = { version = "0.1.14", default-features = false, features = ["std", "call"] } amlserde = { path = "../amlserde" } common = { path = "../common" } From 56457027480b3f46e0b47fb0e32ae5098dfe5c21 Mon Sep 17 00:00:00 2001 From: auronandace Date: Sun, 22 Mar 2026 08:28:04 +0000 Subject: [PATCH 2/2] actually use workspace dependency --- Cargo.toml | 2 +- drivers/hwd/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ca214f3e3c..092776fa71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ drm = "0.14.2" drm-sys = "0.8.1" libc = "0.2.181" log = "0.4" -libredox = "0.1.14" # remember to keep hwd in sync +libredox = "0.1.14" orbclient = "0.3.51" redox_event = "0.4.6" redox-ioctl = { git = "https://gitlab.redox-os.org/redox-os/relibc.git" } diff --git a/drivers/hwd/Cargo.toml b/drivers/hwd/Cargo.toml index 651fb6943c..f7565c5330 100644 --- a/drivers/hwd/Cargo.toml +++ b/drivers/hwd/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" fdt = "0.1.5" log.workspace = true ron = "0.8.1" -libredox = { version = "0.1.14", default-features = false, features = ["std", "call"] } +libredox = { workspace = true, default-features = false, features = ["std", "call"] } amlserde = { path = "../amlserde" } common = { path = "../common" }