[package]
edition = "2018"
name = "winping"
version = "0.10.1"
authors = ["Tyler Ruckinger"]
description = "An easy-to-use ICMP Echo API for Windows programs without requiring elevated rights"
documentation = "https://docs.rs/winping"
readme = "README.md"
keywords = ["ping", "icmp", "windows", "echo", "async"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TyPR124/winping"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.winapi]
version = "0.3.7"
features = ["errhandlingapi", "icmpapi", "iphlpapi", "impl-default", "handleapi", "synchapi", "winbase", "winerror"]
package = "winapi_forked_icmpapi"
[dev-dependencies.futures]
version = "0.3.1"
[features]
async = []
default = ["async"]
real-tests = ["real-tests-v4", "real-tests-v6"]
real-tests-v4 = ["async"]
real-tests-v6 = ["async"]
[badges.maintenance]
status = "passively-maintained"