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 = "wallet")] 11pub mod wallet; 12 13#[cfg(feature = "wallet")] 14pub use wallet::WalletRedbDatabase;