Cargo.toml 690 B

1234567891011121314151617181920
  1. [package]
  2. name = "cdk-lnd"
  3. version = "0.4.0"
  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. description = "CDK ln backend for lnd"
  10. [dependencies]
  11. async-trait = "0.1"
  12. anyhow = "1"
  13. cdk = { path = "../cdk", version= "0.4.0", default-features = false, features = ["mint"] }
  14. fedimint-tonic-lnd = "0.2.0"
  15. futures = { version = "0.3.28", default-features = false }
  16. tokio = { version = "1", default-features = false }
  17. tokio-util = { version = "0.7.11", default-features = false }
  18. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  19. thiserror = "1"