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.
2 parents 8f3ad9e + 7372460 commit 166b379Copy full SHA for 166b379
fuzz/Cargo.toml
@@ -11,7 +11,7 @@ cargo-fuzz = true
11
honggfuzz_fuzz = ["honggfuzz"]
12
13
[dependencies]
14
-honggfuzz = { version = "0.5", optional = true }
+honggfuzz = { version = "0.5", optional = true, default-features = false }
15
simplicity = { path = ".." }
16
17
# Prevent this from interfering with workspaces
fuzz/travis-fuzz.sh
@@ -9,7 +9,7 @@ if [ ${incorrectFilenames} -gt 0 ]; then
9
fi
10
# Testing
-cargo install --force honggfuzz
+cargo install --force honggfuzz --no-default-features
for TARGET in fuzz_targets/*; do
FILENAME=$(basename $TARGET)
FILE="${FILENAME%.*}"
0 commit comments