Cargo.toml 610 B

12345678910111213141516171819
  1. [package]
  2. name = "cdk-lnd"
  3. version = "0.3.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", 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. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  18. thiserror = "1"