-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (41 loc) · 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (41 loc) · 1.12 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
[package]
name = "netperf"
version = "0.2.9"
description = "A network performance measurement tool"
authors = ["Ahmed Farghal <me@asoli.dev>"]
edition = "2024"
repository = "https://github.com/AhmedSoliman/netperf"
license = "MIT OR Apache-2.0"
keywords = ["network", "performance", "iperf3"]
categories = ["command-line-utilities", "simulation"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
colored = "3.1"
env_logger = "0.11.8"
log = "0.4.17"
nix = "0.31.3"
bytes = "1.4.0"
clap-verbosity-flag = "3.0.2"
futures = "0.3.32"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0"
cling = { version = "0.1" }
tokio = { version = "1.52", features = [
"rt",
"rt-multi-thread",
"net",
"time",
"sync",
"macros",
"fs",
"io-util",
] }
uuid = { version = "1.23", default-features = false, features = ["v4"] }
clap = { version = "4.6.1", features = ["color", "derive"] }
[dev-dependencies]
pretty_assertions = "1.3.0"
tokio = { version = "1.52", features = ["test-util"] }
tokio-stream = "0.1.17"