Cargo.toml 867 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "cashu"
  3. version = "0.4.1-ALPHA"
  4. edition = "2021"
  5. authors = ["thesimplekid"]
  6. readme = "README.md"
  7. homepage.workspace = true
  8. repository.workspace = true
  9. license.workspace = true
  10. rust-version.workspace = true # MSRV
  11. description = "Cashu rust wallet and mint library"
  12. [features]
  13. default = ["mint", "wallet"]
  14. mint = []
  15. wallet = []
  16. [dependencies]
  17. base64 = "0.21.0"
  18. bitcoin = { version = "0.30.0", features=["serde", "rand"] }
  19. hex = "0.4.3"
  20. k256 = { version = "0.13.1", features=["arithmetic", "serde", "schnorr"] }
  21. lightning-invoice = { version = "0.24.0", features=["serde"] }
  22. rand = "0.8.5"
  23. getrandom = { version = "0.2", features = ["js"] }
  24. serde = { workspace = true }
  25. serde_json = { workspace = true }
  26. url = { workspace = true }
  27. regex = "1.8.4"
  28. itertools = "0.11.0"
  29. [dev-dependencies]
  30. # tokio = {version = "1.27.0", features = ["rt", "macros"] }