aboutsummaryrefslogtreecommitdiff
path: root/benches
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-03-30 17:25:54 -0700
committerGitHub <[email protected]>2025-03-30 17:25:54 -0700
commite1c2ea27fdd717fd924d7b286a125408d7e817f7 (patch)
treec71005f1a46af1a8c9135865469b79ec40fde2e2 /benches
parent83a60d9da6a44b719e258926e568c203d3b4dd36 (diff)
add the `hazmat` module and deprecate the undocumented `guts` module
https://github.com/BLAKE3-team/BLAKE3/pull/458
Diffstat (limited to 'benches')
-rw-r--r--benches/bench.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/benches/bench.rs b/benches/bench.rs
index defdb12..e89f04c 100644
--- a/benches/bench.rs
+++ b/benches/bench.rs
@@ -4,9 +4,9 @@ extern crate test;
use arrayref::array_ref;
use arrayvec::ArrayVec;
-use blake3::guts::{BLOCK_LEN, CHUNK_LEN};
use blake3::platform::{Platform, MAX_SIMD_DEGREE};
use blake3::OUT_LEN;
+use blake3::{BLOCK_LEN, CHUNK_LEN};
use rand::prelude::*;
use test::Bencher;