We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd9aa4 commit 3bfb938Copy full SHA for 3bfb938
fuzz/Cargo.toml
@@ -12,7 +12,7 @@ afl_fuzz = ["afl"]
12
honggfuzz_fuzz = ["honggfuzz"]
13
14
[dependencies]
15
-honggfuzz = { version = "0.5", optional = true }
+honggfuzz = { version = "0.5", default-features = false, optional = true }
16
afl = { version = "0.8", optional = true }
17
regex = { version = "1.4"}
18
miniscript = { path = "..", features = ["compiler"] }
fuzz/travis-fuzz.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
set -e
3
-cargo install --force honggfuzz
+cargo install --force honggfuzz --no-default-features
4
for TARGET in fuzz_targets/*; do
5
FILENAME=$(basename $TARGET)
6
FILE="${FILENAME%.*}"
0 commit comments