-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.02 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
[package]
name = "yellowstone-thorofare"
version = "0.2.0"
authors = ["Triton One"]
edition = "2024"
description = "Benchmarking tool for comparing Solana nodes and Geyser Plugins (currently only gRPC protocol)"
license = "Apache-2.0"
resolver = "2"
publish = false
[[bin]]
name = "thorofare"
path = "src/bin/thorofare.rs"
[dependencies]
tokio = { version = "1.45.1", features = ["rt-multi-thread", "macros", "sync"] }
yellowstone-grpc-client = "6.1.0"
yellowstone-grpc-proto = "6.1.0"
futures = "0.3.31"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"
solana-pubkey = "2"
solana-signature = "2"
humantime-serde = "1.1.1"
toml = "0.8.23"
clap = { version = "4.5.40", features = ["derive"] }
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }
richat-client = "3.5.0"
tonic = "0.12.3"
richat-proto = "3.1.0"
[lints.clippy]
clone_on_ref_ptr = "deny"
missing_const_for_fn = "deny"
trivially_copy_pass_by_ref = "deny"