mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-08 07:26:02 +01:00
15 lines
267 B
Rust
15 lines
267 B
Rust
//! SQLite Storage backend for CDK
|
|
|
|
#![doc = include_str!("../README.md")]
|
|
#![warn(missing_docs)]
|
|
#![warn(rustdoc::bare_urls)]
|
|
|
|
pub mod error;
|
|
mod migrations;
|
|
|
|
#[cfg(feature = "wallet")]
|
|
pub mod wallet;
|
|
|
|
#[cfg(feature = "wallet")]
|
|
pub use wallet::WalletRedbDatabase;
|