#[cfg(feature = "hashbrown")]
pub mod hashbrown;
#[cfg(not(feature = "hashbrown"))]
pub mod hashmap;
#[cfg(feature = "rocksdb")]
pub mod rocksdb;
#[cfg(not(feature = "hashbrown"))]
pub type HashTreeDB<const N: usize> = crate::tree_db::hashmap::HashDB<N>;
#[cfg(feature = "hashbrown")]
pub type HashTreeDB<const N: usize> = crate::tree_db::hashbrown::HashDB<N>;