Skip to content

Commit 4ee73a2

Browse files
authored
Bump rand_core to v0.10 (#2250)
Release PR: rust-random/rand_core#64
1 parent a3354ce commit 4ee73a2

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.4.0-rc.1", optional = true, features = ["sys_rng"] }
20-
rand_core = { version = "0.10.0-rc-6", optional = true }
20+
rand_core = { version = "0.10", 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
@@ -26,7 +26,7 @@ features = ["hybrid-array", "rand_core", "subtle", "zeroize"]
2626
array = { package = "hybrid-array", version = "0.4", default-features = false, features = ["zeroize"] }
2727
base16ct = "1"
2828
common = { package = "crypto-common", version = "0.2.0-rc.13", features = ["rand_core"] }
29-
rand_core = { version = "0.10.0-rc-6", default-features = false }
29+
rand_core = { version = "0.10", default-features = false }
3030
subtle = { version = "2.6", default-features = false }
3131
zeroize = { version = "1.7", default-features = false }
3232

kem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Traits for Key Encapsulation Mechanisms (KEMs): public-key cryptosystems designe
1818

1919
[dependencies]
2020
common = { package = "crypto-common", version = "0.2.0-rc.13", features = ["rand_core"] }
21-
rand_core = "0.10.0-rc-6"
21+
rand_core = "0.10"
2222

2323
[features]
2424
getrandom = ["common/getrandom"]

password-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ formats (e.g. Modular Crypt Format)
1919
[dependencies]
2020
getrandom = { version = "0.4.0-rc.1", optional = true, default-features = false }
2121
phc = { version = "0.6.0-rc.1", optional = true, default-features = false }
22-
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
22+
rand_core = { version = "0.10", 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.8", optional = true, default-features = false }
17-
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
17+
rand_core = { version = "0.10", optional = true, default-features = false }
1818

1919
[features]
2020
alloc = []

0 commit comments

Comments
 (0)