From e6be9134d8395f9ec6dcd46cb972c3c48aabe532 Mon Sep 17 00:00:00 2001 From: Red Bear OS Date: Sun, 5 Jul 2026 23:58:07 +0300 Subject: [PATCH] fix: use local path deps for redox_syscall and libredox --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 927ac840a8..474794f82d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ log = { version = "0.4.14", default-features = false, optional = true } lz4_flex = { version = "0.11", default-features = false, features = ["checked-decode"] } parse-size = { version = "1", optional = true } range-tree = { version = "0.1", optional = true } -redox_syscall = "0.9.0" +redox_syscall = { path = "../syscall" } seahash = { version = "4.1.0", default-features = false } termion = { version = "4", optional = true } uuid = { version = "1.4", default-features = false } @@ -85,7 +85,7 @@ std = [ fuser = { version = "0.16", optional = true } [target.'cfg(target_os = "redox")'.dependencies] -libredox = { version = "0.1.18", optional = true } +libredox = { path = "../libredox", optional = true } redox-path = "0.3.0" redox-scheme = { version = "0.11.2", optional = true } @@ -94,3 +94,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } [dev-dependencies] assert_cmd = "2.0.17" + +[patch.crates-io] +redox_syscall = { path = "../syscall" } +libredox = { path = "../libredox" }