Cargo.toml 887 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "cdk-fake-wallet"
  3. version = "0.6.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.32.2", default-features = false }
  14. cdk = { path = "../cdk", version = "0.6.0", default-features = false, features = ["mint"] }
  15. futures = { version = "0.3.28", default-features = false }
  16. tokio = { version = "1", default-features = false }
  17. tokio-util = { version = "0.7.11", default-features = false }
  18. tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
  19. thiserror = "1"
  20. serde = "1"
  21. serde_json = "1"
  22. lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
  23. tokio-stream = "0.1.15"
  24. rand = "0.8.5"