Cargo.toml 934 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [workspace]
  2. members = [
  3. "crates/cashu",
  4. "crates/cashu-sdk",
  5. "bindings/uniffi-bindgen",
  6. "bindings/cashu-ffi",
  7. "bindings/cashu-sdk-ffi",
  8. "bindings/cashu-js",
  9. "bindings/cashu-sdk-js"
  10. ]
  11. resolver = "2"
  12. [workspace.package]
  13. license = "BSD-3-Clause"
  14. homepage = "https://github.com/thesimplekid/cashu-crab"
  15. repository = "https://github.com/thesimplekid/cashu-crab.git"
  16. rust-version = "1.70.0" # MSRV
  17. [workspace.metadata]
  18. authors = ["thesimplekid"]
  19. edition = "2021"
  20. description = "cashu-crab"
  21. readme = "README.md"
  22. repository = "https://github.com/thesimplekid/cashu-rs-mint"
  23. license-file = "LICENSE"
  24. keywords = ["bitcoin", "e-cash", "cashu"]
  25. [workspace.dependencies]
  26. serde = { version = "1.0.160", features = ["derive"]}
  27. serde_json = "1.0.96"
  28. url = "2.3.1"
  29. tokio = { version = "1.32", default-features = false }
  30. tracing = { version = "0.1", default-features = false }
  31. tracing-subscriber = "0.3"
  32. uniffi = "0.24"