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. # 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", "cdk-sql-common/mint"]
  15. wallet = ["cdk-common/wallet", "cdk-sql-common/wallet"]
  16. auth = ["cdk-common/auth", "cdk-sql-common/auth"]
  17. [dependencies]
  18. async-trait.workspace = true
  19. cdk-common = { workspace = true, features = ["test"] }
  20. bitcoin.workspace = true
  21. cdk-sql-common = { workspace = true }
  22. thiserror.workspace = true
  23. tokio = { workspace = true, features = ["rt-multi-thread"] }
  24. tracing.workspace = true
  25. serde.workspace = true
  26. serde_json.workspace = true
  27. lightning-invoice.workspace = true
  28. uuid.workspace = true
  29. tokio-postgres = "0.7.13"
  30. futures-util = "0.3.31"
  31. postgres-native-tls = "0.5.1"
  32. native-tls = "0.2"
  33. once_cell.workspace = true