diff --git a/Cargo.lock b/Cargo.lock index 97da9c9..0f3b9a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,9 +80,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chacha20" -version = "0.10.0-rc.9" +version = "0.10.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c81d916c6ae06736ec667b51f95ee5ff660a75f4ea6ce1bd932c942365c0ea43" +checksum = "c536927023d1c432e6e23a25ef45f6756094eac2ab460db5fb17a772acdfd312" dependencies = [ "cfg-if", "cpufeatures", @@ -276,8 +276,8 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand" -version = "0.10.0-rc.7" -source = "git+https://github.com/rust-random/rand?branch=rand_core%2Fv0.10.0-rc-6#79d9026b7284bc574401fe39cc763af09d6d092c" +version = "0.10.0-rc.8" +source = "git+https://github.com/rust-random/rand#9c98f59e8b042e5c7c714e933e49b384a4ce75a6" dependencies = [ "chacha20", "getrandom", @@ -286,9 +286,9 @@ dependencies = [ [[package]] name = "rand_core" -version = "0.10.0-rc-6" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70765ff7112b0fb2d272d24d9a2f907fc206211304328fe58b2db15a5649ef28" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" [[package]] name = "rustcrypto-ff" diff --git a/Cargo.toml b/Cargo.toml index 5d166ad..cd955b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,12 +18,12 @@ repository = "https://github.com/RustCrypto/ff" bitvec = { version = "1", default-features = false, optional = true } byteorder = { version = "1", default-features = false, optional = true } ff_derive = { version = "=0.14.0-pre.0", package = "rustcrypto-ff_derive", path = "ff_derive", optional = true } -rand_core = { version = "0.10.0-rc-6", default-features = false } +rand_core = { version = "0.10", default-features = false } subtle = { version = "2.2.1", default-features = false, features = ["i128"] } [dev-dependencies] blake2b_simd = "1" -rand = "0.10.0-rc.1" +rand = "0.10.0-rc.8" [features] default = ["bits", "std"] @@ -45,4 +45,3 @@ rustdoc-args = ["--cfg", "docsrs"] [patch.crates-io.rand] git = "https://github.com/rust-random/rand" -branch = "rand_core/v0.10.0-rc-6"