From e69e3d757a2d37ee2ee7e03e9ac74e726f6d1985 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 10 Jul 2025 17:23:44 -0600 Subject: [PATCH] x509-cert v0.3.0-rc.1 --- Cargo.lock | 2 +- x509-cert/Cargo.toml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c56ce9e76..2fcc25eb2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1889,7 +1889,7 @@ dependencies = [ [[package]] name = "x509-cert" -version = "0.3.0-rc.0" +version = "0.3.0-rc.1" dependencies = [ "arbitrary", "const-oid", diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 9256b5d7a..793b8b7dc 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x509-cert" -version = "0.3.0-rc.0" +version = "0.3.0-rc.1" description = """ Pure Rust implementation of the X.509 Public Key Infrastructure Certificate format as described in RFC 5280 @@ -16,7 +16,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -const-oid = { version = "0.10.0", features = ["db"] } +const-oid = { version = "0.10", features = ["db"] } der = { version = "0.8.0-rc.7", features = ["alloc", "derive", "flagset", "oid"] } spki = { version = "0.8.0-rc.4", features = ["alloc"] } @@ -25,7 +25,7 @@ arbitrary = { version = "1.4", features = ["derive"], optional = true } digest = { version = "0.11.0-rc.0", optional = true, default-features = false } sha1 = { version = "0.11.0-rc.0", default-features = false, optional = true } signature = { version = "3.0.0-rc.0", features = ["rand_core"], optional = true } -tls_codec = { version = "0.4.0", default-features = false, features = ["derive"], optional = true } +tls_codec = { version = "0.4", default-features = false, features = ["derive"], optional = true } [dev-dependencies] hex-literal = "1" @@ -35,8 +35,8 @@ ecdsa = { version = "0.17.0-rc.4", features = ["digest", "pem"] } p256 = "=0.14.0-pre.9" rstest = "0.25" sha2 = { version = "0.11.0-rc.0", features = ["oid"] } -tempfile = "3.5.0" -tokio = { version = "1.45.1", features = ["macros", "rt"] } +tempfile = "3.5" +tokio = { version = "1.45", features = ["macros", "rt"] } x509-cert-test-support = { path = "./test-support" } [features]