Skip to content

Commit 6c316b3

Browse files
authored
Bump rand_core dependency to v0.10.0-rc-3 (#2134)
1 parent ffe19ee commit 6c316b3

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

Cargo.lock

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

crypto-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ hybrid-array = "0.4"
1717

1818
# optional dependencies
1919
getrandom = { version = "0.3", optional = true, features = ["sys_rng"] }
20-
rand_core = { version = "0.10.0-rc-2", optional = true }
20+
rand_core = { version = "0.10.0-rc-3", optional = true }
2121

2222
[features]
2323
getrandom = ["rand_core", "dep:getrandom"]

elliptic-curve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and public/secret keys composed thereof.
2020
base16ct = "0.3"
2121
crypto-bigint = { version = "0.7.0-rc.10", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] }
2222
hybrid-array = { version = "0.4", default-features = false, features = ["zeroize"] }
23-
rand_core = { version = "0.10.0-rc-2", default-features = false }
23+
rand_core = { version = "0.10.0-rc-3", default-features = false }
2424
subtle = { version = "2.6", default-features = false }
2525
zeroize = { version = "1.7", default-features = false }
2626

kem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description = "Traits for key encapsulation mechanisms"
1414

1515
[dependencies]
1616
crypto-common = { version = "0.2.0-rc.5", features = ["rand_core"], path = "../crypto-common" }
17-
rand_core = "0.10.0-rc-2"
17+
rand_core = "0.10.0-rc-3"
1818
zeroize = { version = "1.7", default-features = false }
1919

2020
[package.metadata.docs.rs]

password-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ as well as a `no_std`-friendly implementation of the PHC string format
1919
[dependencies]
2020
getrandom = { version = "0.3", optional = true, default-features = false }
2121
phc = { version = "0.6.0-rc.0", optional = true, default-features = false }
22-
rand_core = { version = "0.10.0-rc-2", optional = true, default-features = false }
22+
rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false }
2323

2424
[features]
2525
alloc = ["phc?/alloc"]

signature/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed2551
1414

1515
[dependencies]
1616
digest = { version = "0.11.0-rc.4", optional = true, default-features = false }
17-
rand_core = { version = "0.10.0-rc-2", optional = true, default-features = false }
17+
rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false }
1818

1919
[features]
2020
alloc = []

0 commit comments

Comments
 (0)