[package]
name = "pingx"
version = "0.1.3"
edition = "2024"
authors = ["Seamile <lanhuermao@gmail.com>"]
license = "MIT"
description = "A efficient network diagnostic tool to replace system ping/ping6, supporting multi-target concurrent probing via ICMP, TCP, and HTTP."
homepage = "https://github.com/seamile/pingx"
repository = "https://github.com/seamile/pingx"
keywords = ["cli", "tool", "ping", "network"]
categories = ["command-line-utilities"]
readme = "README.md"
[[bin]]
name = "pingx"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.36", features = ["full"] }
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.12.28", features = ["rustls-tls"], default-features = false }
anyhow = "1.0"
thiserror = "2.0.17"
async-trait = "0.1"
futures = "0.3"
surge-ping = "0.8"
colored = "3.0.0"