We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd5a3a3 commit 13ad298Copy full SHA for 13ad298
benches/bench.rs
@@ -1,7 +1,9 @@
1
-use std::{any::type_name, fmt::Debug};
+#![allow(clippy::incompatible_msrv)] // false positive: https://github.com/rust-lang/rust-clippy/issues/12257#issuecomment-2093667187
2
+
3
+use std::{any::type_name, fmt::Debug, hint::black_box};
4
5
use concurrent_queue::{ConcurrentQueue, PopError};
-use criterion::{black_box, criterion_group, criterion_main, Criterion};
6
+use criterion::{criterion_group, criterion_main, Criterion};
7
use easy_parallel::Parallel;
8
9
const COUNT: usize = 100_000;
0 commit comments