Cargo.toml 749 B

123456789101112131415161718192021
  1. [package]
  2. name = "cdk-cln"
  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. rust-version = "1.63.0" # MSRV
  10. description = "CDK ln backend for cln"
  11. [dependencies]
  12. async-trait = "0.1"
  13. bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30
  14. cdk = { path = "../cdk", default-features = false, features = ["mint"] }
  15. cln-rpc = "0.1.9"
  16. futures = { version = "0.3.28", default-features = false }
  17. tokio = { version = "1", default-features = false }
  18. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  19. thiserror = "1"
  20. uuid = { version = "1", features = ["v4"] }