[package]
name = "network_toolset"
version = "0.1.0"
edition = "2021"
authors = ["Anonymous <dnrops@outlook.com>"]
description = "A comprehensive network diagnostic toolset implemented in Rust"
readme = "README.md"
keywords = [ "network", "ping", "traceroute", "arp-scan", "mtu-discover"]
categories = ["development-tools"]
license = "MIT"
documentation = "https://docs.rs/network_toolset"
repository = "https://gitcode.net/dnrops/network_toolset"
homepage = "https://gitcode.net/dnrops/network_toolset"
[dependencies]
socket2 = { version = "0.6.1", features = ["all"] }
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"], optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winnt", "securitybaseapi", "processthreadsapi", "handleapi"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[[bin]]
name = "network_toolset"
path = "src/main.rs"