1#![doc = include_str!("../README.md")]
2#![allow(
3 clippy::significant_drop_tightening
5)]
6
7use tower as _;
9
10pub mod config;
11mod free;
12pub mod ops;
13pub mod service;
14pub mod tables;
15mod tx;
16pub mod types;
17
18pub use config::Config;
19pub use free::{open, transaction_blob_hash, DATABASE_VERSION, VERSION_KEY};
20pub use tx::TxEntry;
21
22pub use cuprate_database;
24
25#[cfg(test)]
26mod test {
27 use cuprate_test_utils as _;
28 use hex_literal as _;
29 use tempfile as _;
30 use tokio as _;
31}