Skip to content

Commit 7372460

Browse files
committed
Fix fuzzing
1 parent 8f3ad9e commit 7372460

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cargo-fuzz = true
1111
honggfuzz_fuzz = ["honggfuzz"]
1212

1313
[dependencies]
14-
honggfuzz = { version = "0.5", optional = true }
14+
honggfuzz = { version = "0.5", optional = true, default-features = false }
1515
simplicity = { path = ".." }
1616

1717
# Prevent this from interfering with workspaces

fuzz/travis-fuzz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ ${incorrectFilenames} -gt 0 ]; then
99
fi
1010

1111
# Testing
12-
cargo install --force honggfuzz
12+
cargo install --force honggfuzz --no-default-features
1313
for TARGET in fuzz_targets/*; do
1414
FILENAME=$(basename $TARGET)
1515
FILE="${FILENAME%.*}"

0 commit comments

Comments
 (0)