From c2ff5eecd20691c586295c37ac2b7dd20081f085 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Sun, 17 Mar 2024 18:47:32 +0000 Subject: [PATCH] digest: fixup imports for `hash_serialization_test` macro (#1537) This fixes #1487 --- digest/src/dev.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/digest/src/dev.rs b/digest/src/dev.rs index 7018e8549..00b93859b 100644 --- a/digest/src/dev.rs +++ b/digest/src/dev.rs @@ -44,7 +44,7 @@ macro_rules! hash_serialization_test { #[test] fn $name() { use digest::{ - crypto_common::{BlockSizeUser, SerializableState}, + crypto_common::{hazmat::SerializableState, BlockSizeUser}, typenum::Unsigned, Digest, }; @@ -77,7 +77,7 @@ macro_rules! hash_rt_outsize_serialization_test { #[test] fn $name() { use digest::{ - crypto_common::{BlockSizeUser, SerializableState}, + crypto_common::{hazmat::SerializableState, BlockSizeUser}, typenum::Unsigned, Digest, Update, VariableOutput, };