1 2 3 4 5 6 7 8 9 10 11
//! Persistent storage of data. pub use self::backends::{Backend, Transaction, Error}; pub use self::ident::{Ident, IdentBuilder, IdentError}; pub use self::store::{KeyValueStore, KeyValueError}; mod backends; mod ident; mod store; mod test;