Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. readme = "README.md"
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [features]
  14. default = ["mint", "wallet", "auth"]
  15. mint = ["cdk-common/mint"]
  16. wallet = ["cdk-common/wallet"]
  17. auth = ["cdk-common/auth"]
  18. sqlcipher = ["libsqlite3-sys"]
  19. [dependencies]
  20. async-trait.workspace = true
  21. cdk-common.workspace = true
  22. bitcoin.workspace = true
  23. sqlx = { version = "0.7.4", default-features = false, features = [
  24. "runtime-tokio-rustls",
  25. "sqlite",
  26. "macros",
  27. "migrate",
  28. "uuid",
  29. ] }
  30. libsqlite3-sys = { version = "0.27.0", features = ["bundled-sqlcipher"], optional = true }
  31. thiserror.workspace = true
  32. tokio.workspace = true
  33. tracing.workspace = true
  34. serde_json.workspace = true
  35. lightning-invoice.workspace = true
  36. uuid.workspace = true