mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-10 12:54:47 +00:00
Boog900
44981f2b24
* add workflow * fix errors * fix workflow * install dependencies * fix more errors * Update CONTRIBUTING.md * Update CONTRIBUTING.md Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * fix hack + enable it for cuprate-database * move hack to main CI * fix docs * fix ci formatting * fix txpool tests * fix CONTRIBUTING.md formatting * service -> tower::Service * review fixes * review fixes * fix CI --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
31 lines
597 B
Rust
31 lines
597 B
Rust
#![doc = include_str!("../README.md")]
|
|
#![allow(
|
|
// See `cuprate-database` for reasoning.
|
|
clippy::significant_drop_tightening
|
|
)]
|
|
|
|
// Used in docs: <https://github.com/Cuprate/cuprate/pull/170#discussion_r1823644357>.
|
|
use tower as _;
|
|
|
|
pub mod config;
|
|
mod free;
|
|
pub mod ops;
|
|
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;
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use cuprate_test_utils as _;
|
|
use hex_literal as _;
|
|
use tempfile as _;
|
|
use tokio as _;
|
|
}
|