intern-mint 0.3.2

byte slice interning
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

pub mod borrow;
#[cfg(feature = "bstr")]
pub mod bstr;
pub mod interned;
pub mod pool;
#[cfg(feature = "serde")]
pub mod serde;
#[cfg(test)]
mod tests;

pub use crate::{borrow::BorrowedInterned, interned::Interned};