1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(clippy::print_stderr)]
#![warn(clippy::print_stdout)]

#[cfg(feature = "map")]
mod map;
mod table;
mod trie;

#[cfg(feature = "map")]
pub use map::*;
pub use table::*;
pub use trie::*;