lib.rs 267 B

1234567891011121314
  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 = "wallet")]
  8. pub mod wallet;
  9. #[cfg(feature = "wallet")]
  10. pub use wallet::WalletRedbDatabase;