Use upstream rand!
This commit is contained in:
Generated
+9
-9
@@ -3,9 +3,9 @@ name = "userutils"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"argon2rs 0.2.5 (git+https://github.com/redox-os/argon2rs.git)",
|
||||
"rand 0.3.14 (git+https://github.com/redox-os/rand.git?branch=redox)",
|
||||
"rand 0.3.14 (git+https://github.com/rust-lang-nursery/rand.git)",
|
||||
"redox_syscall 0.1.0 (git+https://github.com/redox-os/syscall.git)",
|
||||
"termion 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"termion 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -32,18 +32,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.17"
|
||||
source = "git+https://github.com/redox-os/liblibc.git?branch=redox#fe0eb1175d38aa52ac3b36e9914d5217ddb0c305"
|
||||
source = "git+https://github.com/rust-lang/libc.git#9195462a49857ac4a22293f00cee6c79443c7272"
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
replace = "libc 0.2.17 (git+https://github.com/redox-os/liblibc.git?branch=redox)"
|
||||
replace = "libc 0.2.17 (git+https://github.com/rust-lang/libc.git)"
|
||||
|
||||
[[package]]
|
||||
name = "rand"
|
||||
version = "0.3.14"
|
||||
source = "git+https://github.com/redox-os/rand.git?branch=redox#74797f73a79e3356c65d52fb9d6447da3c3d99c9"
|
||||
source = "git+https://github.com/rust-lang-nursery/rand.git#71cba26d4c69eb57b9a10a5917e2fffd49de0b92"
|
||||
dependencies = [
|
||||
"libc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
@@ -55,7 +55,7 @@ source = "git+https://github.com/redox-os/syscall.git#2d238fada7e11972693f9e767d
|
||||
|
||||
[[package]]
|
||||
name = "termion"
|
||||
version = "1.1.2"
|
||||
version = "1.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"libc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@@ -65,8 +65,8 @@ dependencies = [
|
||||
"checksum argon2rs 0.2.5 (git+https://github.com/redox-os/argon2rs.git)" = "<none>"
|
||||
"checksum blake2-rfc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "0c6a476f32fef3402f1161f89d0d39822809627754a126f8441ff2a9d45e2d59"
|
||||
"checksum constant_time_eq 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "07dcb7959f0f6f1cf662f9a7ff389bcb919924d99ac41cf31f10d611d8721323"
|
||||
"checksum libc 0.2.17 (git+https://github.com/redox-os/liblibc.git?branch=redox)" = "<none>"
|
||||
"checksum libc 0.2.17 (git+https://github.com/rust-lang/libc.git)" = "<none>"
|
||||
"checksum libc 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "044d1360593a78f5c8e5e710beccdc24ab71d1f01bc19a29bcacdba22e8475d8"
|
||||
"checksum rand 0.3.14 (git+https://github.com/redox-os/rand.git?branch=redox)" = "<none>"
|
||||
"checksum rand 0.3.14 (git+https://github.com/rust-lang-nursery/rand.git)" = "<none>"
|
||||
"checksum redox_syscall 0.1.0 (git+https://github.com/redox-os/syscall.git)" = "<none>"
|
||||
"checksum termion 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b38671f376ed6147ce4bc7df3f216f68631beb17433c205e2adb30a2d6b33e45"
|
||||
"checksum termion 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d94a5aea537a27dd9412585d7d77f2c382a2361f2b6a7cf0a6a56ea04aa5b71a"
|
||||
|
||||
+2
-3
@@ -27,7 +27,7 @@ name = "sudo"
|
||||
path = "src/bin/sudo.rs"
|
||||
|
||||
[dependencies]
|
||||
rand = { git = "https://github.com/redox-os/rand.git", branch = "redox" }
|
||||
rand = { git = "https://github.com/rust-lang-nursery/rand.git" }
|
||||
redox_syscall = { git = "https://github.com/redox-os/syscall.git" }
|
||||
termion = "1.1"
|
||||
|
||||
@@ -36,5 +36,4 @@ git = "https://github.com/redox-os/argon2rs.git"
|
||||
default-features = false
|
||||
|
||||
[replace]
|
||||
"libc:0.2.17" = { git = "https://github.com/redox-os/liblibc.git", branch = "redox" }
|
||||
"rustc-serialize:0.3.19" = { git = "https://github.com/redox-os/rustc-serialize.git" }
|
||||
"libc:0.2.17" = { git = "https://github.com/rust-lang/libc.git" }
|
||||
|
||||
Reference in New Issue
Block a user