Skip to content

Commit 42742c1

Browse files
committed
x509-cert v0.3.0-rc.1
1 parent b3c52e7 commit 42742c1

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

Cargo.lock

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,3 @@ tls_codec_derive = { path = "./tls_codec/derive" }
5959
x509-tsp = { path = "./x509-tsp" }
6060
x509-cert = { path = "./x509-cert" }
6161
x509-ocsp = { path = "./x509-ocsp" }
62-
63-
elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" }
64-
ecdsa = { git = "https://github.com/RustCrypto/signatures.git" }
65-
rsa = { git = "https://github.com/RustCrypto/RSA.git", branch = "pkcs1/remove-blanket-impl" }

x509-cert/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "x509-cert"
3-
version = "0.3.0-rc.0"
3+
version = "0.3.0-rc.1"
44
description = """
55
Pure Rust implementation of the X.509 Public Key Infrastructure Certificate
66
format as described in RFC 5280
@@ -16,7 +16,7 @@ edition = "2024"
1616
rust-version = "1.85"
1717

1818
[dependencies]
19-
const-oid = { version = "0.10.0", features = ["db"] }
19+
const-oid = { version = "0.10", features = ["db"] }
2020
der = { version = "0.8.0-rc.7", features = ["alloc", "derive", "flagset", "oid"] }
2121
spki = { version = "0.8.0-rc.4", features = ["alloc"] }
2222

@@ -25,7 +25,7 @@ arbitrary = { version = "1.4", features = ["derive"], optional = true }
2525
digest = { version = "0.11.0-rc.0", optional = true, default-features = false }
2626
sha1 = { version = "0.11.0-rc.0", default-features = false, optional = true }
2727
signature = { version = "3.0.0-rc.0", features = ["rand_core"], optional = true }
28-
tls_codec = { version = "0.4.0", default-features = false, features = ["derive"], optional = true }
28+
tls_codec = { version = "0.4", default-features = false, features = ["derive"], optional = true }
2929

3030
[dev-dependencies]
3131
hex-literal = "1"
@@ -35,8 +35,8 @@ ecdsa = { version = "0.17.0-rc.3", features = ["digest", "pem"] }
3535
p256 = "=0.14.0-pre.8"
3636
rstest = "0.25"
3737
sha2 = { version = "0.11.0-rc.0", features = ["oid"] }
38-
tempfile = "3.5.0"
39-
tokio = { version = "1.45.1", features = ["macros", "rt"] }
38+
tempfile = "3.5"
39+
tokio = { version = "1.45", features = ["macros", "rt"] }
4040
x509-cert-test-support = { path = "./test-support" }
4141

4242
[features]

0 commit comments

Comments
 (0)