lib.rs 316 B

12345678910111213141516
  1. //! SQLite storage backend for cdk
  2. mod async_sqlite;
  3. mod common;
  4. pub use common::SqliteConnectionManager;
  5. #[cfg(feature = "mint")]
  6. pub mod mint;
  7. #[cfg(feature = "wallet")]
  8. pub mod wallet;
  9. #[cfg(feature = "mint")]
  10. pub use mint::MintSqliteDatabase;
  11. #[cfg(feature = "wallet")]
  12. pub use wallet::WalletSqliteDatabase;