Cargo.toml 1.1 KB

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