Cargo.toml 892 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [workspace]
  2. members = [
  3. "serde_wormhole",
  4. "supported-chains",
  5. "vaas-serde",
  6. ]
  7. resolver = "2"
  8. [workspace.package]
  9. version = "0.1.0"
  10. edition = "2021"
  11. authors = ["Wormhole Contributors"]
  12. license = "Apache-2.0"
  13. homepage = "https://github.com/wormhole-foundation/wormhole"
  14. repository = "https://github.com/wormhole-foundation/wormhole"
  15. [workspace.metadata.docs.rs]
  16. all-features = true
  17. rustdoc-args = ["--cfg", "docsrs"]
  18. [workspace.dependencies.wormhole-supported-chains]
  19. version = "0.1.0"
  20. path = "supported-chains"
  21. [workspace.dependencies.serde_wormhole]
  22. version = "0.1.0"
  23. path = "serde_wormhole"
  24. [workspace.dependencies]
  25. anyhow = "1"
  26. thiserror = "1"
  27. bstr = { version = "1", features = ["serde"] }
  28. schemars = "0.8.8"
  29. serde = { version = "1", default-features = false }
  30. serde_bytes = "0.11.5"
  31. serde_json = "1"
  32. serde_repr = "0.1.7"
  33. sha3 = "0.10.4"
  34. base64 = "0.13"
  35. itoa = "1.0.1"