Skip to content

Commit

Permalink
bump pkcs8 dependency after breaking change (#857)
Browse files Browse the repository at this point in the history
This bump the following dependencies:
 - pkcs8 0.11.0-rc.0 -> 0.11.0-rc.1
 - elliptic-curve 0.14.0-pre.6 -> 0.14.0-rc.0

This is a followup on breaking changes made on pkcs8
(RustCrypto/formats#1483).
  • Loading branch information
baloo committed Sep 6, 2024
1 parent 25e1401 commit 839cbda
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 18 deletions.
15 changes: 9 additions & 6 deletions Cargo.lock

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

6 changes: 0 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,3 @@ members = [

[profile.dev]
opt-level = 2

[patch.crates-io]
sec1 = { git = "https://github.com/RustCrypto/formats.git" }
pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }
# https://github.com/RustCrypto/traits/pull/1650
elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" }
4 changes: 2 additions & 2 deletions dsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ rust-version = "1.72"
digest = "=0.11.0-pre.9"
num-bigint = { package = "num-bigint-dig", version = "0.8", default-features = false, features = ["prime", "rand", "zeroize"] }
num-traits = { version = "0.2", default-features = false }
pkcs8 = { version = "=0.11.0-rc.0", default-features = false, features = ["alloc"] }
pkcs8 = { version = "=0.11.0-rc.1", default-features = false, features = ["alloc"] }
rfc6979 = { version = "=0.5.0-pre.4", path = "../rfc6979" }
sha2 = { version = "=0.11.0-pre.4", default-features = false }
signature = { version = "=2.3.0-pre.4", default-features = false, features = ["alloc", "digest", "rand_core"] }
zeroize = { version = "1", default-features = false }

[dev-dependencies]
pkcs8 = { version = "=0.11.0-rc.0", default-features = false, features = ["pem"] }
pkcs8 = { version = "=0.11.0-rc.1", default-features = false, features = ["pem"] }
rand = "0.8"
rand_chacha = "0.3"
sha1 = "=0.11.0-pre.4"
Expand Down
4 changes: 2 additions & 2 deletions ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2021"
rust-version = "1.73"

[dependencies]
elliptic-curve = { version = "=0.14.0-pre.6", default-features = false, features = ["digest", "sec1"] }
elliptic-curve = { version = "=0.14.0-rc.0", default-features = false, features = ["digest", "sec1"] }
signature = { version = "=2.3.0-pre.4", default-features = false, features = ["rand_core"] }

# optional dependencies
Expand All @@ -29,7 +29,7 @@ sha2 = { version = "=0.11.0-pre.4", optional = true, default-features = false, f
spki = { version = "0.8.0-rc.0", optional = true, default-features = false }

[dev-dependencies]
elliptic-curve = { version = "=0.14.0-pre.6", default-features = false, features = ["dev"] }
elliptic-curve = { version = "=0.14.0-rc.0", default-features = false, features = ["dev"] }
hex-literal = "0.4"
sha2 = { version = "=0.11.0-pre.4", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion ed25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rust-version = "1.72"
signature = { version = "=2.3.0-pre.4", default-features = false }

# optional dependencies
pkcs8 = { version = "0.11.0-rc.0", optional = true }
pkcs8 = { version = "0.11.0-rc.1", optional = true }
serde = { version = "1", optional = true, default-features = false }
serde_bytes = { version = "0.11", optional = true }
zeroize = { version = "1", optional = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion ed448/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rust-version = "1.72"
signature = { version = "=2.3.0-pre.4", default-features = false }

# optional dependencies
pkcs8 = { version = "=0.11.0-rc.0", optional = true }
pkcs8 = { version = "=0.11.0-rc.1", optional = true }
serde = { version = "1", optional = true, default-features = false }
serde_bytes = { version = "0.11", optional = true }
zeroize = { version = "1", optional = true, default-features = false }
Expand Down

0 comments on commit 839cbda

Please sign in to comment.