Cargo.toml 911 B

123456789101112131415161718192021222324252627282930313233
  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", "rand"] }
  16. bitcoin_hashes = "0.12.0"
  17. hex = "0.4.3"
  18. k256 = { version = "0.13.1", features=["arithmetic"] }
  19. lightning-invoice = { version = "0.23.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. url = "2.3.1"
  26. regex = "1.8.4"
  27. log = "0.4.19"
  28. [dev-dependencies]
  29. tokio = {version = "1.27.0", features = ["rt", "macros"] }