Skip to content

Commit 4db4c09

Browse files
authored
Cut new prereleases (#2042)
Releases the following: - `pkcs1` v0.8.0-rc.4 - `pkcs5` v0.8.0-rc.8 - `pkcs8` v0.11.0-rc.7 - `sec1` v0.8.0-rc.10 - `x509-cert` v0.3.0-rc.2
1 parent 43631ed commit 4db4c09

File tree

7 files changed

+35
-35
lines changed

7 files changed

+35
-35
lines changed

Cargo.lock

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

cms/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rust-version = "1.85"
1818
const-oid = { version = "0.10", features = ["db"] }
1919
der = { version = "0.8.0-rc.9", features = ["ber", "derive", "oid"] }
2020
spki = "0.8.0-rc.4"
21-
x509-cert = { version = "0.3.0-rc.0", default-features = false }
21+
x509-cert = { version = "0.3.0-rc.2", default-features = false }
2222

2323
# optional dependencies
2424
aes = { version = "0.9.0-rc.1", optional = true }
@@ -27,8 +27,8 @@ ansi-x963-kdf = { version = "0.1.0-rc.0", optional = true }
2727
cbc = { version = "0.2.0-rc.1", optional = true }
2828
cipher = { version = "0.5.0-rc.1", features = ["alloc", "block-padding", "rand_core"], optional = true }
2929
digest = { version = "0.11.0-rc.1", optional = true }
30-
elliptic-curve = { version = "0.14.0-rc.13", optional = true }
31-
rsa = { version = "0.10.0-rc.6", optional = true }
30+
elliptic-curve = { version = "0.14.0-rc.14", optional = true }
31+
rsa = { version = "0.10.0-rc.8", optional = true }
3232
sha1 = { version = "0.11.0-rc.2", optional = true }
3333
sha2 = { version = "0.11.0-rc.2", optional = true }
3434
sha3 = { version = "0.11.0-rc.3", optional = true }
@@ -45,7 +45,7 @@ pbkdf2 = "0.13.0-rc.1"
4545
rand = "0.9"
4646
rsa = { version = "0.10.0-rc.6", features = ["sha2"] }
4747
ecdsa = { version = "0.17.0-rc.6", features = ["digest", "pem"] }
48-
p256 = "=0.14.0-pre.10"
48+
p256 = "=0.14.0-pre.11"
4949
tokio = { version = "1.45.1", features = ["macros", "rt"] }
5050
x509-cert = { version = "0.3.0-rc.0", features = ["pem"] }
5151

pkcs1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs1"
3-
version = "0.8.0-rc.3"
3+
version = "0.8.0-rc.4"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
66
RSA Cryptography Specifications Version 2.2 (RFC 8017)

pkcs5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs5"
3-
version = "0.8.0-rc.7"
3+
version = "0.8.0-rc.8"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
66
Password-Based Cryptography Specification Version 2.1 (RFC 8018)

pkcs8/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs8"
3-
version = "0.11.0-rc.6"
3+
version = "0.11.0-rc.7"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
66
Private-Key Information Syntax Specification (RFC 5208), with additional
@@ -22,7 +22,7 @@ spki = "0.8.0-rc.4"
2222

2323
# optional dependencies
2424
rand_core = { version = "0.9", optional = true, default-features = false }
25-
pkcs5 = { version = "0.8.0-rc.6", optional = true, features = ["rand_core"] }
25+
pkcs5 = { version = "0.8.0-rc.8", optional = true, features = ["rand_core"] }
2626
subtle = { version = "2", optional = true, default-features = false }
2727

2828
[dev-dependencies]

sec1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sec1"
3-
version = "0.8.0-rc.9"
3+
version = "0.8.0-rc.10"
44
description = """
55
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
66
including ASN.1 DER-serialized private keys as well as the

x509-cert/Cargo.toml

Lines changed: 3 additions & 3 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.1"
3+
version = "0.3.0-rc.2"
44
description = """
55
Pure Rust implementation of the X.509 Public Key Infrastructure Certificate
66
format as described in RFC 5280
@@ -30,9 +30,9 @@ tls_codec = { version = "0.4", default-features = false, features = ["derive"],
3030
[dev-dependencies]
3131
hex-literal = "1"
3232
rand = "0.9"
33-
rsa = { version = "0.10.0-rc.6", features = ["sha2"] }
33+
rsa = { version = "0.10.0-rc.8", features = ["sha2"] }
3434
ecdsa = { version = "0.17.0-rc.6", features = ["digest", "pem"] }
35-
p256 = "=0.14.0-pre.10"
35+
p256 = "=0.14.0-pre.11"
3636
rstest = "0.26"
3737
sha2 = { version = "0.11.0-rc.2", features = ["oid"] }
3838
tempfile = "3.5"

0 commit comments

Comments
 (0)