-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 732 Bytes
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
[package]
name = "tx-latency"
version = "0.1.0"
edition = "2024"
description = "Transaction latency measurement tool for EVM blockchains"
[[bin]]
name = "tx-latency"
path = "src/main.rs"
[[bin]]
name = "snake"
path = "src/snake/snake.rs"
[dependencies]
ethers = { version = "2.0", features = ["rustls"] }
tokio = { version = "1.28", features = ["full"] }
dotenv = "0.15.0"
anyhow = "1.0"
chrono = "0.4"
hex = "0.4.3"
tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
futures = "0.3"
futures-util = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
clap = { version = "4.4", features = ["derive", "env"] }
crossterm = "0.27"
rand = "0.8"
log = "0.4"
simplelog = "0.12"