Cargo.toml 965 B

123456789101112131415161718192021222324252627282930313233343536373839
  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", "all-nuts"]
  14. mint = []
  15. wallet = []
  16. all-nuts = ["nut07", "nut08"]
  17. nut07 = []
  18. nut08 = []
  19. [dependencies]
  20. base64 = "0.21.0"
  21. bitcoin = { version = "0.30.0", features=["serde", "rand"] }
  22. hex = "0.4.3"
  23. k256 = { version = "0.13.1", features=["arithmetic", "serde", "schnorr"] }
  24. lightning-invoice = { version = "0.25.0", features=["serde"] }
  25. rand = "0.8.5"
  26. getrandom = { version = "0.2", features = ["js"] }
  27. serde = { workspace = true }
  28. serde_json = { workspace = true }
  29. url = { workspace = true }
  30. regex = "1.8.4"
  31. itertools = "0.11.0"
  32. thiserror = { workspace = true }
  33. [dev-dependencies]
  34. # tokio = {version = "1.27.0", features = ["rt", "macros"] }