Skip to content

Commit

Permalink
elliptic-curve: pin to patched bitvec
Browse files Browse the repository at this point in the history
With this `bitvec` patch, we no longer need to pin `funty`:

ferrilab/bitvec#105
  • Loading branch information
tarcieri committed Apr 18, 2021
1 parent 67b5966 commit c6a7fa3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ keywords = ["crypto", "ecc", "elliptic", "weierstrass"]

[dependencies]
base64ct = { version = "1", optional = true, default-features = false }
bitvec = { version = "0.20.2", optional = true, default-features = false }
ff = { version = "0.9", optional = true, default-features = false }
funty = { version = "=1.1.0", default-features = false } # see https://github.com/bitvecto-rs/bitvec/issues/105
group = { version = "0.9", optional = true, default-features = false }
hex-literal = { version = "0.3", optional = true }
generic-array = { version = "0.14", default-features = false }
Expand All @@ -34,7 +34,7 @@ hex-literal = "0.3"
[features]
default = ["arithmetic"]
alloc = []
arithmetic = ["ff", "group"]
arithmetic = ["bitvec", "ff", "group"]
dev = ["arithmetic", "hex-literal", "pem", "zeroize"]
ecdh = ["arithmetic", "zeroize"]
hazmat = []
Expand Down

0 comments on commit c6a7fa3

Please sign in to comment.