forked from rpcpool/yellowstone-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (95 loc) · 2.36 KB
/
Cargo.toml
File metadata and controls
103 lines (95 loc) · 2.36 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[workspace]
resolver = "2"
members = [
"examples/rust", # 10.1.1
"yellowstone-grpc-client", # 10.1.1
"yellowstone-grpc-geyser", # 10.1.1
"yellowstone-grpc-proto", # 10.1.1
]
exclude = [
"yellowstone-grpc-client-nodejs/solana-encoding-wasm", # 3.0.0
]
[workspace.package]
authors = ["Triton One"]
edition = "2021"
homepage = "https://triton.one"
repository = "https://github.com/rpcpool/yellowstone-grpc"
license = "AGPL-3.0"
keywords = ["solana"]
publish = false
[workspace.dependencies]
affinity = "0.1.2"
anyhow = "1.0.98"
backoff = "0.4.0"
base64 = "0.22.1"
bincode = "1.3.3"
bs58 = "0.5.1"
bytes = "1.10.1"
cargo-lock = "10.1.0"
chrono = "0.4.26"
clap = "4.5.42"
criterion = "0.7.0"
crossbeam-channel = "0.5.8"
env_logger = "0.11.3"
futures = "0.3.24"
git-version = "0.3.5"
hex = "0.4.3"
hostname = "0.4.0"
http = "1.1.0"
http-body-util = "0.1.2"
humantime-serde = "1.1.1"
hyper = "1.4.1"
hyper-util = "0.1.7"
indicatif = "0.18.0"
lazy_static = "1.4.0"
local-ip-address = "0.6.1"
log = "0.4.17"
maplit = "1.0.2"
prometheus = "0.14.0"
prost = "0.14.0"
prost-types = "0.14.0"
prost_011 = { package = "prost", version = "0.11.9" }
protobuf-src = "1.1.0"
serde = "1.0.145"
serde_json = "1.0.86"
smallvec = "1.15.1"
thiserror = "2.0.16"
tokio = "1.47.1"
tokio-stream = "0.1.17"
tokio-util = "0.7.0"
tonic = "0.14.0"
tonic-build = "0.14.0"
tonic-prost = "0.14.0"
tonic-prost-build = "0.14.0"
tonic-health = "0.14.0"
vergen = "9.0.6"
# Agave Monorepo
agave-geyser-plugin-interface = "3.0.0"
solana-account-decoder = "3.0.0"
solana-logger = "3.0.0"
solana-storage-proto = "3.0.0"
solana-transaction-context = "3.0.0"
solana-transaction-status = "3.0.0"
# Solana SDK
solana-account = "3.0.0"
solana-clock = "3.0.0"
solana-hash = "3.0.0"
solana-keypair = "3.0.1"
solana-message = { version = "3.0.1", features = ["bincode", "blake3"] }
solana-pubkey = "3.0.0"
solana-signature = "3.1.0"
solana-signer = "3.0.0"
solana-transaction = "3.0.1"
solana-transaction-error = "3.0.0"
# Solana Misc
spl-token-2022-interface = "2.0.0"
# Yellowstone
yellowstone-grpc-client = { path = "yellowstone-grpc-client", version = "10.1.0" }
yellowstone-grpc-proto = { path = "yellowstone-grpc-proto", version = "10.1.0", default-features = false }
[workspace.lints.clippy]
clone_on_ref_ptr = "deny"
missing_const_for_fn = "deny"
trivially_copy_pass_by_ref = "deny"
[profile.release]
lto = true
codegen-units = 1