lib.rs 296 B

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