diff --git a/hashes/src/lib.rs b/hashes/src/lib.rs index 09a57d410..a505d9759 100644 --- a/hashes/src/lib.rs +++ b/hashes/src/lib.rs @@ -126,7 +126,12 @@ pub mod siphash24; use core::{convert, fmt, hash}; -pub use hmac::{Hmac, HmacEngine}; +#[rustfmt::skip] // Keep public re-exports separate. +#[doc(inline)] +pub use self::{ + hkdf::Hkdf, + hmac::{Hmac, HmacEngine}, +}; /// A hashing engine which bytes can be serialized into. pub trait HashEngine: Clone + Default {