Cargo.toml 559 B

12345678910111213141516171819202122
  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.75.0" # MSRV
  10. description = "CDK ln backend for cln"
  11. [dependencies]
  12. async-trait.workspace = true
  13. bitcoin.workspace = true
  14. cdk = { workspace = true, features = ["mint"] }
  15. cln-rpc = "0.3.0"
  16. futures.workspace = true
  17. tokio.workspace = true
  18. tokio-util.workspace = true
  19. tracing.workspace = true
  20. thiserror.workspace = true
  21. uuid.workspace = true