lib.rs 309 B

12345678910111213141516
  1. //! SQLite storage backend for cdk
  2. #![warn(missing_docs)]
  3. #![warn(rustdoc::bare_urls)]
  4. mod common;
  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;