-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
107 lines (100 loc) · 3.73 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[package]
name = "yellowstone-jet"
version = "10.4.0"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone Jet"
license = "Apache-2.0"
resolver = "2"
publish = false
[dependencies]
anyhow = "1.0.69"
async-trait = "0.1.83"
base64 = "0.22.0"
bincode = "1.3.3"
bs58 = "0.5.1"
clap = { version = "4.5.2", features = ["cargo", "derive", "env"] }
derivative = "2.2.0"
etcd-client = "0.14.0"
futures = "0.3.30"
hostname = "0.4.0"
humantime-serde = "1.1.1"
hyper = "1.5.0"
jsonrpsee = { version = "0.24.7", features = [
"http-client",
"macros",
"server",
] }
lazy_static = "1.4.0"
lru = "0.12.3"
maplit = "1.0.2"
pin-project = "1.1.5"
prometheus = "0.13.3"
prost = "0.13.3"
prost-types = "0.13.3"
quinn = "0.11.6"
rand = "0.8.5"
rustls = { version = "0.23.15", default-features = false }
semver = "1.0.22"
serde = "1.0.215"
serde_json = "1.0.116"
serde_yaml = "0.9.25"
solana-client = "~2.1.11"
solana-connection-cache = "~2.1.11"
solana-net-utils = "~2.1.11"
solana-program = "~2.1.11"
solana-quic-client = "~2.1.11"
solana-rpc-client-api = "~2.1.11"
solana-sdk = "~2.1.11"
solana-streamer = "~2.1.11"
solana-tpu-client = "~2.1.11"
solana-transaction-status = "~2.1.11"
solana-version = "~2.1.11"
thiserror = "1.0.58"
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
tokio-stream = "0.1.15"
tonic = { version = "0.12.3", features = ["tls-native-roots"] }
tonic-health = "0.12.3"
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.1", features = [
"ansi",
"env-filter",
"json",
] }
uuid = { version = "1.11.0", features = ["v4", "serde"] }
yellowstone-grpc-client = "4.1.1"
yellowstone-grpc-proto = "4.1.1"
[build-dependencies]
anyhow = "1.0.69"
cargo-lock = "10.0.1"
git-version = "0.3.9"
protobuf-src = "1.1.0"
tonic-build = "0.12.3"
vergen = { version = "9.0.1", features = ["build", "rustc"] }
[lints.clippy]
clone_on_ref_ptr = "deny"
missing_const_for_fn = "deny"
trivially_copy_pass_by_ref = "deny"
[profile.release]
codegen-units = 1
lto = true
[patch.crates-io]
# solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.0.14-triton-public" }
# solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.0.14-triton-public" }
# solana-rpc-client = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.0.14-triton-public" }
# solana-rpc-client-api = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.0.14-triton-public" }
# solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.0.14-triton-public" }
# solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.0.14-triton-public" }
solana-account-decoder = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-program = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-rpc-client = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-rpc-client-api = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-sdk = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-transaction-status = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-derivation-path = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
solana-feature-set = { git = "https://github.com/rpcpool/solana-public.git", tag = "v2.1.11-triton-public" }
# https://github.com/anza-xyz/agave/blob/v2.0.4/Cargo.toml#L502-L533
# [patch.crates-io.curve25519-dalek]
# git = "https://github.com/anza-xyz/curve25519-dalek.git"
# rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"