diff --git a/benches/crypto_bench.rs b/benches/crypto_bench.rs index 38add34..182d713 100644 --- a/benches/crypto_bench.rs +++ b/benches/crypto_bench.rs @@ -1,12 +1,12 @@ use criterion::{Criterion, criterion_group, criterion_main}; use std::hint::black_box; -#[allow(unused_imports)] -#[path = "../src/error.rs"] -mod error; #[allow(unused_imports)] #[path = "../src/crypto/aes.rs"] mod aes_impl; +#[allow(unused_imports)] +#[path = "../src/error.rs"] +mod error; use aes_impl::AesCtr;