covert-storage 0.1.3

Covert encrypted storage implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
#![forbid(clippy::unwrap_used)]
#![deny(clippy::pedantic)]
#![deny(clippy::get_unwrap)]
#![allow(clippy::module_name_repetitions)]

mod backend_pool;
mod encrypted_pool;
pub mod migrator;
mod scoped_queries;
mod states;
mod storage;
mod utils;

pub use backend_pool::BackendStoragePool;
pub use encrypted_pool::{EncryptedPool, EncryptedPoolError, PoolState};