Cargo.toml 836 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "common-test-utils"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. crate-type = ["lib"]
  7. name = "common_test_utils"
  8. [dependencies]
  9. pyth-sdk = "0.8.0"
  10. pyth-sdk-solana = "0.8.0"
  11. solana-program-test = { workspace = true }
  12. solana-sdk = { workspace = true }
  13. tokio = "1.14.1"
  14. bincode = "1.3.3"
  15. libsecp256k1 = "0.7.1"
  16. rand = "0.8.5"
  17. lazy_static = "1.4.0"
  18. program-simulator = { path = "../program_simulator" }
  19. wormhole-vaas-serde = { workspace = true }
  20. serde_wormhole = { workspace = true }
  21. pythnet-sdk = { path = "../../../pythnet/pythnet_sdk", features = ["test-utils"] }
  22. anchor-lang = { workspace = true }
  23. solana-program = { workspace = true }
  24. pyth-solana-receiver = { path = "../programs/pyth-solana-receiver" }
  25. wormhole-core-bridge-solana = {workspace = true}
  26. pyth-solana-receiver-sdk = { path = "../pyth_solana_receiver_sdk"}