From 44738263035bdb851984c9073212ccf16ee2b3ed Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Sat, 21 Mar 2026 15:48:28 +0300 Subject: [PATCH] Update crypto_bench.rs --- benches/crypto_bench.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benches/crypto_bench.rs b/benches/crypto_bench.rs index 0089abe..940791c 100644 --- a/benches/crypto_bench.rs +++ b/benches/crypto_bench.rs @@ -1,5 +1,5 @@ // Cryptobench -use criterion::{black_box, criterion_group, Criterion}; +use criterion::{Criterion, black_box, criterion_group}; fn bench_aes_ctr(c: &mut Criterion) { c.bench_function("aes_ctr_encrypt_64kb", |b| { @@ -9,4 +9,4 @@ fn bench_aes_ctr(c: &mut Criterion) { black_box(enc.encrypt(&data)) }) }); -} \ No newline at end of file +}