Cargo.toml 880 B

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