1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! `validus` --- validated string slices
#![doc = include_str!("../README.md")]
#![cfg_attr(all(not(test), not(feature = "std")), no_std)]

extern crate alloc;

pub mod vstr;

#[cfg(feature = "ext")]
pub mod vstrext;

pub mod prelude {
    pub use crate::vstr::*;

    #[cfg(feature = "ext")]
    pub use crate::vstrext::*;
}