Cargo.toml 750 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "cdk-fake-wallet"
  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 fake ln backend"
  11. readme = "README.md"
  12. [dependencies]
  13. async-trait.workspace = true
  14. bitcoin.workspace = true
  15. cdk-common = { workspace = true, features = ["mint"] }
  16. futures.workspace = true
  17. tokio.workspace = true
  18. tokio-util.workspace = true
  19. tracing.workspace = true
  20. thiserror.workspace = true
  21. serde.workspace = true
  22. serde_json.workspace = true
  23. lightning-invoice.workspace = true
  24. lightning.workspace = true
  25. tokio-stream.workspace = true
  26. reqwest.workspace = true