[package]
edition = "2024"
name = "ping"
version = "0.7.1"
authors = ["AN Long <aisk1988@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple and naive ping implementation in Rust."
readme = "README.md"
keywords = [
"ping",
"system",
"ICMP",
]
categories = [
"network-programming",
"os",
]
license = "MIT"
repository = "https://github.com/aisk/rust-ping"
[lib]
name = "ping"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.rand]
version = ">=0.8, <=0.9"
[dependencies.socket2]
version = "0.6"
features = ["all"]
[dependencies.thiserror]
version = ">=1.0, <=2.1"
[dev-dependencies.libc]
version = "0.2"