-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (86 loc) · 2.11 KB
/
Copy pathCargo.toml
File metadata and controls
89 lines (86 loc) · 2.11 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
[workspace]
resolver = "3"
members = [
"crate/solana-stream-sdk",
"crate/r2-uploader",
"client/shreds-rs",
"client/geyser-rs",
"client/shreds-udp-rs",
]
exclude = [
"package/solana-shreds-client",
"package/solana-entry-decoder",
"temp-release/shreds-rs",
"temp-release/geyser-rs",
"temp-release/shreds-udp-rs",
]
[workspace.package]
version = "1.4.0"
description = ""
authors = ["ELSOUL LABO B.V. <labo@elsoul.nl>"]
homepage = "https://elsoul.nl/"
edition = "2021"
[profile.release]
# thin has minimal overhead vs none (default): https://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html
lto = "thin"
[workspace.dependencies]
anyhow = "1.0.98"
arc-swap = "1.7"
backoff = "0.4.0"
bincode = "1.3.3"
borsh = "1.5.3"
bs58 = "0.5.1"
chrono = "0.4.38"
clap = { version = "4.5.23", features = ["derive", "env"] }
crossbeam-channel = "0.5.13"
dashmap = "6"
dotenv = "0.15"
dotenvy = "0.15"
env_logger = "0.11.6"
futures = "0.3.31"
hex = "0.4.3"
hostname = "0.4.0"
http = "0.2"
itertools = "0.13.0"
json5 = "0.4.1"
log = "0.4"
maplit = "1.0.2"
prost = "0.14.1"
prost-types = "0.14.1"
protobuf-src = "1.1.0"
rand = "0.8"
reqwest = { version = "0.12.15" }
serde_json = "1"
serde_jsonc = "1"
serde = "1"
signal-hook = "0.3"
solana-client = "3.0"
solana-rpc-client = "3.0"
solana-hash = "3.0"
solana-metrics = "3.0"
solana-net-utils = "3.0"
solana-perf = "3.0"
solana-pubkey = "3.0"
solana-signature = "3.0"
solana-sdk = "3.0"
solana-vote-program = "3.0"
solana-streamer = "3.0"
solana-stream-sdk = { path = "crate/solana-stream-sdk" }
solana-ledger = { version = "3.0", features = ["agave-unstable-api"] }
solana-entry = "3.0"
solana-account-decoder = "3.0"
solana-transaction-context = "3.0"
solana-transaction-error = "3.0"
solana-transaction-status = "3.0"
solana-packet = "3.0"
thiserror = "1"
tokio = { version = "1.41.1" }
tokio-util = "0.7.15"
tonic = { version = "0.14.2" }
tonic-build = "0.14.2"
tonic-prost = "0.14.2"
tonic-prost-build = "0.14.2"
url = "2.5.4"
wincode = { version = "0.1.2", features = ["derive", "solana-short-vec"] }
yellowstone-grpc-client = "13.1.1"
yellowstone-grpc-proto = "12.5.0"