osom_lib_strings 0.1.30

ABI-stable string types and helpers for osom_lib.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg(feature = "serde")]

mod direct_string;

mod seeded;
pub use seeded::*;

cfg_select! {
    feature="std" => {
        mod std_string_cache;

        #[cfg_attr(docsrs, doc(cfg(feature = "std")))]
        pub use std_string_cache::*;
    },
    _ => { }
}