Cargo.toml 912 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. [profile]
  30. [profile.ci]
  31. inherits = "dev"
  32. incremental = false
  33. debug = "line-tables-only"
  34. lto = "off"