From 74e2e93a5d1323ae3b7461a73e90bdb966607434 Mon Sep 17 00:00:00 2001 From: Andreas Fackler Date: Thu, 25 Jul 2019 12:22:31 +0200 Subject: [PATCH] Remove audit exception; fix crossbeam issue. --- ci.sh | 6 ++---- examples/network/messaging.rs | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci.sh b/ci.sh index 4bd6b43..4c1a249 100755 --- a/ci.sh +++ b/ci.sh @@ -17,13 +17,11 @@ cargo fmt -- --check cargo test --features=use-insecure-test-only-mock-crypto --release cargo doc cargo deadlinks --dir target/doc/hbbft/ -# TODO: Remove exception once https://github.com/poanetwork/hbbft/issues/415 is fixed. -cargo audit --ignore RUSTSEC-2019-0011 +cargo audit cd hbbft_testing cargo clippy --all-targets -- --deny clippy::all cargo fmt -- --check cargo test --features=use-insecure-test-only-mock-crypto --release -# TODO: Remove exception once https://github.com/poanetwork/hbbft/issues/415 is fixed. -cargo audit --ignore RUSTSEC-2019-0011 +cargo audit cd .. diff --git a/examples/network/messaging.rs b/examples/network/messaging.rs index 0402463..43fe0aa 100644 --- a/examples/network/messaging.rs +++ b/examples/network/messaging.rs @@ -85,6 +85,8 @@ impl Messaging { } /// Spawns the message delivery thread in a given thread scope. + // TODO: Remove this once https://github.com/crossbeam-rs/crossbeam/issues/404 is resolved. + #[allow(clippy::drop_copy, clippy::zero_ptr)] pub fn spawn<'a, 'scope>( &self, scope: &'scope Scope<'a>,