-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
76 lines (73 loc) · 2.41 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
members = [
"api",
"common-rs",
"merkle-tree",
"programs/*",
"validator-bonds-cli",
"settlement-pipelines",
"bid-distribution",
"protected-event-distribution",
"trident-tests/fuzz_tests"
]
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-client = { version = "0.29.0", features = ["async"] }
anchor-lang = "0.29.0"
anchor-spl = { version = "0.29.0", default-features = false }
assert_matches = "1.4.0"
anyhow = "1.0.82"
arbitrary = "1.3.0"
bincode = "1.3.3"
chrono = "0.4"
clap = { version = "4.1.11", features = ["derive", "env"] }
default-env = "0.1.1"
env_logger = "0.10.0"
fast-math = "0.1.1"
futures = "0.3.29"
gcp-bigquery-client = "0.17.1"
hex = "0.4.3"
honggfuzz = "0.5.56"
log = "0.4.14"
merkle-tree = { path = "./merkle-tree" }
regex = "1.10.4"
rust_decimal = { version = "1.26", features = ["db-postgres"] }
serde = "1.0.197"
serde_json = "1.0.114"
serde_yaml = "0.8"
protected-event-distribution = { path = "protected-event-distribution" }
snapshot-parser-types = { git = "https://github.com/marinade-finance/solana-snapshot-parser", branch = "master" }
shellexpand = "3.1.0"
solana-account-decoder = "1.17.22"
solana-accounts-db = "=1.17.22"
solana-clap-utils = "1.17.22"
solana-cli-config = "1.17.22"
solana-client = "=1.17.22"
solana-ledger = "=1.17.22"
solana-logger = "1.17.22"
solana-program = "=1.17.22"
solana-runtime = "=1.17.22"
solana-sdk = "=1.17.22"
solana-security-txt = "1.1.1"
solana-transaction-executor = { git = "https://github.com/marinade-finance/solana-transaction-executor", branch = "master" }
solana-transaction-builder = { git = "https://github.com/marinade-finance/solana-transaction-builder", branch = "main" }
solana-transaction-builder-executor = { git = "https://github.com/marinade-finance/solana-transaction-builder", branch = "main" }
structopt = "0.3.21"
tokio = { version = "1", features = ["full"] }
tokio-postgres = { version = "0.7.7", features = ["with-chrono-0_4"] }
tracing = "0.1.37"
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3" }
trident-client = "0.7.0"
utoipa = { version = "3.2.1", features = ["chrono", "decimal"] }
validator-bonds = { path = "./programs/validator-bonds" }
validator-bonds-common = { path = "./common-rs" }
warp = { version = "0.3", features = ["compression-gzip"] }