| 12345678910111213141516171819202122232425 |
- [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 = ["bridge/no-entrypoint"]
- client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
- trace = ["solitaire/trace", "bridge/trace"]
- no-entrypoint = []
- [dependencies]
- bridge = {path = "../../bridge/program"}
- solitaire = { path = "../../solitaire/program" }
- solitaire-client = { path = "../../solitaire/client", optional = true }
- rocksalt = { path = "../../solitaire/rocksalt" }
- solana-program = "=1.7.0"
- borsh = "0.8.1"
- # NOTE: We're following bleeding edge to encounter format changes more easily
- pyth-client = {git = "https://github.com/pyth-network/pyth-client-rs", branch = "v2"}
|