Skip to content

Commit

Permalink
elliptic-curve: bump crypto-bigint dependency to v0.2.4 (#710)
Browse files Browse the repository at this point in the history
This release includes some new features which can be used to calculate
various constants from an elliptic curve's order using `const fn`s.

Bumping the minimum release allows for elliptic curve libs to pin to a
release of the `elliptic-curve` crate which includes this new version,
allowing them to ensure the transitive dependency is up-to-date without
explicitly pinning to it.
  • Loading branch information
tarcieri authored Aug 24, 2021
1 parent 7cf97d8 commit 08ac8c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["cryptography", "no-std"]
keywords = ["crypto", "ecc", "elliptic", "weierstrass"]

[dependencies]
crypto-bigint = { version = "0.2.3", features = ["generic-array"] }
crypto-bigint = { version = "0.2.4", features = ["generic-array"] }
generic-array = { version = "0.14", default-features = false }
rand_core = { version = "0.6", default-features = false }
subtle = { version = "=2.4", default-features = false }
Expand Down

0 comments on commit 08ac8c6

Please sign in to comment.