Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "cdk-lnd"
  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 lnd"
  11. readme = "README.md"
  12. [dependencies]
  13. async-trait.workspace = true
  14. anyhow.workspace = true
  15. cdk-common = { workspace = true, features = ["mint"] }
  16. futures.workspace = true
  17. tokio = { workspace = true, default-features = false, features = ["fs"] }
  18. tokio-util.workspace = true
  19. tracing.workspace = true
  20. thiserror.workspace = true
  21. serde_json.workspace = true
  22. tonic-prost.workspace = true
  23. prost.workspace = true
  24. tonic = { workspace = true, features = ["codegen"] }
  25. http = "1.3.1"
  26. hyper = { version = "1.6.0", features = ["http2", "client"] }
  27. hyper-util = { version = "0.1.14", features = ["client"] }
  28. hyper-rustls = { version = "0.27.7", features = ["http2", "tls12"] }
  29. rustls.workspace = true
  30. rustls-pemfile = "2.2.0"
  31. [build-dependencies]
  32. tonic-prost-build.workspace = true
  33. [lints]
  34. workspace = true