Cargo.toml 617 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "cdk-cln"
  3. version.workspace = true
  4. edition.workspace = true
  5. authors = ["CDK Developers"]
  6. license.workspace = true
  7. homepage = "https://github.com/cashubtc/cdk"
  8. repository = "https://github.com/cashubtc/cdk.git"
  9. rust-version.workspace = true # 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
  22. serde_json.workspace = true