slate-kv 0.4.0

Secure, log-structured, authenticated, tamper-evident key-value store for edge devices (std API)
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(clippy::manual_is_multiple_of)]

pub mod db;
pub mod file_counter;
pub mod file_flash;
pub(crate) mod io_util;

pub use db::{Db, DbError, KeySource, Options, Profile, ScrubReport, Stats};
pub use file_counter::FileCounter;
pub use file_flash::FileFlash;