Cargo.toml 640 B

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