intern_mint/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod borrow;
4#[cfg(feature = "bstr")]
5pub mod bstr;
6#[cfg(feature = "databuf")]
7pub mod databuf;
8pub mod interned;
9pub mod pool;
10#[cfg(feature = "serde")]
11pub mod serde;
12#[cfg(test)]
13mod tests;
14
15pub use crate::{borrow::BorrowedInterned, interned::Interned};