xstring 0.1.1

An immutable owned string that could be cheaply cloned and passed through FFI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(any(test, feature = "std")), no_std)]
#![cfg_attr(feature = "allocator_api", feature(allocator_api))]

extern crate alloc;

mod allocator;
mod conv;
#[cfg(feature = "serde")]
mod serde;
mod str;
mod xstring;
pub use {allocator::*, str::*, xstring::*};