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
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions 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.0"
version = "0.8.0-rc.1"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
RSA Cryptography Specifications Version 2.2 (RFC 8017)
Expand All @@ -20,7 +20,7 @@ der = { version = "0.8.0-rc.0", features = ["oid"] }
spki = { version = "0.8.0-rc.0" }

# optional dependencies
pkcs8 = { version = "0.11.0-rc.0", optional = true, default-features = false }
pkcs8 = { version = "0.11.0-rc.1", optional = true, default-features = false }

[dev-dependencies]
const-oid = { version = "0.10.0-rc.0", features = ["db"] }
Expand Down
2 changes: 1 addition & 1 deletion pkcs12/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ zeroize = "1.8.1"

[dev-dependencies]
hex-literal = "0.4"
pkcs8 = { version = "0.11.0-rc.0", features = ["pkcs5", "getrandom"] }
pkcs8 = { version = "0.11.0-rc.1", features = ["pkcs5", "getrandom"] }
pkcs5 = { version = "0.8.0-rc.0", features = ["pbes2", "3des"] }
sha2 = "=0.11.0-pre.4"
whirlpool = "=0.11.0-pre.4"
Expand Down
2 changes: 1 addition & 1 deletion 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.0"
version = "0.11.0-rc.1"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
Private-Key Information Syntax Specification (RFC 5208), with additional
Expand Down
4 changes: 2 additions & 2 deletions 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.0"
version = "0.8.0-rc.1"
description = """
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
including ASN.1 DER-serialized private keys as well as the
Expand All @@ -20,7 +20,7 @@ rust-version = "1.72"
base16ct = { version = "0.2", optional = true, default-features = false }
der = { version = "0.8.0-rc.0", optional = true, features = ["oid"] }
hybrid-array = { version = "0.2.0-rc.9", optional = true, default-features = false }
pkcs8 = { version = "0.11.0-rc.0", optional = true, default-features = false }
pkcs8 = { version = "0.11.0-rc.1", optional = true, default-features = false }
serdect = { version = "=0.3.0-pre.0", optional = true, default-features = false, features = ["alloc"] }
subtle = { version = "2", optional = true, default-features = false }
zeroize = { version = "1", optional = true, default-features = false }
Expand Down