Cargo.toml 824 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "pyth-lazer-solana-contract"
  3. version = "0.7.1"
  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.21.0" }
  20. anchor-lang = "0.31.1"
  21. bytemuck = { version = "1.20.0", features = ["derive"] }
  22. byteorder = "1.5.0"
  23. thiserror = "2.0.3"
  24. [dev-dependencies]
  25. hex = "0.4.3"
  26. solana-program-test = "2.3.6"
  27. solana-sdk = "2.3.1"
  28. solana-system-interface = "1.0.0"
  29. tokio = { version = "1.40.0", features = ["full"] }