Removed fuzztarget feature
It seems to be unused and when there's a need for it it's better to use `--cfg fuzzing` as in `rust-secp256k1 ` and `bitcoin_hashes`.
This commit is contained in:
parent
5098011416
commit
a291fee23c
|
@ -14,7 +14,6 @@ readme = "README.md"
|
||||||
[features]
|
[features]
|
||||||
default = [ "std", "secp-recovery" ]
|
default = [ "std", "secp-recovery" ]
|
||||||
base64 = [ "base64-compat" ]
|
base64 = [ "base64-compat" ]
|
||||||
fuzztarget = []
|
|
||||||
unstable = []
|
unstable = []
|
||||||
rand = ["secp256k1/rand-std"]
|
rand = ["secp256k1/rand-std"]
|
||||||
use-serde = ["serde", "bitcoin_hashes/serde", "secp256k1/serde"]
|
use-serde = ["serde", "bitcoin_hashes/serde", "secp256k1/serde"]
|
||||||
|
|
|
@ -14,7 +14,7 @@ honggfuzz_fuzz = ["honggfuzz"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
honggfuzz = { version = "0.5", optional = true }
|
honggfuzz = { version = "0.5", optional = true }
|
||||||
afl = { version = "0.4", optional = true }
|
afl = { version = "0.4", optional = true }
|
||||||
bitcoin = { path = "..", features = ["fuzztarget"] }
|
bitcoin = { path = ".." }
|
||||||
|
|
||||||
# Prevent this from interfering with workspaces
|
# Prevent this from interfering with workspaces
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|
Loading…
Reference in New Issue