-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
executable file
·49 lines (44 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "meowping"
version = "1.6.9-beta.4"
authors = ["Entytaiment25"]
edition = "2021"
rust-version = "1.82.0"
description = "A simple ping utility written in Rust, that is focused on being size efficient and fast."
repository = "https://github.com/entytaiment25/meowping"
license = "MIT"
keywords = [
"ping",
"utility",
"networking",
"meowping",
"command-line-utilities",
]
categories = ["networking", "ping", "utility", "command-line-utilities"]
readme = "README.md"
build = "build.rs"
[profile.dev]
opt-level = 0
overflow-checks = false
[profile.release]
codegen-units = 1
lto = "fat"
overflow-checks = true
opt-level = "s"
panic = "abort"
strip = "symbols"
[dependencies]
pico-args = { version = "0.5.0", default-features = false }
jzon = { version = "0.12.5", default-features = false }
ping = { version = "0.5.2", default-features = false }
anyhow = "1.0.93"
native-tls = "0.2.12"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", default-features = false, features = [
"consoleapi",
"processenv",
"winbase",
"wincon",
] }
[target.'cfg(windows)'.build-dependencies]
windres = "0.2.2"