cdk_sqlite/lib.rs
1//! SQLite storage backend for cdk
2
3#![warn(missing_docs)]
4#![warn(rustdoc::bare_urls)]
5
6mod common;
7
8#[cfg(feature = "mint")]
9pub mod mint;
10#[cfg(feature = "wallet")]
11pub mod wallet;
12
13#[cfg(feature = "mint")]
14pub use mint::MintSqliteDatabase;
15#[cfg(feature = "wallet")]
16pub use wallet::WalletSqliteDatabase;