lib.rs 424 B

1234567891011121314151617181920212223
  1. //! SQLite storage backend for cdk
  2. #![warn(missing_docs)]
  3. #![warn(rustdoc::bare_urls)]
  4. mod common;
  5. pub mod database;
  6. mod macros;
  7. pub mod pool;
  8. pub mod stmt;
  9. pub mod value;
  10. pub use cdk_common::database::ConversionError;
  11. #[cfg(feature = "mint")]
  12. pub mod mint;
  13. #[cfg(feature = "wallet")]
  14. pub mod wallet;
  15. #[cfg(feature = "mint")]
  16. pub use mint::SQLMintDatabase;
  17. #[cfg(feature = "wallet")]
  18. pub use wallet::SQLWalletDatabase;