Skip to main content

osom_lib_strings/immutable/serde/
mod.rs

1#![cfg(feature = "serde")]
2
3mod direct_string;
4
5mod seeded;
6pub use seeded::*;
7
8cfg_select! {
9    feature="std" => {
10        mod std_string_cache;
11
12        #[cfg_attr(docsrs, doc(cfg(feature = "std")))]
13        pub use std_string_cache::*;
14    },
15    _ => { }
16}