-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 1.08 KB
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
[package]
name = "ipconfig"
version = "0.3.4" # Remember to also update the html_root_url in lib.rs and the documentation links here and in README.md
authors = ["Liran Ringel <liranringel@gmail.com>"]
description = "Get network adapters information and network configuration for windows."
license = "MIT/Apache-2.0"
keywords = ["ipconfig", "network", "adapter", "interface", "windows"]
repository = "https://github.com/liranringel/ipconfig"
homepage = "https://github.com/liranringel/ipconfig"
documentation = "https://docs.rs/ipconfig/0.3.2/x86_64-pc-windows-msvc/ipconfig/"
readme = "README.md"
edition = "2018"
rust-version = "1.71"
[badges]
appveyor = { repository = "liranringel/ipconfig" }
[features]
default = ["computer"]
computer = ["dep:windows-registry", "dep:windows-result"]
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_System_Registry"] }
widestring = "1.0.2"
socket2 = "0.6.0"
windows-registry = { version = "0.6.1", optional = true }
windows-result = { version = "0.4.1", optional = true }