forked from EstebanBorai/local-ip-address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (23 loc) · 896 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
[package]
name = "local-ip-address"
description = "Retrieve system's local IP address and Network Interfaces/Adapters on Linux, macOS and Windows."
repository = "https://github.com/EstebanBorai/local-ip-address"
categories = ["web-programming", "network-programming"]
homepage = "https://github.com/EstebanBorai/local-ip-address"
keywords = ["local", "ip", "address", "web", "network"]
license = "MIT OR Apache-2.0"
version = "0.4.0"
authors = ["Esteban Borai <estebanborai@gmail.com>"]
edition = "2018"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2"
thiserror = "1"
[target.'cfg(target_os = "linux")'.dependencies]
neli = "0.5"
[target.'cfg(target_os = "windows")'.dependencies]
windows = "0.11.0"
memalloc = "0.1"
[target.'cfg(target_os = "windows")'.build-dependencies]
windows = "0.11.0"