30 lines
933 B
TOML
30 lines
933 B
TOML
[package]
|
|
name = "pyth2wormhole"
|
|
version = "0.1.0"
|
|
description = "Pyth to Wormhole solana on-chain integration"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
name = "pyth2wormhole"
|
|
|
|
[features]
|
|
default = ["wormhole-bridge-solana/no-entrypoint"]
|
|
client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
|
|
trace = ["solitaire/trace", "wormhole-bridge-solana/trace"]
|
|
no-entrypoint = []
|
|
|
|
[dependencies]
|
|
wormhole-bridge-solana = {path = "../../bridge/program"}
|
|
solitaire = { path = "../../solitaire/program" }
|
|
solitaire-client = { path = "../../solitaire/client", optional = true }
|
|
rocksalt = { path = "../../solitaire/rocksalt" }
|
|
solana-program = "=1.10.13"
|
|
borsh = "=0.9.3"
|
|
pyth-client = "0.2.2"
|
|
p2w-sdk = { path = "../../../third_party/pyth/p2w-sdk/rust", features = ["solana"] }
|
|
serde = { version = "1", optional = true}
|
|
serde_derive = { version = "1", optional = true}
|
|
serde_json = { version = "1", optional = true}
|
|
|