Remove `sign/type_resolver.rs` from `rustfmt` exclusion list
[rust-lightning] / fuzz / ci-fuzz.sh
index 9894178458da6afdac246500474ef70014588f23..969505ca88d1bf1e227fd1eeee73c26c13dea741 100755 (executable)
@@ -1,5 +1,6 @@
 #!/bin/bash
 set -e
+set -x
 
 pushd src/msg_targets
 rm msg_*.rs
@@ -12,7 +13,7 @@ rm *_target.rs
 [ "$(git diff)" != "" ] && exit 1
 popd
 
-cargo install --color always --force honggfuzz
+cargo install --color always --force honggfuzz --no-default-features
 sed -i 's/lto = true//' Cargo.toml
 HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo --color always hfuzz build
 for TARGET in src/bin/*.rs; do