1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! SQLite Storage backend for CDK

#![warn(missing_docs)]
#![warn(rustdoc::bare_urls)]

pub mod error;
mod migrations;

#[cfg(feature = "mint")]
pub mod mint;
#[cfg(feature = "wallet")]
pub mod wallet;

#[cfg(feature = "mint")]
pub use mint::MintRedbDatabase;
#[cfg(feature = "wallet")]
pub use wallet::WalletRedbDatabase;