Cargo.toml 888 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "cashu-crab"
  3. version = "0.1.0"
  4. edition = "2021"
  5. authors = ["thesimplekid"]
  6. license = "BSD-3-Clause"
  7. readme = "README.md"
  8. repository = "https://github.com/thesimplekid/cashu-crab"
  9. description = "Cashu rust wallet library"
  10. exclude = ["integration_test"]
  11. [workspace]
  12. members = ["integration_test"]
  13. [dependencies]
  14. base64 = "0.21.0"
  15. bitcoin = { version = "0.30.0", features=["serde"] }
  16. bitcoin_hashes = "0.12.0"
  17. hex = "0.4.3"
  18. k256 = { version = "0.13.1", features=["arithmetic"] }
  19. lightning-invoice = { version = "0.22.0", features=["serde"] }
  20. minreq = { version = "2.7.0", features = ["json-using-serde", "https"] }
  21. rand = "0.8.5"
  22. getrandom = { version = "0.2", features = ["js"] }
  23. serde = { version = "1.0.160", features = ["derive"]}
  24. serde_json = "1.0.96"
  25. thiserror = "1.0.40"
  26. url = "2.3.1"
  27. [dev-dependencies]
  28. tokio = {version = "1.27.0", features = ["rt", "macros"] }