lib.rs 363 B

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