Skip to content

Commit 4cdf8f2

Browse files
authored
Bump rand_core to v0.10.0-rc-6 (#454)
This release renamed `(Try)RngCore` => `(Try)Rng` This also bumps all of the necessary dependencies needed to complete the upgrade.
1 parent f79b8a4 commit 4cdf8f2

File tree

5 files changed

+91
-80
lines changed

5 files changed

+91
-80
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ ssh-cipher = { path = "./ssh-cipher" }
1616
ssh-derive = { path = "./ssh-derive" }
1717
ssh-encoding = { path = "./ssh-encoding" }
1818
ssh-key = { path = "./ssh-key" }
19+
20+
crypto-primes = { git = "https://github.com/entropyxyz/crypto-primes" }
21+
rsa = { git = "https://github.com/RustCrypto/RSA" }

ssh-cipher/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ edition = "2024"
1919
rust-version = "1.85"
2020

2121
[dependencies]
22-
cipher = "0.5.0-rc.3"
22+
cipher = "0.5.0-rc.6"
2323
encoding = { package = "ssh-encoding", version = "0.3.0-rc.4" }
2424

2525
# optional dependencies
26-
aead = { version = "0.6.0-rc.5", optional = true, default-features = false }
26+
aead = { version = "0.6.0-rc.8", optional = true, default-features = false }
2727
aes = { version = "0.9.0-rc.2", optional = true, default-features = false }
2828
aes-gcm = { version = "0.11.0-rc.2", optional = true, default-features = false, features = ["aes"] }
2929
cbc = { version = "0.2.0-rc.2", optional = true }
3030
ctr = { version = "0.10.0-rc.2", optional = true, default-features = false }
31-
chacha20 = { version = "0.10.0-rc.6", optional = true, default-features = false, features = ["cipher", "legacy"] }
31+
chacha20 = { version = "0.10.0-rc.9", optional = true, default-features = false, features = ["cipher", "legacy"] }
3232
des = { version = "0.9.0-rc.2", optional = true, default-features = false }
3333
poly1305 = { version = "0.9.0-rc.3", optional = true, default-features = false }
3434
subtle = { version = "2", optional = true, default-features = false }

ssh-encoding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ rust-version = "1.85"
1717

1818
[dependencies]
1919
base64ct = { version = "1.8", optional = true }
20-
bigint = { package = "crypto-bigint", version = "0.7.0-rc.16", optional = true, default-features = false, features = ["alloc"] }
20+
bigint = { package = "crypto-bigint", version = "0.7.0-rc.22", optional = true, default-features = false, features = ["alloc"] }
2121
bytes = { version = "1", optional = true, default-features = false }
22-
digest = { version = "0.11.0-rc.7", optional = true, default-features = false }
22+
digest = { version = "0.11.0-rc.8", optional = true, default-features = false }
2323
pem-rfc7468 = { version = "1", optional = true }
2424
ssh-derive = { version = "0.3.0-rc.0", optional = true }
2525
subtle = { version = "2", optional = true, default-features = false }

0 commit comments

Comments
 (0)