noosphere-storage 0.10.1

Pluggable backing storage for the Rust Noosphere implementation
Documentation
mod memory;
mod tracking;

pub use memory::*;
pub use tracking::*;

#[cfg(not(target_arch = "wasm32"))]
mod sled;
#[cfg(not(target_arch = "wasm32"))]
pub use self::sled::*;

#[cfg(all(not(target_arch = "wasm32"), feature = "rocksdb"))]
mod rocks_db;
#[cfg(all(not(target_arch = "wasm32"), feature = "rocksdb"))]
pub use rocks_db::*;

#[cfg(target_arch = "wasm32")]
mod indexed_db;
#[cfg(target_arch = "wasm32")]
pub use indexed_db::*;