Cargo.toml 626 B

1234567891011121314151617181920212223
  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 = { workspace = true, features = ["mint"] }
  16. fedimint-tonic-lnd = "0.2.0"
  17. futures.workspace = true
  18. tokio.workspace = true
  19. tokio-util.workspace = true
  20. tracing.workspace = true
  21. thiserror.workspace = true
  22. serde_json.workspace = true