Address further clippy lints
[dnssec-prover] / src / lib.rs
index 6aedb700fe29c256652f77c8f42a1cba1ae75272..91a315678f18f107a1a1e955e5c636121f9bc1db 100644 (file)
 
 // const_slice_from_raw_parts was stabilized in 1.64, however we support building on 1.63 as well.
 // Luckily, it seems to work fine in 1.63 with the feature flag (and RUSTC_BOOTSTRAP=1) enabled.
-#![allow(stable_features)]
-#![feature(const_slice_from_raw_parts)]
+#![cfg_attr(rust_1_63, feature(const_slice_from_raw_parts))]
+
+#![allow(clippy::new_without_default)] // why is this even a lint
+#![allow(clippy::result_unit_err)] // Why in the hell is this a lint?
+#![allow(clippy::get_first)] // Sometimes this improves readability
+#![allow(clippy::needless_lifetimes)] // lifetimes improve readability
+#![allow(clippy::needless_borrow)] // borrows indicate read-only/non-move
+#![allow(clippy::too_many_arguments)] // sometimes we don't have an option
+#![allow(clippy::identity_op)] // sometimes identities improve readability for repeated actions
+#![allow(clippy::erasing_op)] // sometimes identities improve readability for repeated actions
 
 #![cfg_attr(not(feature = "std"), no_std)]
 extern crate alloc;
@@ -55,3 +63,6 @@ pub mod query;
 
 #[cfg(feature = "validation")]
 pub mod validation;
+
+#[cfg(all(feature = "std", feature = "validation", test))]
+mod test;