| 12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "pyth-lazer-solana-contract"
- version = "0.5.0"
- edition = "2021"
- description = "Pyth Lazer Solana contract and SDK."
- license = "Apache-2.0"
- repository = "https://github.com/pyth-network/pyth-crosschain"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "pyth_lazer_solana_contract"
- [features]
- default = []
- cpi = ["no-entrypoint"]
- no-entrypoint = []
- no-idl = []
- no-log-ix-name = []
- idl-build = ["anchor-lang/idl-build"]
- [dependencies]
- pyth-lazer-protocol = { path = "../../../../sdk/rust/protocol", version = "0.10.1" }
- anchor-lang = "0.31.1"
- bytemuck = { version = "1.20.0", features = ["derive"] }
- byteorder = "1.5.0"
- thiserror = "2.0.3"
- [dev-dependencies]
- hex = "0.4.3"
- solana-program-test = "2.3.6"
- solana-sdk = "2.3.1"
- solana-system-interface = "1.0.0"
- tokio = { version = "1.40.0", features = ["full"] }
|