//! Type-safe primitives for constrained values.
//!
//! `reliakit-primitives` provides small owned wrapper types for values that
//! should satisfy common constraints before they move through an application or
//! library boundary.
//!
//! The crate has no dependencies and forbids unsafe code.
extern crate alloc;
pub use BoundedStr;
pub use ;
pub use NonEmptyStr;
pub use ;