validus/lib.rs
1//! `validus` --- validated string slices
2#![doc = include_str!("../README.md")]
3#![cfg_attr(all(not(test), not(feature = "std")), no_std)]
4
5extern crate alloc;
6
7pub mod vstr;
8
9#[cfg(feature = "ext")]
10pub mod vstrext;
11
12pub mod prelude {
13    pub use crate::vstr::*;
14
15    #[cfg(feature = "ext")]
16    pub use crate::vstrext::*;
17}