diff --git a/Cargo.toml b/Cargo.toml index c629cb75f2..10641e3302 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 } smallvec = { version = "1.15.2", optional = true } termion = { version = "4", optional = true } @@ -87,12 +87,16 @@ 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.4.0" -redox-scheme = { version = "0.11.2", optional = true } +redox-scheme = { path = "../redox-scheme", optional = true } [lints.rust] 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" }