Skip to content

Commit 48f6fa5

Browse files
authored
cut pkcs1 pkcs8 and sec1 pre-releases (#1504)
- 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
1 parent 5b0f2b2 commit 48f6fa5

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkcs1/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs1"
3-
version = "0.8.0-rc.0"
3+
version = "0.8.0-rc.1"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
66
RSA Cryptography Specifications Version 2.2 (RFC 8017)
@@ -20,7 +20,7 @@ der = { version = "0.8.0-rc.0", features = ["oid"] }
2020
spki = { version = "0.8.0-rc.0" }
2121

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

2525
[dev-dependencies]
2626
const-oid = { version = "0.10.0-rc.0", features = ["db"] }

pkcs12/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ zeroize = "1.8.1"
2626

2727
[dev-dependencies]
2828
hex-literal = "0.4"
29-
pkcs8 = { version = "0.11.0-rc.0", features = ["pkcs5", "getrandom"] }
29+
pkcs8 = { version = "0.11.0-rc.1", features = ["pkcs5", "getrandom"] }
3030
pkcs5 = { version = "0.8.0-rc.0", features = ["pbes2", "3des"] }
3131
sha2 = "=0.11.0-pre.4"
3232
whirlpool = "=0.11.0-pre.4"

pkcs8/Cargo.toml

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

sec1/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sec1"
3-
version = "0.8.0-rc.0"
3+
version = "0.8.0-rc.1"
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
@@ -20,7 +20,7 @@ rust-version = "1.72"
2020
base16ct = { version = "0.2", optional = true, default-features = false }
2121
der = { version = "0.8.0-rc.0", optional = true, features = ["oid"] }
2222
hybrid-array = { version = "0.2.0-rc.9", optional = true, default-features = false }
23-
pkcs8 = { version = "0.11.0-rc.0", optional = true, default-features = false }
23+
pkcs8 = { version = "0.11.0-rc.1", optional = true, default-features = false }
2424
serdect = { version = "=0.3.0-pre.0", optional = true, default-features = false, features = ["alloc"] }
2525
subtle = { version = "2", optional = true, default-features = false }
2626
zeroize = { version = "1", optional = true, default-features = false }

0 commit comments

Comments
 (0)