-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 813 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 813 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
[package]
authors = ["i@k4yt3x.com"]
categories = ["command-line-utilities"]
description = "A prettier lightweight colored ping utility written in Rust"
edition = "2021"
homepage = "https://github.com/k4yt3x/rustyping"
keywords = ["networking", "ping"]
license = "GPL-3.0-or-later"
name = "rustyping"
readme = "README.md"
repository = "https://github.com/k4yt3x/rustyping"
version = "2.4.0"
[[bin]]
name = "rp"
path = "src/main.rs"
[features]
unrestricted = []
[dependencies]
ansi_term = "0.12"
clap = { version = "4.5", features = ["derive"] }
ctrlc = { version = "3.5", features = ["termination"] }
hsl = "0.1"
nix = { version = "0.31", features = ["user"] }
pnet = "0.35"
pnet_transport = "0.35"
rand = "0.9"
slog = "2.8"
slog-term = "2.9"
[profile.release]
strip = "symbols"
lto = "fat"
codegen-units = 1