From ccd96adc35dffcb7433de62b02d0ed58e1d1ee96 Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Tue, 23 Jul 2019 12:19:33 +0200 Subject: [PATCH] Re-enable cargo audit; use --ignore instead. --- ci.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci.sh b/ci.sh index 6110a40..47af93b 100755 --- a/ci.sh +++ b/ci.sh @@ -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 ..