forked from SamuelYvon/netifaces-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 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
31
32
33
[package]
name = "netifaces"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "netifaces"
crate-type = ["cdylib"]
[dependencies]
log = "0.4.20"
thiserror = "1.0.51"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.42.0", features = [
"Data_Xml_Dom",
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
"Win32_NetworkManagement_Ndis",
"Win32_Networking_WinSock",
"Win32_NetworkManagement_NetManagement",
"Win32_NetworkManagement_IpHelper",
"Win32_Networking"] }
[dependencies.pyo3]
version = "0.17.1"
features = ["extension-module", "abi3-py37"]
[target.'cfg(unix)'.dependencies]
nix = { version = "0.28.0", features = ["net"] }