Cargo.toml 656 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "cdk-phoenixd"
  3. version = { workspace = true }
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. homepage.workspace = true
  7. repository.workspace = true
  8. rust-version.workspace = true # MSRV
  9. license.workspace = true
  10. description = "CDK ln backend for phoenixd"
  11. [dependencies]
  12. async-trait.workspace = true
  13. anyhow.workspace = true
  14. axum.workspace = true
  15. bitcoin.workspace = true
  16. cdk = { workspace = true, default-features = false, features = ["mint"] }
  17. futures.workspace = true
  18. tokio.workspace = true
  19. tracing.workspace = true
  20. thiserror.workspace = true
  21. phoenixd-rs = "0.2.0"
  22. # phoenixd-rs = { path = "../../../../phoenixd-rs" }
  23. uuid.workspace = true