Migrate to current pre-release revisions of dependencies (#583)

The CHANGELOG lists the specific versions currently pinned; it will
be modified to instead reference the public releases once they exist
and this crate uses them.
This commit is contained in:
Jack Grigg
2025-01-02 19:39:52 +00:00
committed by GitHub
parent 32cd92af50
commit 626ac3bffd
9 changed files with 193 additions and 136 deletions
+13 -14
View File
@@ -20,30 +20,30 @@ rust-version = "1.81"
members = [".", "cli"]
[workspace.dependencies]
x509-cert = { version = "0.2.5", features = [ "builder", "hazmat" ] }
sha2 = "=0.11.0-pre.4"
x509-cert = { version = "=0.3.0-pre.0", features = [ "builder", "hazmat" ] }
[dependencies]
der = "0.7.1"
des = "0.8"
elliptic-curve = "0.13"
der = "=0.8.0-rc.1"
des = "=0.9.0-pre.2"
elliptic-curve = "=0.14.0-rc.1"
hex = { package = "base16ct", version = "0.2", features = ["alloc"] }
hmac = "0.12"
log = "0.4"
nom = "7"
num-bigint-dig = { version = "0.8", features = ["rand"] }
num-traits = "0.2"
num-integer = "0.1"
ecdsa = { version = "0.16.7", features = ["digest", "pem"] }
p256 = "0.13"
p384 = "0.13"
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
ecdsa = { version = "=0.17.0-pre.9", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.2"
p384 = "=0.14.0-pre.2"
pbkdf2 = { version = "=0.13.0-pre.1", default-features = false, features = ["hmac"] }
pcsc = "2.3.1"
rand_core = { version = "0.6", features = ["std"] }
rsa = { version = "0.9.6", features = ["sha2"] }
rsa = { version = "=0.10.0-pre.3", features = ["sha2"] }
secrecy = "0.8"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = { version = "0.10", features = ["oid"] }
signature = "2"
sha1 = { version = "=0.11.0-pre.4", features = ["oid"] }
sha2 = { workspace = true, features = ["oid"] }
signature = "=2.3.0-pre.4"
subtle = "2"
uuid = { version = "1.2", features = ["v4"] }
x509-cert.workspace = true
@@ -52,7 +52,6 @@ zeroize = "1"
[dev-dependencies]
env_logger = "0.10"
once_cell = "1"
signature = "2"
[features]
untested = []