Cargo.toml 895 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "cdk-phoenixd"
  3. version = "0.7.1"
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. license = "MIT"
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. rust-version = "1.63.0" # MSRV
  10. description = "CDK ln backend for phoenixd"
  11. [dependencies]
  12. async-trait = "0.1"
  13. anyhow = "1"
  14. axum = "0.6.20"
  15. bitcoin = { version = "0.32.2", default-features = false }
  16. cdk = { path = "../cdk", version = "0.7.1", default-features = false, features = [
  17. "mint",
  18. ] }
  19. futures = { version = "0.3.28", default-features = false }
  20. tokio = { version = "1", default-features = false }
  21. tokio-util = { version = "0.7.11", default-features = false }
  22. tracing = { version = "0.1", default-features = false, features = [
  23. "attributes",
  24. "log",
  25. ] }
  26. thiserror = "1"
  27. phoenixd-rs = "0.4.0"
  28. uuid = { version = "=1.12.1", features = ["v4"] }