diff --git a/Cargo.lock b/Cargo.lock index db9e846d2..a146a60eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -324,7 +324,7 @@ dependencies = [ "pbkdf2", "pem-rfc7468", "pkcs5", - "rand 0.10.0-rc.5", + "rand 0.10.0-rc.6", "rsa", "sha1", "sha2", @@ -1188,8 +1188,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.10.0-rc.5" -source = "git+https://github.com/rust-random/rand#75fe38fff59e5abb16ed5a146d61960cad27dc0f" +version = "0.10.0-rc.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bccc05ac8fad6ee391f3cc6725171817eed960345e2fb42ad229d486c1ca2d98" dependencies = [ "chacha20", "getrandom 0.4.0-rc.0", @@ -1953,7 +1954,7 @@ dependencies = [ "ecdsa", "hex-literal", "p256", - "rand 0.10.0-rc.5", + "rand 0.10.0-rc.6", "rsa", "rstest", "sha1", @@ -1984,7 +1985,7 @@ dependencies = [ "digest", "hex-literal", "lazy_static", - "rand 0.10.0-rc.5", + "rand 0.10.0-rc.6", "rand_core 0.10.0-rc-3", "rsa", "sha1", diff --git a/Cargo.toml b/Cargo.toml index fc979ce2c..866c98d48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,5 +60,3 @@ tls_codec_derive = { path = "./tls_codec/derive" } x509-tsp = { path = "./x509-tsp" } x509-cert = { path = "./x509-cert" } x509-ocsp = { path = "./x509-ocsp" } - -rand = { git = "https://github.com/rust-random/rand" } diff --git a/cms/Cargo.toml b/cms/Cargo.toml index b0ce0f291..9acbf16aa 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -42,7 +42,7 @@ hex-literal = "1" pem-rfc7468 = "1" pkcs5 = "0.8.0-rc.11" pbkdf2 = "0.13.0-rc.5" -rand = "0.10.0-rc.5" +rand = "0.10.0-rc.6" rsa = { version = "0.10.0-rc.11", features = ["sha2"] } ecdsa = { version = "0.17.0-rc.10", features = ["digest", "pem"] } p256 = "0.14.0-rc.2" diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index be4cd381a..843bebd80 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -29,7 +29,7 @@ tls_codec = { version = "0.4", default-features = false, features = ["derive"], [dev-dependencies] hex-literal = "1" -rand = "0.10.0-rc.5" +rand = "0.10.0-rc.6" rsa = { version = "0.10.0-rc.11", features = ["sha2"] } ecdsa = { version = "0.17.0-rc.9", features = ["digest", "pem"] } p256 = "0.14.0-rc.2" diff --git a/x509-ocsp/Cargo.toml b/x509-ocsp/Cargo.toml index e78ee53db..1d4bf8eab 100644 --- a/x509-ocsp/Cargo.toml +++ b/x509-ocsp/Cargo.toml @@ -29,7 +29,7 @@ signature = { version = "3.0.0-rc.5", optional = true, default-features = false, [dev-dependencies] hex-literal = "1" lazy_static = "1.5.0" -rand = "0.10.0-rc.1" +rand = "0.10.0-rc.6" rsa = { version = "0.10.0-rc.11", default-features = false, features = ["encoding", "sha2"] } sha1 = { version = "0.11.0-rc.3", default-features = false, features = ["oid"] } sha2 = { version = "0.11.0-rc.3", default-features = false, features = ["oid"] }