lib.rs 324 B

1234567891011121314151617
  1. //! SQLite Storage backend for CDK
  2. #![warn(missing_docs)]
  3. #![warn(rustdoc::bare_urls)]
  4. pub mod error;
  5. mod migrations;
  6. #[cfg(feature = "mint")]
  7. pub mod mint;
  8. #[cfg(feature = "wallet")]
  9. pub mod wallet;
  10. #[cfg(feature = "mint")]
  11. pub use mint::MintRedbDatabase;
  12. #[cfg(feature = "wallet")]
  13. pub use wallet::WalletRedbDatabase;