lib.rs 483 B

123456789101112131415161718192021222324
  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. pub use common::{run_db_operation, run_db_operation_sync};
  12. #[cfg(feature = "mint")]
  13. pub mod mint;
  14. #[cfg(feature = "wallet")]
  15. pub mod wallet;
  16. #[cfg(feature = "mint")]
  17. pub use mint::SQLMintDatabase;
  18. #[cfg(feature = "wallet")]
  19. pub use wallet::SQLWalletDatabase;