Cargo.toml 756 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "pyth-lazer-solana-contract"
  3. version = "0.3.0"
  4. edition = "2021"
  5. description = "Pyth Lazer Solana contract and SDK."
  6. license = "Apache-2.0"
  7. repository = "https://github.com/pyth-network/pyth-crosschain"
  8. [lib]
  9. crate-type = ["cdylib", "lib"]
  10. name = "pyth_lazer_solana_contract"
  11. [features]
  12. default = []
  13. cpi = ["no-entrypoint"]
  14. no-entrypoint = []
  15. no-idl = []
  16. no-log-ix-name = []
  17. idl-build = ["anchor-lang/idl-build"]
  18. [dependencies]
  19. pyth-lazer-protocol = { path = "../../../../sdk/rust/protocol", version = "0.7.0" }
  20. anchor-lang = "0.30.1"
  21. bytemuck = "1.20.0"
  22. byteorder = "1.5.0"
  23. thiserror = "2.0.3"
  24. [dev-dependencies]
  25. hex = "0.4.3"
  26. solana-program-test = "1.18.26"
  27. solana-sdk = "1.18.26"
  28. tokio = { version = "1.40.0", features = ["full"] }