forked from heim-rs/heim
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
35 lines (30 loc) · 950 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
34
35
[package]
name = "heim-net"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform network information"
keywords = ["heim", "system", "network", "connections", "nic"]
categories = ["asynchronous", "os", "api-bindings"]
repository = "https://github.com/heim-rs/heim"
readme = "README.md"
license = "Apache-2.0 OR MIT"
[dependencies]
heim-common = { version = "0.1.0-rc.1", path = "../heim-common" }
heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" }
cfg-if = "^1.0"
bitflags = "^1.0"
macaddr = "1.0"
libc = "^0.2"
[target.'cfg(unix)'.dependencies]
nix = "^0.23"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["iphlpapi"]}
widestring = "0.4"
[dev-dependencies]
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
smol = "^1.2"
futures = "^0.3"
version-sync = "0.9"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]