fix: use local path deps for redox_syscall, redoxfs, libredox

This commit is contained in:
Red Bear OS
2026-07-05 23:54:35 +03:00
parent e604868baf
commit d90f84883e
2 changed files with 2690 additions and 3 deletions
Generated
+2685
View File
File diff suppressed because it is too large Load Diff
+5 -3
View File
@@ -34,8 +34,8 @@ pkgar-core = { version = "0.2", optional = true }
pkgar-keys = { version = "0.2", optional = true }
rand = { version = "0.9", optional = true }
redox-pkg = { version = "0.3", features = ["indicatif"], optional = true }
redox_syscall = { version = "0.7", optional = true }
redoxfs = { version = "0.9", optional = true, default-features = false, features = ["std", "log"] }
redox_syscall = { path = "../syscall", optional = true }
redoxfs = { path = "../redoxfs", optional = true, default-features = false, features = ["std", "log"] }
rust-argon2 = { version = "3", optional = true }
serde = "1"
serde_derive = "1.0"
@@ -44,7 +44,7 @@ toml = "0.8"
uuid = { version = "1.4", features = ["v4"], optional = true }
[target.'cfg(target_os = "redox")'.dependencies]
libredox = "0.1"
libredox = { path = "../libredox" }
ring = "=0.17.8"
[features]
@@ -69,3 +69,5 @@ fuse = ["redoxfs/fuse"]
[patch.crates-io]
# https://github.com/briansmith/ring/issues/1999
ring = { git = "https://gitlab.redox-os.org/redox-os/ring.git", branch = "redox-0.17.8" }
redox_syscall = { path = "../syscall" }
libredox = { path = "../libredox" }