Skip to content

Commit

Permalink
cut pkcs1 pkcs8 and sec1 pre-releases (#1504)
Browse files Browse the repository at this point in the history
- pkcs1 `0.8.0-rc.1`
 - pkcs8 `0.11.0-rc.1`
 - sec1 `0.8.0-rc.1`

This comes after the merge of API breaks on pkcs8 ([#1483])

[#1483]: #1483
  • Loading branch information
baloo authored Sep 6, 2024
1 parent 5b0f2b2 commit 48f6fa5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
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

0 comments on commit 48f6fa5

Please sign in to comment.