Cargo.toml 963 B

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