Cargo.toml 605 B

12345678910111213141516171819202122
  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. [dependencies]
  12. async-trait.workspace = true
  13. anyhow.workspace = true
  14. cdk = { workspace = true, features = ["mint"] }
  15. fedimint-tonic-lnd = "0.2.0"
  16. futures.workspace = true
  17. tokio.workspace = true
  18. tokio-util.workspace = true
  19. tracing.workspace = true
  20. thiserror.workspace = true
  21. serde_json.workspace = true