[package]
edition = "2024"
name = "fping-rust"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance ping tool"
homepage = "https://github.com/gsnw/fping-rust"
readme = "README.md"
categories = ["command-line-utilities"]
license = "GPL-3.0-or-later"
repository = "https://github.com/gsnw/fping-rust"
[lib]
name = "fping"
path = "src/lib.rs"
[[bin]]
name = "fping"
path = "src/main.rs"
[[test]]
name = "args_tests"
path = "tests/args_tests.rs"
[[test]]
name = "dns_tests"
path = "tests/dns_tests.rs"
[[test]]
name = "output_tests"
path = "tests/output_tests.rs"
[[test]]
name = "socket_tests"
path = "tests/socket_tests.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dns-lookup]
version = "2"
[dependencies.libc]
version = "0.2"
[dependencies.serde_json]
version = "1"
[dependencies.socket2]
version = "0.5"
features = ["all"]