fuzz: make hongfuzz fuzzing the default feature
This way you can run `cargo clippy --all` in the root, and `cargo hfuzz run` without modification.
This commit is contained in:
parent
6f754df231
commit
ab467cb091
|
@ -9,6 +9,7 @@ publish = false
|
||||||
cargo-fuzz = true
|
cargo-fuzz = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
default = ["honggfuzz_fuzz"]
|
||||||
afl_fuzz = ["afl"]
|
afl_fuzz = ["afl"]
|
||||||
honggfuzz_fuzz = ["honggfuzz"]
|
honggfuzz_fuzz = ["honggfuzz"]
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@ publish = false
|
||||||
cargo-fuzz = true
|
cargo-fuzz = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
default = ["honggfuzz_fuzz"]
|
||||||
afl_fuzz = ["afl"]
|
afl_fuzz = ["afl"]
|
||||||
honggfuzz_fuzz = ["honggfuzz"]
|
honggfuzz_fuzz = ["honggfuzz"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue