-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
30 lines (27 loc) · 826 Bytes
/
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
[package]
name = "ping-rs"
authors = ["Ruxo Zheng <[email protected]>"]
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "Provide ICMP Echo (ping) functionality for both Windows and Linux"
documentation = "https://docs.rs/ping-rs/"
homepage = "https://docs.rs/ping-rs/"
repository = "https://github.com/ruxo/ping-rs"
[dependencies]
futures = "0.3"
[target.'cfg(unix)'.dependencies]
mio = { version = "0.8", features = ["os-poll", "os-ext", "net"] }
socket2 = { version = "0.4", features = ["all"] }
paste = "1"
[target.'cfg(windows)'.dependencies.windows]
version = "0.43"
features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_Networking_WinSock",
"Win32_NetworkManagement_IpHelper",
"Win32_Security",
"Win32_System_Diagnostics_Debug",
]