fix: use local path deps for redox_syscall, redoxfs, libredox
This commit is contained in:
Generated
+2685
File diff suppressed because it is too large
Load Diff
+5
-3
@@ -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" }
|
||||
|
||||
Reference in New Issue
Block a user