cuprate_txpool/
lib.rs

1#![doc = include_str!("../README.md")]
2#![allow(
3    // See `cuprate-database` for reasoning.
4    clippy::significant_drop_tightening
5)]
6
7// Used in docs: <https://github.com/Cuprate/cuprate/pull/170#discussion_r1823644357>.
8use 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};
20pub use tx::TxEntry;
21
22//re-exports
23pub 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}