1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "dashmap")]
mod dashmap_impl;

#[cfg(feature = "dashmap")]
pub use dashmap_impl::*;

#[cfg(all(feature = "dashmap", feature = "abi_stable"))]
compile_error!("abi_stable and dashmap features cannot be used together");

#[cfg(not(feature = "dashmap"))]
mod hashmap_impl;

#[cfg(not(feature = "dashmap"))]
pub use hashmap_impl::*;