Skip to content

Commit 77722a5

Browse files
authored
Bump rsa to v0.10.0-rc.14 (#2190)
1 parent df57138 commit 77722a5

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,4 @@ x509-tsp = { path = "./x509-tsp" }
6161
x509-cert = { path = "./x509-cert" }
6262
x509-ocsp = { path = "./x509-ocsp" }
6363

64-
crypto-primes = { git = "https://github.com/entropyxyz/crypto-primes" }
6564
rand = { git = "https://github.com/rust-random/rand", branch = "rand_core/v0.10.0-rc-6" }
66-
rsa = { git = "https://github.com/RustCrypto/RSA" }

cms/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ aes = { version = "0.9.0-rc.2", optional = true }
2525
aes-kw = { version = "0.3.0-rc.1", optional = true }
2626
ansi-x963-kdf = { version = "0.1.0-rc.1", optional = true }
2727
cbc = { version = "0.2.0-rc.2", optional = true }
28-
cipher = { version = "0.5.0-rc.3", features = ["alloc", "block-padding", "rand_core"], optional = true }
29-
digest = { version = "0.11.0-rc.8", optional = true }
30-
elliptic-curve = { version = "0.14.0-rc.21", optional = true }
31-
rsa = { version = "0.10.0-rc.13", optional = true }
28+
cipher = { version = "0.5.0-rc.6", features = ["alloc", "block-padding", "rand_core"], optional = true }
29+
digest = { version = "0.11.0-rc.9", optional = true }
30+
elliptic-curve = { version = "0.14.0-rc.24", optional = true }
31+
rsa = { version = "0.10.0-rc.14", optional = true }
3232
sha1 = { version = "0.11.0-rc.4", optional = true }
3333
sha2 = { version = "0.11.0-rc.4", optional = true }
3434
sha3 = { version = "0.11.0-rc.4", optional = true }
35-
signature = { version = "3.0.0-rc.6", features = ["digest", "alloc"], optional = true }
35+
signature = { version = "3.0.0-rc.9", features = ["digest", "alloc"], optional = true }
3636
zeroize = { version = "1.8.1", optional = true }
3737

3838
[dev-dependencies]
@@ -43,8 +43,8 @@ pem-rfc7468 = "1"
4343
pkcs5 = "0.8.0-rc.13"
4444
pbkdf2 = "0.13.0-rc.6"
4545
rand = "0.10.0-rc.7"
46-
rsa = { version = "0.10.0-rc.13", features = ["sha2"] }
47-
ecdsa = { version = "0.17.0-rc.13", features = ["digest", "pem"] }
46+
rsa = { version = "0.10.0-rc.14", features = ["sha2"] }
47+
ecdsa = { version = "0.17.0-rc.14", features = ["digest", "pem"] }
4848
p256 = "0.14.0-rc.6"
4949
tokio = { version = "1.45.1", features = ["macros", "rt"] }
5050
x509-cert = { version = "0.3.0-rc.3", features = ["pem"] }

x509-cert/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ spki = { version = "0.8.0-rc.4", features = ["alloc"] }
2222

2323
# optional dependencies
2424
arbitrary = { version = "1.4", features = ["derive"], optional = true }
25-
digest = { version = "0.11.0-rc.4", optional = true, default-features = false }
25+
digest = { version = "0.11.0-rc.9", optional = true, default-features = false }
2626
sha1 = { version = "0.11.0-rc.4", default-features = false, optional = true }
27-
signature = { version = "3.0.0-rc.8", features = ["rand_core"], optional = true }
27+
signature = { version = "3.0.0-rc.9", features = ["rand_core"], optional = true }
2828
tls_codec = { version = "0.4", default-features = false, features = ["derive"], optional = true }
2929

3030
[dev-dependencies]
3131
hex-literal = "1"
3232
rand = "0.10.0-rc.7"
33-
rsa = { version = "0.10.0-rc.13", features = ["sha2"] }
34-
ecdsa = { version = "0.17.0-rc.13", features = ["digest", "pem"] }
33+
rsa = { version = "0.10.0-rc.14", features = ["sha2"] }
34+
ecdsa = { version = "0.17.0-rc.14", features = ["digest", "pem"] }
3535
p256 = "0.14.0-rc.6"
3636
rstest = "0.26"
3737
sha2 = { version = "0.11.0-rc.4", features = ["oid"] }

x509-ocsp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ spki = { version = "0.8.0-rc.4", features = ["alloc"] }
2222
x509-cert = { version = "0.3.0-rc.3", default-features = false }
2323

2424
# Optional
25-
digest = { version = "0.11.0-rc.4", optional = true, default-features = false, features = ["oid"] }
25+
digest = { version = "0.11.0-rc.9", optional = true, default-features = false, features = ["oid"] }
2626
rand_core = { version = "0.10.0-rc-6", optional = true, default-features = false }
27-
signature = { version = "3.0.0-rc.5", optional = true, default-features = false, features = ["digest", "rand_core"] }
27+
signature = { version = "3.0.0-rc.9", optional = true, default-features = false, features = ["digest", "rand_core"] }
2828

2929
[dev-dependencies]
3030
hex-literal = "1"
3131
lazy_static = "1.5.0"
3232
rand = "0.10.0-rc.7"
33-
rsa = { version = "0.10.0-rc.13", default-features = false, features = ["encoding", "sha2"] }
33+
rsa = { version = "0.10.0-rc.14", default-features = false, features = ["encoding", "sha2"] }
3434
sha1 = { version = "0.11.0-rc.4", default-features = false, features = ["oid"] }
3535
sha2 = { version = "0.11.0-rc.4", default-features = false, features = ["oid"] }
3636

0 commit comments

Comments
 (0)