// MIT/Apache2 License
//! Provides two types: `StorageVec` and `StorageMap`. These will either use stack-based storage
//! methods or heap-based storage methods, based on if the `alloc` feature is enabled.
//!
//! The idea behind this crate is to allow crates that require vector or map types to be able
//! to be `no_std` by allowing heap storage to be toggled on or off via features.
// i try to avoid generating a lot of LLVM IR in order
// to reduce compile times
extern crate alloc;
pub use *;
pub use *;