diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 2c3d2caf1..b288f3e97 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -44,8 +44,8 @@ pkcs5 = "0.8" pbkdf2 = "0.13.0-rc.9" rand = "0.10" rsa = { version = "0.10.0-rc.18", features = ["sha2"] } -ecdsa = { version = "0.17.0-rc.23", features = ["digest", "pem"] } -p256 = "0.14.0-rc.15" +ecdsa = { version = "0.17", features = ["digest", "pem"] } +p256 = "0.14" tokio = { version = "1.45.1", features = ["macros", "rt"] } x509-cert = { version = "0.3.0-rc.4", features = ["pem"] } diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 4b8ad149e..b50c61077 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -31,8 +31,8 @@ tls_codec = { version = "0.4", default-features = false, features = ["derive"], hex-literal = "1" rand = "0.10" rsa = { version = "0.10.0-rc.18", features = ["sha2"] } -ecdsa = { version = "0.17.0-rc.23", features = ["digest", "pem"] } -p256 = "0.14.0-rc.15" +ecdsa = { version = "0.17", features = ["digest", "pem"] } +p256 = "0.14" rstest = "0.26" sha2 = { version = "0.11", features = ["oid"] } tempfile = "3.5"