Skip to content

Commit

Permalink
ecdsa: updates for group crate (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Sep 4, 2020
1 parent 5046c92 commit 7f41e1e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
26 changes: 25 additions & 1 deletion Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ members = ["ecdsa", "ed25519"]

[patch.crates-io]
elliptic-curve = { git = "https://github.com/RustCrypto/traits" }
group = { git = "https://github.com/zkcrypto/group.git" }
5 changes: 2 additions & 3 deletions ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ categories = ["cryptography", "no-std"]
keywords = ["crypto", "ecc", "nist", "secp256k1", "signature"]

[dependencies]
elliptic-curve = { version = "0.5", default-features = false, features = ["weierstrass"] }
elliptic-curve = { version = "0.5", default-features = false }
hmac = { version = "0.9", optional = true, default-features = false }
signature = { version = ">= 1.2.2, < 1.3.0", default-features = false }
signature = { version = ">= 1.2.2, < 1.3.0", default-features = false, features = ["rand-preview"] }

[dev-dependencies]
hex-literal = "0.3"
Expand All @@ -28,7 +28,6 @@ alloc = []
dev = ["digest", "zeroize"]
digest = ["elliptic-curve/digest", "signature/digest-preview"]
hazmat = []
rand = ["elliptic-curve/rand", "signature/rand-preview"]
sign = ["digest", "hazmat", "hmac", "zeroize"]
std = ["alloc", "elliptic-curve/std", "signature/std"]
verify = ["digest", "hazmat"]
Expand Down

0 comments on commit 7f41e1e

Please sign in to comment.