Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "cdk-sqlite"
  3. version = "0.7.1"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. description = "SQLite storage backend for CDK"
  7. license = "MIT"
  8. homepage = "https://github.com/cashubtc/cdk"
  9. repository = "https://github.com/cashubtc/cdk.git"
  10. rust-version = "1.75.0" # MSRV
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [features]
  13. default = ["mint", "wallet"]
  14. mint = ["cdk-common/mint"]
  15. wallet = ["cdk-common/wallet"]
  16. sqlcipher = ["libsqlite3-sys"]
  17. [dependencies]
  18. async-trait.workspace = true
  19. cdk-common.workspace = true
  20. bitcoin.workspace = true
  21. sqlx = { version = "0.6.3", default-features = false, features = [
  22. "runtime-tokio-rustls",
  23. "sqlite",
  24. "macros",
  25. "migrate",
  26. "uuid",
  27. ] }
  28. libsqlite3-sys = { version = "0.24.1", features = ["bundled-sqlcipher"], optional = true }
  29. thiserror.workspace = true
  30. tokio.workspace = true
  31. tracing.workspace = true
  32. serde_json.workspace = true
  33. lightning-invoice.workspace = true
  34. uuid.workspace = true