cdk_redb/
lib.rs

1//! SQLite Storage backend for CDK
2
3#![warn(missing_docs)]
4#![warn(rustdoc::bare_urls)]
5
6pub mod error;
7mod migrations;
8
9#[cfg(feature = "mint")]
10pub mod mint;
11#[cfg(feature = "wallet")]
12pub mod wallet;
13
14#[cfg(feature = "mint")]
15pub use mint::MintRedbDatabase;
16#[cfg(feature = "wallet")]
17pub use wallet::WalletRedbDatabase;