lib.rs 341 B

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