29 lines
836 B
TOML
29 lines
836 B
TOML
[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 = { path = "../pyth_solana_receiver_sdk"}
|