Skip to content

Commit 6a0b81d

Browse files
authored
Bump rand_core to v0.10; getrandom to v0.4 (#2198)
1 parent 0741268 commit 6a0b81d

File tree

7 files changed

+59
-64
lines changed

7 files changed

+59
-64
lines changed

Cargo.lock

Lines changed: 51 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ tls_codec_derive = { path = "./tls_codec/derive" }
6060
x509-tsp = { path = "./x509-tsp" }
6161
x509-cert = { path = "./x509-cert" }
6262
x509-ocsp = { path = "./x509-ocsp" }
63+
64+
rand = { git = "https://github.com/rust-random/rand" }

cms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ zeroize = { version = "1.8.1", optional = true }
3737

3838
[dev-dependencies]
3939
aes = "0.9.0-rc.2"
40-
getrandom = "0.4.0-rc.0"
40+
getrandom = "0.4"
4141
hex-literal = "1"
4242
pem-rfc7468 = "1"
4343
pkcs5 = "0.8.0-rc.13"

phc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ base64ct = "1.7"
1919
subtle = { version = "2", default-features = false }
2020

2121
# optional dependencies
22-
getrandom = { version = "0.4.0-rc.0", optional = true, default-features = false }
23-
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
22+
getrandom = { version = "0.4", optional = true, default-features = false }
23+
rand_core = { version = "0.10", optional = true, default-features = false }
2424

2525
[features]
2626
default = ["rand_core"]

pkcs5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ aes = { version = "0.9.0-rc.2", optional = true, default-features = false }
2525
aes-gcm = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["aes"] }
2626
des = { version = "0.9.0-rc.2", optional = true, default-features = false }
2727
pbkdf2 = { version = "0.13.0-rc.8", optional = true, default-features = false, features = ["hmac"] }
28-
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
28+
rand_core = { version = "0.10", optional = true, default-features = false }
2929
scrypt = { version = "0.12.0-rc.9", optional = true, default-features = false }
3030
sha1 = { version = "0.11.0-rc.4", optional = true, default-features = false }
3131
sha2 = { version = "0.11.0-rc.4", optional = true, default-features = false }

pkcs8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ der = { version = "0.8.0-rc.10", features = ["oid"] }
2121
spki = "0.8.0-rc.4"
2222

2323
# optional dependencies
24-
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
24+
rand_core = { version = "0.10", optional = true, default-features = false }
2525
pkcs5 = { version = "0.8.0-rc.13", optional = true, features = ["rand_core"] }
2626
subtle = { version = "2", optional = true, default-features = false }
2727

x509-ocsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ x509-cert = { version = "0.3.0-rc.4", default-features = false }
2323

2424
# Optional
2525
digest = { version = "0.11.0-rc.9", optional = true, default-features = false, features = ["oid"] }
26-
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
26+
rand_core = { version = "0.10", optional = true, default-features = false }
2727
signature = { version = "3.0.0-rc.9", optional = true, default-features = false, features = ["digest", "rand_core"] }
2828

2929
[dev-dependencies]

0 commit comments

Comments
 (0)