1
2
3
4
5
6
7
8
#[cfg(not(any(feature = "use_hashbrown")))] pub mod hashmap;
#[cfg(feature = "use_hashbrown")] pub mod hashbrown;
#[cfg(feature = "use_rocksdb")] pub mod rocksdb;

#[cfg(not(any(feature = "use_hashbrown")))]
pub type HashTreeDB = crate::tree_db::hashmap::HashDB;
#[cfg(feature = "use_hashbrown")]
pub type HashTreeDB = crate::tree_db::hashbrown::HashDB;