Cargo.toml 867 B

1234567891011121314151617181920212223242526272829303132
  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 = "../../../../sdks/pythnet_sdk/rust" }
  18. solana-program = { workspace = true }
  19. byteorder = "1.4.3"
  20. pyth-solana-receiver-sdk = { path = "../../pyth_solana_receiver_sdk"}
  21. [dev-dependencies]
  22. pyth-solana-receiver = { path = "../pyth-solana-receiver", features = ["no-entrypoint"]}
  23. solana-sdk = { workspace = true }
  24. tokio = "1.14.1"
  25. program-simulator = { path = "../../program_simulator" }
  26. wormhole-vaas-serde = { workspace = true }
  27. serde_wormhole = { workspace = true }
  28. common-test-utils = { path = "../../common_test_utils" }