Cargo.toml 852 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "cdk-cln"
  3. version = "0.7.1"
  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.32.2", default-features = false }
  14. cdk = { path = "../cdk", version = "0.7.1", default-features = false, features = [
  15. "mint",
  16. ] }
  17. cln-rpc = "0.3.0"
  18. futures = { version = "0.3.28", default-features = false }
  19. tokio = { version = "1", default-features = false }
  20. tokio-util = { version = "0.7.11", default-features = false }
  21. tracing = { version = "0.1", default-features = false, features = [
  22. "attributes",
  23. "log",
  24. ] }
  25. thiserror = "1"
  26. uuid = { version = "=1.12.1", features = ["v4"] }