enigma-storage 0.0.1

Encrypted local storage for Enigma with mandatory at-rest encryption and cross-platform key vault providers.
Documentation
1
2
3
4
5
6
7
8
#[cfg(not(feature = "backend-sled"))]
compile_error!("backend-sled feature is required for enigma-storage");

#[cfg(feature = "backend-sled")]
mod sled_backend;

#[cfg(feature = "backend-sled")]
pub use sled_backend::SledBackend;