Cargo.toml 959 B

123456789101112131415161718192021222324252627
  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 = ["wormhole-bridge-solana/no-entrypoint"]
  11. client = ["solitaire/client", "no-entrypoint"]
  12. trace = ["solitaire/trace", "wormhole-bridge-solana/trace"]
  13. no-entrypoint = []
  14. [dependencies]
  15. wormhole-bridge-solana = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.8.9" }
  16. solitaire = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.8.9"}
  17. rocksalt = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.8.9"}
  18. solana-program = "=1.10.31"
  19. borsh = "=0.9.3"
  20. pyth-client = "0.2.2"
  21. p2w-sdk = { path = "../../../third_party/pyth/p2w-sdk/rust", features = ["solana"] }
  22. serde = { version = "1", optional = true}
  23. serde_derive = { version = "1", optional = true}
  24. serde_json = { version = "1", optional = true}