Cargo.toml 1.1 KB

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