diff --git a/Cargo.lock b/Cargo.lock index 29ecd98a..db8a2acc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -905,9 +905,9 @@ dependencies = [ [[package]] name = "pkcs8" -version = "0.11.0-rc.12" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d71d6da5a0e652b5c694049095a52f5e564012b8ee5001cf10d84a4ca9a7f9d" +checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7" dependencies = [ "der", "spki", diff --git a/dsa/Cargo.toml b/dsa/Cargo.toml index 6b9855e1..0ef1f6d3 100644 --- a/dsa/Cargo.toml +++ b/dsa/Cargo.toml @@ -26,7 +26,7 @@ signature = { version = "3.0.0-rc.10", default-features = false, features = ["al zeroize = { version = "1", default-features = false, features = ["alloc"] } # optional dependencies -pkcs8 = { version = "0.11.0-rc.12", optional = true, default-features = false, features = ["alloc"] } +pkcs8 = { version = "0.11", optional = true, default-features = false, features = ["alloc"] } [dev-dependencies] chacha20 = { version = "0.10", features = ["rng"] } @@ -34,7 +34,7 @@ der = { version = "0.8", features = ["derive"] } hex = "0.4" hex-literal = "1" getrandom = { version = "0.4", features = ["sys_rng"] } -pkcs8 = { version = "0.11.0-rc.12", default-features = false, features = ["pem"] } +pkcs8 = { version = "0.11", default-features = false, features = ["pem"] } proptest = "1" rand_core = "0.10" sha1 = "0.11" diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index 96cc6477..298f4265 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -21,7 +21,7 @@ rust-version = "1.85" signature = { version = "3.0.0-rc.10", default-features = false } # optional dependencies -pkcs8 = { version = "0.11.0-rc.12", optional = true } +pkcs8 = { version = "0.11", optional = true } serde = { version = "1", optional = true, default-features = false } serde_bytes = { version = "0.11", optional = true, default-features = false } zeroize = { version = "1", optional = true, default-features = false } diff --git a/ed448/Cargo.toml b/ed448/Cargo.toml index d1e8b13b..c58b1b0d 100644 --- a/ed448/Cargo.toml +++ b/ed448/Cargo.toml @@ -21,7 +21,7 @@ rust-version = "1.85" signature = { version = "3.0.0-rc.10", default-features = false } # optional dependencies -pkcs8 = { version = "0.11.0-rc.12", optional = true } +pkcs8 = { version = "0.11", optional = true } serde = { version = "1", optional = true, default-features = false } serde_bytes = { version = "0.11", optional = true, default-features = false } zeroize = { version = "1", optional = true, default-features = false } diff --git a/ml-dsa/Cargo.toml b/ml-dsa/Cargo.toml index 53ca61c8..843bdc92 100644 --- a/ml-dsa/Cargo.toml +++ b/ml-dsa/Cargo.toml @@ -40,7 +40,7 @@ signature = { version = "3.0.0-rc.10", default-features = false, features = ["di # optional dependencies const-oid = { version = "0.10", features = ["db"], optional = true } -pkcs8 = { version = "0.11.0-rc.12", default-features = false, optional = true } +pkcs8 = { version = "0.11", default-features = false, optional = true } rand_core = { version = "0.10", optional = true } zeroize = { version = "1.8.1", optional = true, default-features = false } @@ -49,7 +49,7 @@ criterion = "0.7" getrandom = { version = "0.4", features = ["sys_rng"] } hex = { version = "0.4", features = ["serde"] } hex-literal = "1" -pkcs8 = { version = "0.11.0-rc.12", features = ["pem"] } +pkcs8 = { version = "0.11", features = ["pem"] } proptest = "1" serde = { version = "1.0.215", features = ["derive"] } serde_json = "1.0.132" diff --git a/slh-dsa/Cargo.toml b/slh-dsa/Cargo.toml index 26b69771..f108bf73 100644 --- a/slh-dsa/Cargo.toml +++ b/slh-dsa/Cargo.toml @@ -20,7 +20,7 @@ const-oid = { version = "0.10", features = ["db"] } digest = "0.11" hmac = "0.13" hybrid-array = { version = "0.4", features = ["extra-sizes"] } -pkcs8 = { version = "0.11.0-rc.12", default-features = false } +pkcs8 = { version = "0.11", default-features = false } rand_core = "0.10" sha2 = { version = "0.11", default-features = false } sha3 = { version = "0.11", default-features = false } @@ -40,7 +40,7 @@ hex = { version = "0.4.1", features = ["serde"] } hex-literal = "1" num-bigint = "0.4.4" paste = "1.0.15" -pkcs8 = { version = "0.11.0-rc.12", features = ["pem"] } +pkcs8 = { version = "0.11", features = ["pem"] } proptest = "1.11.0" rand = "0.10" serde_json = "1.0.124" diff --git a/xmss/Cargo.toml b/xmss/Cargo.toml index 443f02c1..c3473869 100644 --- a/xmss/Cargo.toml +++ b/xmss/Cargo.toml @@ -24,7 +24,7 @@ const-oid = { version = "0.10", optional = true } der = { version = "0.8", optional = true, default-features = false, features = ["alloc"] } digest = "0.11" hybrid-array = { version = "0.4", features = ["zeroize"] } -pkcs8 = { version = "0.11.0-rc.12", optional = true, default-features = false, features = ["alloc"] } +pkcs8 = { version = "0.11", optional = true, default-features = false, features = ["alloc"] } rand = "0.10" sha2 = "0.11" sha3 = "0.11"