cdk-sql-common 0.16.0-rc.0

Generic SQL storage backend for CDK
Documentation
//! SQLite storage backend for cdk

mod common;
pub mod database;
mod keyvalue;
mod macros;
pub mod pool;
pub mod stmt;
pub mod value;

pub use cdk_common::database::ConversionError;
pub use common::{run_db_operation, run_db_operation_sync};

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

#[cfg(feature = "mint")]
pub use mint::SQLMintDatabase;
#[cfg(feature = "wallet")]
pub use wallet::SQLWalletDatabase;