Cargo.toml 905 B

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