-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
78 lines (75 loc) · 1.91 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
[workspace]
resolver = "2"
members = [
"examples/rust", # 1.13.0+solana.1.18.21.gamma
"yellowstone-grpc-client", # 1.15.0+solana.1.18.21.gamma
"yellowstone-grpc-geyser", # 1.15.0+solana.1.18.21.gamma
"yellowstone-grpc-proto", # 1.14.0+solana.1.18.21.gamma
"yellowstone-grpc-tools", # 1.0.0-rc.11+solana.1.18.21.gamma
]
[workspace.package]
authors = ["Triton One"]
edition = "2021"
homepage = "https://triton.one"
repository = "https://github.com/rpcpool/yellowstone-grpc"
license = "AGPL-3.0"
keywords = ["solana"]
[workspace.dependencies]
anyhow = "1.0.62"
async-trait = "0.1.73"
atty = "0.2.14"
backoff = "0.4.0"
base64 = "0.21.0"
bincode = "1.3.3"
bs58 = "0.4.0"
bytes = "1.3.0"
cargo-lock = "9.0.0"
chrono = "0.4.26"
clap = "4.3.0"
const-hex = "1.6.2"
crossbeam-channel = "0.5.8"
env_logger = "0.10.0"
futures = "0.3.24"
git-version = "0.3.5"
google-cloud-googleapis = "0.11.0"
google-cloud-pubsub = "0.21.0"
hex = "0.4.3"
hostname = "0.3.1"
http = "0.2.8"
hyper = "0.14.27"
json5 = "0.4.1"
lazy_static = "1.4.0"
local-ip-address = "0.6.1"
log = "0.4.17"
maplit = "1.0.2"
prometheus = "0.13.2"
prost = "0.12.1"
prost-types = "0.12.1"
protobuf-src = "1.1.0"
rdkafka = "0.34.0"
scylla = "0.13.0"
serde = "1.0.145"
serde_json = "1.0.86"
serde_yaml = "0.9.25"
sha2 = "0.10.7"
solana-account-decoder = "=1.18.21"
solana-geyser-plugin-interface = "=1.18.21"
solana-logger = "=1.18.21"
solana-sdk = "=1.18.21"
solana-transaction-status = "=1.18.21"
spl-token-2022 = "0.9.0"
thiserror = "1.0"
tokio = "1.21.2"
tokio-stream = "0.1.11"
tonic = "0.10.2"
tonic-build = "0.10.2"
tonic-health = "0.10.2"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
uuid = "1.8.0"
vergen = "8.2.1"
yellowstone-grpc-client = { path = "yellowstone-grpc-client", version = "=1.15.0+solana.1.18.21.gamma" }
yellowstone-grpc-proto = { path = "yellowstone-grpc-proto", version = "=1.14.0+solana.1.18.21.gamma" }
[profile.release]
lto = true
codegen-units = 1