-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 824 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "pyth-lazer-solana-contract"
version = "0.7.3"
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.19.0" }
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"] }