Skip to content

Commit

Permalink
Don't enable recovery of secp256k1 in the dependency declaration
Browse files Browse the repository at this point in the history
Enabling this feature in the dependency declaration defeats the point
of exposing a feature in rust-bitcoin that enables this because
cargo currently does not provide a way to disable a once activated feature.
  • Loading branch information
thomaseizinger committed Jan 6, 2021
1 parent 68840b6 commit e52e48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -24,7 +24,7 @@ secp-recovery = ["secp256k1/recovery"]
[dependencies]
bech32 = "0.7.2"
bitcoin_hashes = "0.9.1"
secp256k1 = { version = "0.20.0", features = [ "recovery" ] }
secp256k1 = "0.20.0"

base64-compat = { version = "1.0.0", optional = true }
bitcoinconsensus = { version = "0.19.0-1", optional = true }
Expand Down

0 comments on commit e52e48e

Please sign in to comment.