Skip to content

Commit fba90a4

Browse files
committed
chore(deps): bump dependencies to release versions
This bumps: - `aes-kw` to `0.3.0` - `cbc` to `0.2.0` - `ctr` to `0.10.0` - `des` to `0.9.0` This also bumps the following crates to latest pre-release versions: - `elliptic-curve` to `0.14.0-rc.30` - `rsa` to `0.10.0-rc.17`
1 parent f8f9719 commit fba90a4

File tree

6 files changed

+22
-23
lines changed

6 files changed

+22
-23
lines changed

Cargo.lock

Lines changed: 12 additions & 11 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,8 +61,6 @@ x509-tsp = { path = "./x509-tsp" }
6161
x509-cert = { path = "./x509-cert" }
6262
x509-ocsp = { path = "./x509-ocsp" }
6363

64-
rsa = { git = "https://github.com/RustCrypto/RSA" }
65-
6664
[workspace.lints.clippy]
6765
borrow_as_ptr = "warn"
6866
cast_lossless = "warn"

cms/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ x509-cert = { version = "0.3.0-rc.4", default-features = false }
2222

2323
# optional dependencies
2424
aes = { version = "0.9", optional = true }
25-
aes-kw = { version = "0.3.0-rc.2", optional = true }
25+
aes-kw = { version = "0.3", optional = true }
2626
ansi-x963-kdf = { version = "0.1.0-rc.2", optional = true }
27-
cbc = { version = "0.2.0-rc.4", optional = true }
27+
cbc = { version = "0.2", optional = true }
2828
cipher = { version = "0.5", features = ["alloc", "block-padding", "rand_core"], optional = true }
2929
digest = { version = "0.11", optional = true }
30-
elliptic-curve = { version = "0.14.0-rc.28", optional = true }
31-
rsa = { version = "0.10.0-rc.15", optional = true }
30+
elliptic-curve = { version = "0.14.0-rc.30", optional = true }
31+
rsa = { version = "0.10.0-rc.17", optional = true }
3232
sha1 = { version = "0.11", optional = true }
3333
sha2 = { version = "0.11", optional = true }
34-
sha3 = { version = "0.11.0-rc.7", optional = true }
34+
sha3 = { version = "0.11", optional = true }
3535
signature = { version = "3.0.0-rc.10", features = ["digest", "alloc"], optional = true }
3636
zeroize = { version = "1.8.1", optional = true }
3737

@@ -43,7 +43,7 @@ pem-rfc7468 = "1"
4343
pkcs5 = "0.8.0-rc.13"
4444
pbkdf2 = "0.13.0-rc.9"
4545
rand = "0.10"
46-
rsa = { version = "0.10.0-rc.15", features = ["sha2"] }
46+
rsa = { version = "0.10.0-rc.17", features = ["sha2"] }
4747
ecdsa = { version = "0.17.0-rc.16", features = ["digest", "pem"] }
4848
p256 = "0.14.0-rc.7"
4949
tokio = { version = "1.45.1", features = ["macros", "rt"] }

pkcs5/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ der = { version = "0.8", features = ["oid"] }
2020
spki = "0.8"
2121

2222
# optional dependencies
23-
cbc = { version = "0.2.0-rc.4", optional = true }
23+
cbc = { version = "0.2", optional = true }
2424
aes = { version = "0.9", optional = true, default-features = false }
2525
aes-gcm = { version = "0.11.0-rc.3", optional = true, default-features = false, features = ["aes"] }
26-
des = { version = "0.9.0-rc.3", optional = true, default-features = false }
26+
des = { version = "0.9", optional = true, default-features = false }
2727
pbkdf2 = { version = "0.13.0-rc.9", optional = true, default-features = false, features = ["hmac"] }
2828
rand_core = { version = "0.10", optional = true, default-features = false }
2929
scrypt = { version = "0.12.0-rc.10", optional = true, default-features = false }

x509-cert/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tls_codec = { version = "0.4", default-features = false, features = ["derive"],
3030
[dev-dependencies]
3131
hex-literal = "1"
3232
rand = "0.10"
33-
rsa = { version = "0.10.0-rc.15", features = ["sha2"] }
33+
rsa = { version = "0.10.0-rc.17", features = ["sha2"] }
3434
ecdsa = { version = "0.17.0-rc.16", features = ["digest", "pem"] }
3535
p256 = "0.14.0-rc.7"
3636
rstest = "0.26"

x509-ocsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ signature = { version = "3.0.0-rc.10", optional = true, default-features = false
3030
hex-literal = "1"
3131
lazy_static = "1.5.0"
3232
rand = "0.10"
33-
rsa = { version = "0.10.0-rc.15", default-features = false, features = ["encoding", "sha2"] }
33+
rsa = { version = "0.10.0-rc.17", default-features = false, features = ["encoding", "sha2"] }
3434
sha1 = { version = "0.11", default-features = false, features = ["oid"] }
3535
sha2 = { version = "0.11", default-features = false, features = ["oid"] }
3636

0 commit comments

Comments
 (0)