-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (50 loc) · 1.09 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
[package]
name = "sshping"
version = "0.2.0"
edition = "2021"
description = "SSH-based ping that measures interactive character echo latency and file transfer throughput. Pronounced \"shipping\"."
authors = ["Nan Huang <teddyhuangnan@gmail.com>"]
license = "MIT"
[dependencies]
bytesize = "1.3.0"
clap = { version = "4.5.7", features = [
"derive",
"string",
"cargo",
"color",
"wrap_help",
] }
humantime = "2.1.0"
indicatif = "0.17.8"
log = "0.4.21"
num-format = "0.4.4"
rand = "0.9.0"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
shellexpand = "3.1.0"
simple_logger = "5.0.0"
size = "0.5.0"
ssh2 = "0.9.4"
ssh2-config = "0.3.0"
tabled = "0.18.0"
whoami = "1.5.1"
[build-dependencies]
bytesize = "1.3.0"
clap = { version = "4.5.7", features = [
"derive",
"string",
"cargo",
"color",
"wrap_help",
] }
clap_complete = "4.5.44"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
shellexpand = "3.1.0"
tabled = "0.18.0"
whoami = "1.5.1"
[features]
default = []
include-openssl = ["ssh2/vendored-openssl"]