We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#[allow(clippy::*)]
1 parent 85b9f87 commit acb3708Copy full SHA for acb3708
benches/specializations.rs
@@ -1,4 +1,4 @@
1
-#![allow(unstable_name_collisions, clippy::incompatible_msrv)]
+#![allow(unstable_name_collisions)]
2
3
use criterion::black_box;
4
use criterion::BenchmarkId;
src/lib.rs
-#![warn(missing_docs, clippy::default_numeric_fallback)]
+#![warn(missing_docs)]
#![crate_name = "itertools"]
#![cfg_attr(not(feature = "use_std"), no_std)]
tests/quick.rs
@@ -253,7 +253,6 @@ where
253
let mut it = get_it();
254
255
for _ in 0..(counts.len() - 1) {
256
- #[allow(clippy::manual_assert)]
257
if it.next().is_none() {
258
panic!("Iterator shouldn't be finished, may not be deterministic");
259
}
0 commit comments