From a8eaf1cdf951f1889010366931c3f1176b73ed98 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 10 Mar 2026 10:38:25 -0600 Subject: [PATCH] elliptic-curve: bump `sec1` to v0.8 Release PR: RustCrypto/formats#2259 --- Cargo.lock | 4 ++-- elliptic-curve/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a33486e08..04e120bbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "sec1" -version = "0.8.0-rc.13" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2400ed44a13193820aa528a19f376c3843141a8ce96ff34b11104cc79763f2" +checksum = "f46b9a5ab87780a3189a1d704766579517a04ad59de653b7aad7d38e8a15f7dc" dependencies = [ "base16ct", "ctutils", diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 994ab2266..a327584db 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -34,7 +34,7 @@ hex-literal = { version = "1", optional = true } once_cell = { version = "1.21", optional = true, default-features = false } pem-rfc7468 = { version = "1", optional = true, features = ["alloc"] } pkcs8 = { version = "0.11.0-rc.10", optional = true, default-features = false } -sec1 = { version = "0.8.0-rc.13", optional = true, features = ["ctutils", "subtle", "zeroize"] } +sec1 = { version = "0.8", optional = true, features = ["ctutils", "subtle", "zeroize"] } serdect = { version = "0.4", optional = true, default-features = false, features = ["alloc"] } [dev-dependencies]