Cargo.toml 636 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "cdk-fake-wallet"
  3. version = { workspace = true }
  4. edition = "2021"
  5. authors = ["CDK Developers"]
  6. homepage.workspace = true
  7. repository.workspace = true
  8. rust-version.workspace = true # MSRV
  9. license.workspace = true
  10. description = "CDK ln backend for cln"
  11. [dependencies]
  12. async-trait.workspace = true
  13. bitcoin.workspace = true
  14. cdk = { workspace = true, default-features = false, features = ["mint"] }
  15. futures.workspace = true
  16. tokio.workspace = true
  17. tracing.workspace = true
  18. thiserror.workspace = true
  19. uuid.workspace = true
  20. lightning-invoice.workspace = true
  21. lightning = "0.0.123"
  22. tokio-stream = "0.1.15"
  23. rand.workspace = true