Skip to content

Commit

Permalink
elliptic-curve: bump spki to v0.5 release (#810)
Browse files Browse the repository at this point in the history
This removes all of the git-based dependencies on `RustCrypto/formats`
  • Loading branch information
tarcieri authored Nov 17, 2021
1 parent 0d6f582 commit 3502b5b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 26 deletions.
39 changes: 20 additions & 19 deletions elliptic-curve/Cargo.lock

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

9 changes: 2 additions & 7 deletions elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ crypto-bigint = { version = "0.3", default-features = false, features = ["rand_c
der = { version = "0.5", default-features = false, features = ["oid"] }
generic-array = { version = "0.14", default-features = false }
rand_core = { version = "0.6", default-features = false }
subtle = { version = ">=2, <2.5", default-features = false }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false }

# optional dependencies
Expand All @@ -33,7 +33,7 @@ ff = { version = "0.11", optional = true, default-features = false }
group = { version = "0.11", optional = true, default-features = false }
hex-literal = { version = "0.3", optional = true }
pem-rfc7468 = { version = "0.2", optional = true }
sec1 = { version = "=0.2.0-pre", optional = true, features = ["subtle", "zeroize"] }
sec1 = { version = "0.2", optional = true, features = ["subtle", "zeroize"] }
serde = { version = "1", optional = true, default-features = false }
serde_json = { version = "1", optional = true, default-features = false, features = ["alloc"] }

Expand All @@ -56,8 +56,3 @@ std = ["alloc", "rand_core/std"]
[package.metadata.docs.rs]
features = ["arithmetic", "ecdh", "jwk", "pem", "std"]
rustdoc-args = ["--cfg", "docsrs"]

[patch.crates-io]
der = { git = "https://github.com/RustCrypto/formats.git" }
pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }
sec1 = { git = "https://github.com/RustCrypto/formats.git" }

0 comments on commit 3502b5b

Please sign in to comment.