| 12345678910111213141516171819202122232425262728 |
- [package]
- name = "common-test-utils"
- version = "0.1.0"
- edition = "2021"
- [lib]
- crate-type = ["lib"]
- name = "common_test_utils"
- [dependencies]
- pyth-sdk = "0.8.0"
- pyth-sdk-solana = "0.8.0"
- solana-program-test = { workspace = true }
- solana-sdk = { workspace = true }
- tokio = "1.14.1"
- bincode = "1.3.3"
- libsecp256k1 = "0.7.1"
- rand = "0.8.5"
- lazy_static = "1.4.0"
- program-simulator = { path = "../program_simulator" }
- wormhole-vaas-serde = { workspace = true }
- serde_wormhole = { workspace = true }
- pythnet-sdk = { path = "../../../pythnet/pythnet_sdk", features = ["test-utils"] }
- anchor-lang = { workspace = true }
- solana-program = { workspace = true }
- pyth-solana-receiver = { path = "../programs/pyth-solana-receiver" }
- wormhole-core-bridge-solana = {workspace = true}
- pyth-solana-receiver-sdk = "0.6.1" # This is the highest version of pyth-solana-receiver-sdk that is compatible with the anchor-lang version used in the contract (0.28.0)
|