tinymap/lib.rs
1#![forbid(unsafe_code)]
2#![allow(clippy::redundant_pattern_matching)] // I'm trying to reduce the amount of LLVM IR output
3#![no_std]
4
5#[cfg(feature = "alloc")]
6extern crate alloc;
7
8pub mod array_map;
9#[cfg(feature = "alloc")]
10pub mod tiny_map;
11
12pub use array_map::ArrayMap;
13#[cfg(feature = "alloc")]
14pub use tiny_map::TinyMap;