//! provides a non persistent store for testing
pub use HashMap;
pub use Error as HashMapError;
pub use BTreeMap;
pub use Error as BTreeMapError;
// interesting discussion about key value db alternatives to sled:
// https://gitlab.com/famedly/conduit/-/issues/74
// one interesting one is heed (wraps LMDB)