23 lines
873 B
TOML
23 lines
873 B
TOML
[package]
|
|
name = "pyth-solana-receiver-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
base64 = "0.13.0"
|
|
shellexpand = "2.1.2"
|
|
solana-sdk = { workspace = true }
|
|
solana-client = { workspace = true }
|
|
anchor-client = { workspace = true }
|
|
clap = {version ="3.2.22", features = ["derive"]}
|
|
pyth-solana-receiver = {path = "../programs/pyth-solana-receiver" }
|
|
wormhole-solana = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana"} # Used for initializing the wormhole receiver
|
|
pythnet-sdk = { path = "../../../pythnet/pythnet_sdk", version = "2.0.0" }
|
|
wormhole-vaas-serde = { workspace = true }
|
|
serde_wormhole = { workspace = true }
|
|
hex = "0.4.3"
|
|
borsh = "0.9.3" # Old version of borsh needed for wormhole-solana
|
|
wormhole-core-bridge-solana = {workspace = true}
|
|
pyth-solana-receiver-sdk = {path = "../pyth_solana_receiver_sdk"}
|