[package]
edition = "2024"
name = "tiny-ping"
version = "0.6.2"
authors = [
"Lucas Rooyakkers <lucas.rooyakkers@pm.me>",
"An Long <aisk1988@gmail.com>",
"kolapapa <milk346512016@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small Asynchronous ICMP library"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Fierthraix/ping"
[lib]
name = "tiny_ping"
path = "src/lib.rs"
[[bin]]
name = "tiny-ping"
path = "src/main.rs"
[[test]]
name = "network"
path = "tests/network.rs"
[dependencies.socket2]
version = "0.6"
features = ["all"]
[dependencies.tokio]
version = "1.5"
features = [
"net",
"rt",
"time",
]