Skip to content

Commit

Permalink
Silence new clippy warning (#12208)
Browse files Browse the repository at this point in the history
it triggers a zillion times in pyo3 generated code
  • Loading branch information
alex authored Dec 27, 2024
1 parent 0fc749e commit 9543b64
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
// for complete details.

#![deny(rust_2018_idioms, clippy::undocumented_unsafe_blocks)]
#![allow(unknown_lints, non_local_definitions, clippy::result_large_err)]
#![allow(
unknown_lints,
non_local_definitions,
clippy::result_large_err,
clippy::useless_conversion
)]

#[cfg(CRYPTOGRAPHY_OPENSSL_300_OR_GREATER)]
use crate::error::CryptographyResult;
Expand Down

0 comments on commit 9543b64

Please sign in to comment.