Skip to content

Commit

Permalink
ecdsa: bump elliptic-curve dependency to v0.12.0-pre.4 (RustCrypto#467
Browse files Browse the repository at this point in the history
)
  • Loading branch information
tarcieri authored May 8, 2022
1 parent f0ddfe5 commit 4466e7f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions ecdsa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecdsa"
version = "0.14.0-pre.4"
version = "0.14.0-pre.5"
description = """
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard)
Expand All @@ -15,7 +15,7 @@ edition = "2021"
rust-version = "1.57"

[dependencies]
elliptic-curve = { version = "=0.12.0-pre.3", default-features = false, features = ["digest", "sec1"] }
elliptic-curve = { version = "=0.12.0-pre.4", default-features = false, features = ["digest", "sec1"] }
signature = { version = "1.5", default-features = false, features = ["rand-preview"] }

# optional dependencies
Expand All @@ -24,7 +24,7 @@ rfc6979 = { version = "=0.2.0-pre.0", optional = true, path = "../rfc6979" }
serdect = { version = "0.1", optional = true, default-features = false, features = ["alloc"] }

[dev-dependencies]
elliptic-curve = { version = "=0.12.0-pre.3", default-features = false, features = ["dev"] }
elliptic-curve = { version = "=0.12.0-pre.4", default-features = false, features = ["dev"] }
hex-literal = "0.3"
sha2 = { version = "0.10", default-features = false }

Expand Down

0 comments on commit 4466e7f

Please sign in to comment.