cdk-redb 0.16.0-rc.2

Redb storage backend for CDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! SQLite Storage backend for CDK

#![doc = include_str!("../README.md")]

pub mod error;
mod migrations;

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

#[cfg(feature = "wallet")]
pub use wallet::WalletRedbDatabase;