diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index ac137e730..707aa21c5 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -108,6 +108,9 @@ criterion = "0.5.1" paste = "1.0.14" tempfile = "3.10.1" +[clippy] +allow = ["unwrap_in_tests"] + [[bench]] path = "benches/crypto/aes-256-gcm-siv.rs" name = "aes-256-gcm-siv" diff --git a/crates/crypto/clippy.toml b/crates/crypto/clippy.toml deleted file mode 100644 index 154626ef4..000000000 --- a/crates/crypto/clippy.toml +++ /dev/null @@ -1 +0,0 @@ -allow-unwrap-in-tests = true