//! __microkv__ is a minimal, security-focused key-value store for sensitive data, with
//! encrypted persistence to disk.
//!
//! Every store is encrypted, with values sealed with
//! ChaCha20-Poly1305 under a key derived from a password (scrypt, or argon2 behind a
//! feature flag) or supplied directly. Data is organized into isolated namespaces
//! ("trees"), persisted atomically, and key material is held in memory-locked,
//! auto-zeroed storage.
//!
//! ```rust
//! use microkv::{MicroKV, Credential};
//!
//! let db = MicroKV::in_memory(Credential::password("p@ssw0rd")).unwrap();
//! db.put("answer", &42u32).unwrap();
//! let answer: u32 = db.require("answer").unwrap();
//! assert_eq!(answer, 42);
//! ```
pub use crate;
pub use crate;
pub use crate;
pub use crateMicroKV;
pub use crateTree;
pub use crateTxn;