-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (44 loc) · 1.12 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
[workspace]
members = [
"snapshot-parser",
"snapshot-parser-types",
"snapshot-parser-validator-cli",
"snapshot-parser-tokens-cli",
]
resolver = "1"
[profile.release]
codegen-units = 1
lto = "fat"
overflow-checks = true
[profile.release.build-override]
codegen-units = 1
incremental = false
opt-level = 3
[workspace.dependencies]
anchor-lang = "0.30.1"
anyhow = "1.0.82"
async-trait = "0.1.83"
base64 = "0.22.1"
bs58 = "0.5.1"
bincode = "1.3.3"
clap = { version = "4.1.11", features = ["derive", "env"] }
env_logger = "0.11.5"
indicatif = { version = "0.17.8"}
log = "0.4.14"
mpl-token-metadata = "4.1.2"
spl-token = { version = "6.0.0" }
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = "1.0.197"
serde_json = "1.0.114"
serde_yaml = "0.8"
shellexpand = "3.1.0"
snapshot-parser = { path = "./snapshot-parser" }
snapshot-parser-types = { path = "./snapshot-parser-types" }
solana-cost-model = "=2.0.14"
solana-client = "=2.0.14"
solana-ledger = "=2.0.14"
solana-program = "=2.0.14"
solana-runtime = "=2.0.14"
solana-sdk = "=2.0.14"
solana-accounts-db = "=2.0.14"
tokio = { version = "1", features = ["full"] }