Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benches: ignore clippy::incompatible_msrv
Fixes clippy findings of the form: ``` warning: current MSRV (Minimum Supported Rust Version) is `1.63.0` but this item is stable since `1.66.0` --> benches/benchmark.rs:153:15 | 153 | c.iter(|| black_box(assert!(matches!(crl.find_serial(FAKE_SERIAL), Ok(None))))); | ^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv = note: `#[warn(clippy::incompatible_msrv)]` on by default ``` We don't offer an MSRV for dev-only benchmarks.
- Loading branch information