Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "pyth-wormhole-attester-client"
  3. version = "3.0.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [lib]
  7. name = "pyth_wormhole_attester_client"
  8. [[bin]]
  9. name = "pwhac"
  10. path = "src/main.rs"
  11. [features]
  12. default = ["pyth-wormhole-attester/client", "wormhole-bridge-solana/client", "pyth-wormhole-attester/trace"]
  13. [dependencies]
  14. borsh = "=0.9.3"
  15. clap = {version = "3.1.18", features = ["derive"]}
  16. env_logger = "0.8.4"
  17. log = "0.4.14"
  18. wormhole-bridge-solana = {git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.8.9"}
  19. pyth-wormhole-attester = {path = "../program"}
  20. pyth-wormhole-attester-sdk = { path = "../sdk/rust", features=["solana"] }
  21. pyth-sdk-solana = "0.6.1"
  22. serde = "1"
  23. serde_yaml = "0.8"
  24. shellexpand = "2.1.0"
  25. solana-client = "=1.10.31"
  26. solana-program = "=1.10.31"
  27. solana-sdk = "=1.10.31"
  28. solana-transaction-status = "=1.10.31"
  29. solitaire = {git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.8.9"}
  30. tokio = {version = "1", features = ["sync", "rt-multi-thread", "time"]}
  31. futures = "0.3.21"
  32. sha3 = "0.10.6"
  33. generic-array = "0.14.6"
  34. lazy_static = "1.4.0"
  35. prometheus = "0.13.3"
  36. warp = "0.3.3"
  37. http = "0.2.8"
  38. [dev-dependencies]
  39. solana-program-test = "=1.10.31"
  40. solana-sdk = "=1.10.31"