-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
36 lines (32 loc) · 928 Bytes
/
Cargo.toml
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
35
36
[package]
name = "solana-test-framework"
version = "1.18.0"
edition = "2021"
authors = ["isabel"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
anchor = ["anchor-lang"]
pyth = ["pyth-sdk-solana"]
[dependencies]
solana-program-test = "1.18"
solana-sdk = "1.18"
solana-program ="1.18"
solana-banks-client = "1.18"
solana-program-runtime = "1.18"
solana-client = "1.18"
spl-token = "4.0.0"
spl-associated-token-account = "1.1.2"
anchor-lang = { version = "0.30.0", optional = true }
async-trait = "0.1.52"
futures = "0.3"
borsh = "0.9"
bincode = "1.3.3"
log = "0.4"
chrono-humanize = "0.2"
pyth-sdk-solana = { version = "0.10.1", optional = true }
serde = { version = "1.0.152"}
serde_json = { version = "1.0.91", optional = true }
thiserror = "1.0.38"
[dev-dependencies]
program-for-tests = {path="tests/artifacts/program_for_tests"}
solana-test-validator = "1.18"