1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(not(target_arch = "wasm32"))]
pub mod flatfs;
pub mod memory;
#[cfg(not(target_arch = "wasm32"))]
#[cfg(feature = "redb_data_store")]
pub mod redb;
#[cfg(not(target_arch = "wasm32"))]
#[cfg(feature = "sled_data_store")]
pub mod sled;

#[cfg(target_arch = "wasm32")]
pub mod idb;