#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
#![warn(
clippy::unwrap_used,
missing_docs,
rust_2018_idioms,
unused_lifetimes,
unused_qualifications
)]
#![doc = include_str!("../README.md")]
#![allow(missing_docs)]
#![allow(unused_imports)]
#![allow(dead_code)]
mod error;
pub use error::*;
mod byte_slices;
#[doc(inline)]
pub use byte_slices::*;
mod hkdf_label;
#[doc(inline)]
pub use hkdf_label::*;
mod nonce;
#[doc(inline)]
pub use nonce::*;
mod static_queue;
#[doc(inline)]
pub use static_queue::*;