xstring/
lib.rs

1#![cfg_attr(not(any(test, feature = "std")), no_std)]
2#![cfg_attr(feature = "allocator_api", feature(allocator_api))]
3
4extern crate alloc;
5
6mod allocator;
7mod conv;
8#[cfg(feature = "serde")]
9mod serde;
10mod str;
11mod xstring;
12pub use {allocator::*, str::*, xstring::*};