From 3a5fe312627401651af78b8bef1f0982c5a6df23 Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:01:36 +0300 Subject: [PATCH] Rustfmt --- benches/crypto_bench.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;