fix: use local path deps for redox_syscall and libredox

This commit is contained in:
Red Bear OS
2026-07-05 23:58:07 +03:00
parent f29cbc3dfe
commit e6be9134d8
+6 -2
View File
@@ -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" }