Cargo.toml 800 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "pyth2wormhole"
  3. version = "0.1.0"
  4. description = "Pyth to Wormhole solana on-chain integration"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "pyth2wormhole"
  9. [features]
  10. default = ["bridge/no-entrypoint"]
  11. client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
  12. trace = ["solitaire/trace", "bridge/trace"]
  13. no-entrypoint = []
  14. [dependencies]
  15. bridge = {path = "../../bridge/program"}
  16. solitaire = { path = "../../solitaire/program" }
  17. solitaire-client = { path = "../../solitaire/client", optional = true }
  18. rocksalt = { path = "../../solitaire/rocksalt" }
  19. solana-program = "=1.7.0"
  20. borsh = "0.8.1"
  21. # NOTE: We're following bleeding edge to encounter format changes more easily
  22. pyth-client = {git = "https://github.com/pyth-network/pyth-client-rs", branch = "v2"}