-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1016 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 1016 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
33
34
35
36
37
38
39
40
[package]
name = "ackreport"
version = "0.4.8"
authors = ["roller@gmail.com"]
edition = "2018"
[profile.release]
lto = true
strip = true
[dependencies]
clap = "~2.32.0"
hostname = "^0.1"
log = "0.4"
env_logger = "0.5.11"
itertools = "0.8"
tabwriter = "1.1.0"
duration-string = "0.0.6"
rustls = "0.19"
webpki = "0.22.0"
webpki-roots = "0.22.2"
rustls-native-certs = "0.6.1"
tokio = { version = "1.15.0", features = ["full"] }
tokio-rustls = "0.23.2"
# Local IP is optional because it doesn't build on windows cross from linux
# https://github.com/EstebanBorai/local-ip-address/issues/16
local-ip-address = { version = "0.4.4", optional = true }
# console-subscriber requires additional env set:
# eg RUSTFLAGS="--cfg tokio_unstable" cargo build
# see: https://tokio.rs/blog/2021-12-announcing-tokio-console
console-subscriber = { version = "0.1.0", optional = true }
[features]
default = ["local_ip"]
local_ip = ["local-ip-address"]
# (tracing is experimental)
tracing = ["tokio/tracing", "console-subscriber"]