Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "cdk-postgres"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. description = "PostgreSQL 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", "cdk-sql-base/mint"]
  16. wallet = ["cdk-common/wallet", "cdk-sql-base/wallet"]
  17. auth = ["cdk-common/auth", "cdk-sql-base/auth"]
  18. [dependencies]
  19. async-trait.workspace = true
  20. cdk-common = { workspace = true, features = ["test"] }
  21. bitcoin.workspace = true
  22. cdk-sql-base = { workspace = true }
  23. thiserror.workspace = true
  24. tokio = { workspace = true, features = ["rt-multi-thread"] }
  25. tracing.workspace = true
  26. serde.workspace = true
  27. serde_json.workspace = true
  28. lightning-invoice.workspace = true
  29. uuid.workspace = true
  30. tokio-postgres = "0.7.13"
  31. futures-util = "0.3.31"
  32. postgres-native-tls = "0.5.1"
  33. once_cell.workspace = true