Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions cms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.85"
const-oid = { version = "0.10", features = ["db"] }
der = { version = "0.8.0-rc.9", features = ["ber", "derive", "oid"] }
spki = "0.8.0-rc.4"
x509-cert = { version = "0.3.0-rc.0", default-features = false }
x509-cert = { version = "0.3.0-rc.2", default-features = false }

# optional dependencies
aes = { version = "0.9.0-rc.1", optional = true }
Expand All @@ -27,8 +27,8 @@ ansi-x963-kdf = { version = "0.1.0-rc.0", optional = true }
cbc = { version = "0.2.0-rc.1", optional = true }
cipher = { version = "0.5.0-rc.1", features = ["alloc", "block-padding", "rand_core"], optional = true }
digest = { version = "0.11.0-rc.1", optional = true }
elliptic-curve = { version = "0.14.0-rc.13", optional = true }
rsa = { version = "0.10.0-rc.6", optional = true }
elliptic-curve = { version = "0.14.0-rc.14", optional = true }
rsa = { version = "0.10.0-rc.8", optional = true }
sha1 = { version = "0.11.0-rc.2", optional = true }
sha2 = { version = "0.11.0-rc.2", optional = true }
sha3 = { version = "0.11.0-rc.3", optional = true }
Expand All @@ -45,7 +45,7 @@ pbkdf2 = "0.13.0-rc.1"
rand = "0.9"
rsa = { version = "0.10.0-rc.6", features = ["sha2"] }
ecdsa = { version = "0.17.0-rc.6", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.10"
p256 = "=0.14.0-pre.11"
tokio = { version = "1.45.1", features = ["macros", "rt"] }
x509-cert = { version = "0.3.0-rc.0", features = ["pem"] }

Expand Down
2 changes: 1 addition & 1 deletion pkcs1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkcs1"
version = "0.8.0-rc.3"
version = "0.8.0-rc.4"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
RSA Cryptography Specifications Version 2.2 (RFC 8017)
Expand Down
2 changes: 1 addition & 1 deletion pkcs5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkcs5"
version = "0.8.0-rc.7"
version = "0.8.0-rc.8"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
Password-Based Cryptography Specification Version 2.1 (RFC 8018)
Expand Down
4 changes: 2 additions & 2 deletions pkcs8/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkcs8"
version = "0.11.0-rc.6"
version = "0.11.0-rc.7"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
Private-Key Information Syntax Specification (RFC 5208), with additional
Expand All @@ -22,7 +22,7 @@ spki = "0.8.0-rc.4"

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion sec1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sec1"
version = "0.8.0-rc.9"
version = "0.8.0-rc.10"
description = """
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
including ASN.1 DER-serialized private keys as well as the
Expand Down
6 changes: 3 additions & 3 deletions x509-cert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "x509-cert"
version = "0.3.0-rc.1"
version = "0.3.0-rc.2"
description = """
Pure Rust implementation of the X.509 Public Key Infrastructure Certificate
format as described in RFC 5280
Expand Down Expand Up @@ -30,9 +30,9 @@ tls_codec = { version = "0.4", default-features = false, features = ["derive"],
[dev-dependencies]
hex-literal = "1"
rand = "0.9"
rsa = { version = "0.10.0-rc.6", features = ["sha2"] }
rsa = { version = "0.10.0-rc.8", features = ["sha2"] }
ecdsa = { version = "0.17.0-rc.6", features = ["digest", "pem"] }
p256 = "=0.14.0-pre.10"
p256 = "=0.14.0-pre.11"
rstest = "0.26"
sha2 = { version = "0.11.0-rc.2", features = ["oid"] }
tempfile = "3.5"
Expand Down