bump dependencies to latest pre-releases (#637)

This commit is contained in:
Arthur Gautier
2025-09-11 11:16:04 -07:00
committed by GitHub
parent 9e75924908
commit efc587c88d
2 changed files with 82 additions and 74 deletions
+18 -13
View File
@@ -20,31 +20,31 @@ rust-version = "1.85"
members = [".", "cli"]
[workspace.dependencies]
sha2 = "0.11.0-rc.0"
sha2 = "0.11.0-rc.2"
x509-cert = { version = "0.3.0-rc.1", features = ["builder", "hazmat"] }
[dependencies]
aes = { version = "0.9.0-rc.0", features = ["zeroize"] }
aes = { version = "0.9.0-rc.1", features = ["zeroize"] }
bitflags = "2.5.0"
cipher = { version = "0.5.0-rc.0", features = ["rand_core"] }
der = "0.8.0-rc.7"
des = "0.9.0-rc.0"
elliptic-curve = "0.14.0-rc.7"
cipher = { version = "0.5.0-rc.1", features = ["rand_core"] }
der = "0.8.0-rc.8"
des = "0.9.0-rc.1"
elliptic-curve = "0.14.0-rc.13"
hex = { package = "base16ct", version = "0.2", features = ["alloc"] }
log = "0.4"
nom = "8"
ecdsa = { version = "0.17.0-rc.2", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.9"
p384 = "=0.14.0-pre.9"
pbkdf2 = { version = "0.13.0-rc.0", default-features = false, features = ["hmac"] }
ecdsa = { version = "0.17.0-rc.6", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.10"
p384 = "=0.14.0-pre.10"
pbkdf2 = { version = "0.13.0-rc.1", default-features = false, features = ["hmac"] }
pcsc = "2.3.1"
rand = "0.9"
rand_core = { version = "0.9", features = ["os_rng"] }
rsa = { version = "0.10.0-rc.3", features = ["sha2"] }
rsa = { version = "0.10.0-rc.6", features = ["sha2"] }
secrecy = "0.8"
sha1 = { version = "0.11.0-rc.0", features = ["oid"] }
sha1 = { version = "0.11.0-rc.2", features = ["oid"] }
sha2 = { workspace = true, features = ["oid"] }
signature = "3.0.0-rc.0"
signature = "3.0.0-rc.1"
subtle = "2"
uuid = { version = "1.2", features = ["v4"] }
x509-cert.workspace = true
@@ -64,3 +64,8 @@ required-features = ["untested"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[patch.crates-io]
der = { git = "https://github.com/RustCrypto/formats.git" }
der_derive = { git = "https://github.com/RustCrypto/formats.git" }
x509-cert = { git = "https://github.com/RustCrypto/formats.git" }