surge-ping 0.2.0

Asynchronous ICMP ping library
Documentation
[package]
name = "surge-ping"
version = "0.2.0"
authors = ["kolapapa <milk346512016@gmail.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/kolapapa/surge-ping"
description = "Asynchronous ICMP ping library"
keywords = ["tokio", "icmp", "ping"]
categories = ["network-programming", "asynchronous"]

[dependencies]
log = "0.4.14"
packet = "0.1.4"
parking_lot = "0.11.1"
rand = "0.8.3"
socket2 = { version = "0.4.0", features = ["all"]}
thiserror = "1.0.24"
tokio = { version = "1.4", features = ["time", "macros"] }

[dev-dependencies]
log = "0.4"
structopt = "0.3"
pretty_env_logger = "0.4"
tokio = { version = "1", features = ["full"] }

[[example]]
name = "simple"

[[example]]
name = "cmd"

[[example]]
name = "multi_ping"