Cargo.toml 811 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "pyth_sdk"
  3. description = "A cargo-generate template for Rust + Sway integration testing."
  4. version = "0.1.0"
  5. edition = "2021"
  6. authors = ["Fuel Labs <contact@fuel.sh>"]
  7. license = "Apache-2.0"
  8. [dependencies]
  9. rand = "0.8.5"
  10. base64 = "0.22"
  11. fuels = { version = "0.66.4", features = ["fuel-core-lib"] }
  12. tokio = { version = "1.12", features = ["rt", "macros"] }
  13. hex = "0.4.3"
  14. reqwest = "0.11.27"
  15. serde_json = "1.0.114"
  16. serde = "1.0.197"
  17. dotenv = "0.15.0"
  18. libsecp256k1 = "0.7.1"
  19. pythnet-sdk = { path = "../../../pythnet/pythnet_sdk", features = ["test-utils"] }
  20. sha3 = "0.10.8"
  21. serde_wormhole = { version ="0.1.0" }
  22. wormhole-vaas-serde = { version = "0.1.0" }
  23. [[bin]]
  24. name = "deploy_pyth"
  25. path = "scripts/deploy_pyth.rs"
  26. [[test]]
  27. harness = true
  28. name = "integration_tests"
  29. path = "tests/harness.rs"