Cargo.toml 863 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "cdk-fake-wallet"
  3. version = "0.3.0"
  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.63.0" # MSRV
  10. description = "CDK fake ln backend"
  11. [dependencies]
  12. async-trait = "0.1.74"
  13. bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30
  14. cdk = { path = "../cdk", default-features = false, features = ["mint"] }
  15. futures = { version = "0.3.28", default-features = false }
  16. tokio = { version = "1", default-features = false }
  17. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  18. thiserror = "1"
  19. uuid = { version = "1", features = ["v4"] }
  20. lightning-invoice = { version = "0.31", features = ["serde"] }
  21. lightning = "0.0.123"
  22. tokio-stream = "0.1.15"
  23. rand = "0.8.5"