mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-03-23 15:48:50 +00:00
31 lines
564 B
Rust
31 lines
564 B
Rust
#![doc = include_str!("../README.md")]
|
|
#![allow(
|
|
// See `cuprate-database` for reasoning.
|
|
clippy::significant_drop_tightening
|
|
)]
|
|
|
|
pub mod config;
|
|
mod free;
|
|
pub mod ops;
|
|
#[cfg(feature = "service")]
|
|
pub mod service;
|
|
pub mod tables;
|
|
mod tx;
|
|
pub mod types;
|
|
|
|
pub use config::Config;
|
|
pub use free::{open, transaction_blob_hash};
|
|
pub use tx::TxEntry;
|
|
|
|
//re-exports
|
|
pub use cuprate_database;
|
|
|
|
// TODO: remove when used.
|
|
use tower as _;
|
|
#[cfg(test)]
|
|
mod test {
|
|
use cuprate_test_utils as _;
|
|
use hex_literal as _;
|
|
use tempfile as _;
|
|
use tokio as _;
|
|
}
|