Cargo.toml 855 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "cdk-ldk-node"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. license.workspace = true
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. rust-version.workspace = true # MSRV
  10. description = "CDK ln backend for cdk-ldk-node"
  11. readme = "README.md"
  12. [dependencies]
  13. async-trait.workspace = true
  14. axum.workspace = true
  15. cdk-common = { workspace = true, features = ["mint"] }
  16. futures.workspace = true
  17. tokio.workspace = true
  18. tokio-util.workspace = true
  19. tracing.workspace = true
  20. thiserror.workspace = true
  21. ldk-node.workspace = true
  22. tokio-stream = { workspace = true, features = ["sync"] }
  23. serde.workspace = true
  24. serde_json.workspace = true
  25. maud = "0.27.0"
  26. tower.workspace = true
  27. tower-http.workspace = true
  28. rust-embed = "8.5.0"
  29. serde_urlencoded = "0.7"
  30. urlencoding = "2.1"