From 6c3c3128198f0fbac7364b03bb79dddebc45be3c Mon Sep 17 00:00:00 2001 From: Red Bear OS Date: Sun, 5 Jul 2026 23:54:34 +0300 Subject: [PATCH] fix: use local path deps for redox_syscall --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8b577f370e..3007e5732f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ crate-type = ["staticlib"] bitflags = "1.3.2" linked_list_allocator = "0.10.5" log = "0.4.17" -redox_syscall = "0.5" +redox_syscall = { path = "../syscall" } spin = "0.9.5" [dependencies.redoxfs] @@ -51,3 +51,6 @@ default = [] live = [] serial_debug = [] + +[patch.crates-io] +redox_syscall = { path = "../syscall" }