ping 0.7.1

Simple and naive ping implementation in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "ping"
version = "0.7.1"
authors = ["AN Long <aisk1988@gmail.com>"]
license = "MIT"
description = "Simple and naive ping implementation in Rust."
repository = "https://github.com/aisk/rust-ping"
categories = ["network-programming", "os"]
keywords = ["ping", "system", "ICMP"]
edition = "2024"

[dependencies]
socket2 = { version = "0.6", features = ["all"] }
thiserror = ">=1.0, <=2.1"
rand = ">=0.8, <=0.9"

[dev-dependencies]
libc = "0.2"