-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
53 lines (50 loc) · 1.39 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
[workspace]
members = [
"cli",
"client",
"proto",
"server"
]
# This prevents a Travis CI error when building for Windows.
resolver = "2"
[workspace.package]
version = "2.0.5"
license = "Apache-2.0"
authors = ["Jito Foundation <team@jito.network>"]
edition = "2021"
repository = "https://github.com/jito-foundation/geyser-grpc-plugin"
homepage = "https://jito.network/"
[workspace.dependencies]
agave-geyser-plugin-interface = "=2.0.5"
bincode = "1.3.3"
bs58 = "0.5.0"
clap = { version = "4.4.6", features = ["derive", "env"] }
crossbeam-channel = "0.5.8"
enum-iterator = "1.4.1"
futures-util = "0.3.28"
geyser-grpc-plugin-client = { path = "client", version = "=2.0.5" }
jito-geyser-protos = { path = "proto", version = "=2.0.5" }
log = "0.4.17"
lru = "0.12.0"
once_cell = "1.17.1"
prost = "0.12.1"
prost-types = "0.12.1"
protobuf-src = "1.1.0"
rand = "0.8"
serde = "1.0.160"
serde_derive = "1.0.160"
serde_json = "1.0.96"
serde_with = "=3.9.0"
solana-account-decoder = "=2.0.5"
solana-logger = "=2.0.5"
solana-metrics = "=2.0.5"
solana-program = "=2.0.5"
solana-sdk = "=2.0.5"
solana-transaction-status = "=2.0.5"
solana-vote-program = "=2.0.5"
thiserror = "1.0.40"
tokio = { version = "1", features = ["rt-multi-thread"] }
tokio-stream = "0.1"
tonic = { version = "0.10.2", features = ["tls", "tls-webpki-roots"] }
tonic-build = "0.10.2"
uuid = { version = "1.3.1", features = ["v4", "fast-rng"] }