forked from jito-foundation/distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (73 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
80 lines (73 loc) · 1.91 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[workspace]
members = [
"api",
"cli",
"merkle-tree",
"programs/*",
"verify"
]
resolver = "2"
[profile.release]
overflow-checks = true
lto = "fat"
codegen-units = 1
[profile.release.build-override]
opt-level = 3
incremental = false
codegen-units = 1
[workspace.package]
version = "0.0.1"
authors = ["Jito Labs <team@jito.wtf>"]
repository = ""
homepage = "jito.wtf"
license = ""
edition = "2021"
publish = false
[workspace.dependencies]
anchor-lang = "0.31.1"
anchor-spl = "0.31.1"
axum = "0.6.2"
bytemuck = "1.14.0"
clap = { version = "3.2.25", features = ["derive", "env"] }
csv = "1.3.0"
fast-math = "0.1"
hex = "0.4.3"
http = { version = "0.2.1" }
jito-merkle-verify = { path = "verify" }
rand = "0.8.5"
serde = "1.0.137"
serde_derive = "1.0.171"
serde_json = "1.0.102"
serde_yaml = "0.9.25"
solana-program = "2.2"
solana-rpc-client = "2.2"
solana-rpc-client-api = "2.2"
solana-security-txt = "1.1.1"
solana-sdk = "2.2"
indexmap = "2.1.0"
spl-associated-token-account = "7"
thiserror = "1.0.50"
tokio = { version = "1.48", features = [
"rt-multi-thread",
"rt",
"macros",
"signal",
] }
tower = { version = "0.4.1", features = [
"limit",
"buffer",
"timeout",
"load-shed",
] }
tower-http = { version = "0.4.0", features = ["trace"] }
tracing = { version = "0.1.37" }
tracing-core = "0.1.32"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
light-client = { version = "0.17.2", default-features = false, features = ["v2"] }
light-hasher = { version = "5.0.0", features = ["solana"] }
light-sdk = { version = "0.17.1", default-features = false, features = ["anchor", "v2", "keccak"] }
light-sdk-types = { version = "0.17.1", default-features = false, features = ["anchor", "v2", "keccak"] }
light-program-test = { version = "0.17.1", default-features = false, features = ["v2"] }
light-compressed-account = "0.7"
base64 = "0.21.0"
jito-merkle-tree = { path = "./merkle-tree" }