Re-enable cargo audit; use --ignore instead.

This commit is contained in:
Andreas Fackler 2019-07-23 12:19:33 +02:00 committed by Andreas Fackler
parent bb17bd7a9c
commit ccd96adc35
1 changed files with 4 additions and 4 deletions

8
ci.sh
View File

@ -17,13 +17,13 @@ cargo fmt -- --check
cargo test --features=use-insecure-test-only-mock-crypto --release
cargo doc
cargo deadlinks --dir target/doc/hbbft/
# TODO: Re-enable once https://github.com/poanetwork/hbbft/issues/415 is fixed.
# cargo audit
# TODO: Remove exception once https://github.com/poanetwork/hbbft/issues/415 is fixed.
cargo audit --ignore RUSTSEC-2019-0011
cd hbbft_testing
cargo clippy --all-targets -- --deny clippy::all
cargo fmt -- --check
cargo test --release
# TODO: Re-enable once https://github.com/poanetwork/hbbft/issues/415 is fixed.
# cargo audit
# TODO: Remove exception once https://github.com/poanetwork/hbbft/issues/415 is fixed.
cargo audit --ignore RUSTSEC-2019-0011
cd ..