ping 0.7.1

Simple and naive ping implementation in Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"