diff --git a/benches/lib.rs b/benches/lib.rs index a7e9c9330..e3f67a5af 100644 --- a/benches/lib.rs +++ b/benches/lib.rs @@ -41,11 +41,7 @@ unused_qualifications, variant_size_differences )] -#![allow( - box_pointers, - missing_copy_implementations, - missing_debug_implementations -)] +#![allow(missing_copy_implementations, missing_debug_implementations)] use criterion::{BatchSize, Bencher, Criterion}; use self_encryption::{decrypt_full_set, encrypt, test_helpers::random_bytes}; diff --git a/src/lib.rs b/src/lib.rs index 0115aaa0a..b7d7e1fed 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,6 @@ unused_results )] #![allow( - box_pointers, missing_copy_implementations, missing_debug_implementations, variant_size_differences, diff --git a/tests/lib.rs b/tests/lib.rs index fca253f97..0533684f1 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -43,7 +43,6 @@ unused_results )] #![allow( - box_pointers, missing_copy_implementations, missing_debug_implementations, variant_size_differences