mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-17 11:55:29 +01:00
19 lines
363 B
Rust
19 lines
363 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 = "mint")]
|
|
pub mod mint;
|
|
#[cfg(feature = "wallet")]
|
|
pub mod wallet;
|
|
|
|
#[cfg(feature = "mint")]
|
|
pub use mint::MintRedbDatabase;
|
|
#[cfg(feature = "wallet")]
|
|
pub use wallet::WalletRedbDatabase;
|