| 1234567891011121314151617181920212223242526272829303132333435363738 |
- [package]
- name = "pyth2wormhole-client"
- version = "0.1.0"
- edition = "2018"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [lib]
- name = "pyth2wormhole_client"
- [features]
- default = ["pyth2wormhole/client", "wormhole-bridge-solana/client", "pyth2wormhole/trace"]
- [dependencies]
- borsh = "=0.9.3"
- clap = {version = "3.1.18", features = ["derive"]}
- env_logger = "0.8.4"
- log = "0.4.14"
- wormhole-bridge-solana = {git = "https://github.com/certusone/wormhole", tag = "v2.8.9"}
- pyth2wormhole = {path = "../program"}
- p2w-sdk = { path = "../../../third_party/pyth/p2w-sdk/rust", features=["solana"] }
- pyth-sdk-solana = "0.4.0"
- serde = "1"
- serde_yaml = "0.8"
- shellexpand = "2.1.0"
- solana-client = "=1.10.31"
- solana-program = "=1.10.31"
- solana-sdk = "=1.10.31"
- solana-transaction-status = "=1.10.31"
- # solitaire-client = {path = "../../solitaire/client"}
- solitaire = {git = "https://github.com/certusone/wormhole", tag = "v2.8.9"}
- tokio = {version = "1", features = ["sync", "rt", "time"]}
- futures = "0.3.21"
- [dev-dependencies]
- pyth-client = "0.5.0"
- solana-program-test = "=1.10.31"
- solana-sdk = "=1.10.31"
|