-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
43 lines (40 loc) · 1.21 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
[package]
name = "rperf"
version = "0.1.8"
description = "validates network throughput capacity and reliability"
authors = ["Neil Tallim <[email protected]>"]
edition = "2021"
repository = "https://github.com/opensource-3d-p/rperf"
license = "GPLv3"
keywords = ["network", "performance", "tcp", "udp"]
categories = ["network-utilities"]
readme = "README.md"
[dependencies]
chrono = "0.4"
clap = "~2.33.3"
core_affinity = "0.5"
ctrlc = "3.1"
env_logger = "0.8"
log = {version = "0.4", features = ["std"]}
mio = "0.6"
nix = "0.20"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
simple-error = "0.2"
uuid = {version = "0.8", features = ["v4"]}
#configuration for cargo-deb
#install with "cargo install cargo-deb"
#then "cargo deb" to build simple Debian packages for this project
[package.metadata.deb]
copyright = "(C) 2022 Evtech Solutions, Ltd., dba 3D-P"
license-file = ["COPYING", "0"]
extended-description = """
Rust-based iperf clone with a number of behavioural fixes and corrections, plus
a feature-set aimed at continuous monitoring in an IoT-like environment.
"""
section = "net"
priority = "optional"
[package.metadata.deb.systemd-units]
#don't enable the service by default
enable = false
start = false