cdk_redb/
lib.rs

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