Cargo.toml 975 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "pyth-push-oracle"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "pyth_push_oracle"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. no-log-ix-name = []
  13. cpi = ["no-entrypoint"]
  14. test-bpf = []
  15. [dependencies]
  16. anchor-lang = { workspace = true }
  17. pythnet-sdk = { path = "../../../../pythnet/pythnet_sdk" }
  18. solana-program = { workspace = true }
  19. byteorder = "1.4.3"
  20. pyth-solana-receiver-sdk = "0.6.1" # This is the highest version of pyth-solana-receiver-sdk that is compatible with the anchor-lang version used in the contract (0.28.0)
  21. [dev-dependencies]
  22. pyth-solana-receiver = { path = "../pyth-solana-receiver", features = [
  23. "no-entrypoint",
  24. ] }
  25. solana-sdk = { workspace = true }
  26. tokio = "1.14.1"
  27. program-simulator = { path = "../../program_simulator" }
  28. wormhole-vaas-serde = { workspace = true }
  29. serde_wormhole = { workspace = true }
  30. common-test-utils = { path = "../../common_test_utils" }