cargo-features = ["panic-immediate-abort"]
[package]
edition = "2024"
rust-version = "1.96.0"
name = "meowping"
version = "2.0.7"
authors = ["Entytaiment25"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = " A flexible ping utility Tool written in Rust, that is focused on being size efficient and fast."
homepage = "https://github.com/entytaiment25/meowping"
readme = "README.md"
keywords = [
"icmp",
"tcp",
"udp",
"http",
"ping",
]
categories = [
"network-programming",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/entytaiment25/meowping"
[[bin]]
name = "meowping"
path = "src/main.rs"
[dependencies.native-tls]
version = "0.2.18"
[target.'cfg(target_os = "linux")'.dependencies.native-tls]
version = "0.2.18"
features = ["vendored"]
[target."cfg(unix)".dependencies.libc]
version = "0.2.186"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_NetworkManagement_IpHelper",
"Win32_System_Console",
]
default-features = false
[target."cfg(windows)".build-dependencies.windres]
version = "0.2.2"
[profile.dev]
opt-level = 0
overflow-checks = false
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "immediate-abort"
overflow-checks = true
strip = "symbols"