covert_storage/lib.rs
1#![forbid(unsafe_code)]
2#![forbid(clippy::unwrap_used)]
3#![deny(clippy::pedantic)]
4#![deny(clippy::get_unwrap)]
5#![allow(clippy::module_name_repetitions)]
6
7mod backend_pool;
8mod encrypted_pool;
9pub mod migrator;
10mod scoped_queries;
11mod states;
12mod storage;
13mod utils;
14
15pub use backend_pool::BackendStoragePool;
16pub use encrypted_pool::{EncryptedPool, EncryptedPoolError, PoolState};