[package]
edition = "2018"
rust-version = "1.71"
name = "ipconfig"
version = "0.3.4"
authors = ["Liran Ringel <liranringel@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Get network adapters information and network configuration for windows."
homepage = "https://github.com/liranringel/ipconfig"
documentation = "https://docs.rs/ipconfig/0.3.2/x86_64-pc-windows-msvc/ipconfig/"
readme = "README.md"
keywords = [
"ipconfig",
"network",
"adapter",
"interface",
"windows",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/liranringel/ipconfig"
[badges.appveyor]
repository = "liranringel/ipconfig"
[features]
computer = [
"dep:windows-registry",
"dep:windows-result",
]
default = ["computer"]
[lib]
name = "ipconfig"
path = "src/lib.rs"
[[example]]
name = "priority_list"
path = "examples/priority_list.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[target."cfg(windows)".dependencies.socket2]
version = "0.6.0"
[target."cfg(windows)".dependencies.widestring]
version = "1.0.2"
[target."cfg(windows)".dependencies.windows-registry]
version = "0.6.1"
optional = true
[target."cfg(windows)".dependencies.windows-result]
version = "0.4.1"
optional = true
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_System_Registry",
]