-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
60 lines (56 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
members = [
"api",
"cli",
"merkle-tree",
"programs/*",
"verify"
]
resolver = "2"
[profile.release]
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.28.0"
anchor-spl = "0.28.0"
anchor-client = "0.28.0"
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 = { version = "=1.16.16" }
solana-rpc-client = { version = "=1.16.16" }
solana-rpc-client-api = { version = "=1.16.16" }
solana-security-txt = { version = "1.1.1" }
solana-sdk = { version = "=1.16.16" }
indexmap = "2.1.0"
spl-associated-token-account = "2.2.0"
static_assertions = "1.1"
thiserror = "1.0.50"
tokio = { version = "1.29.1", 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", "cors"] }
tracing = { version = "0.1.37" }
tracing-core = "0.1.32"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }