lib.rs 327 B

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