Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "cashu-crab"
  3. version = "0.3.0"
  4. edition = "2021"
  5. authors = ["thesimplekid"]
  6. license = "BSD-3-Clause"
  7. readme = "README.md"
  8. documentation = "https://docs.rs/crate/cashu-crab"
  9. repository = "https://github.com/thesimplekid/cashu-crab"
  10. description = "Cashu rust wallet and mint library"
  11. # exclude = ["integration_test"]
  12. #[workspace]
  13. #members = ["integration_test"]
  14. [features]
  15. default = ["mint", "wallet"]
  16. mint = []
  17. wallet = []
  18. [dependencies]
  19. base64 = "0.21.0"
  20. bitcoin = { version = "0.30.0", features=["serde", "rand", "no-std"] }
  21. bitcoin_hashes = "0.12.0"
  22. hex = "0.4.3"
  23. k256 = { version = "0.13.1", features=["arithmetic"] }
  24. lightning-invoice = { version = "0.23.0", features=["serde"] }
  25. minreq = { version = "2.7.0", features = ["json-using-serde", "https"] }
  26. rand = "0.8.5"
  27. getrandom = { version = "0.2", features = ["js"] }
  28. serde = { version = "1.0.160", features = ["derive"]}
  29. serde_json = "1.0.96"
  30. url = "2.3.1"
  31. regex = "1.8.4"
  32. log = "0.4.19"
  33. [dev-dependencies]
  34. tokio = {version = "1.27.0", features = ["rt", "macros"] }