Cargo.toml 1002 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "pyth-wormhole-attester"
  3. version = "2.0.1"
  4. description = "Pyth-over-Wormhole Solana contract"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "pyth_wormhole_attester"
  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.14.8" }
  16. solitaire = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.14.8"}
  17. rocksalt = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.14.8"}
  18. solana-program = "=1.10.31"
  19. borsh = "=0.9.3"
  20. pyth-client = "0.2.2"
  21. pyth-wormhole-attester-sdk = { path = "../sdk/rust", features = ["solana"] }
  22. serde = { version = "1", optional = true}
  23. serde_derive = { version = "1", optional = true}
  24. serde_json = { version = "1", optional = true}
  25. pyth-sdk-solana = { version = "0.5.0" }