-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathCargo.toml
36 lines (31 loc) · 903 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
36
[package]
name = "net2"
version = "0.2.37"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/deprecrated/net2-rs"
homepage = "https://github.com/deprecrated/net2-rs"
documentation = "https://docs.rs/net2/~0.2"
description = """
Extensions to the standard library's networking types as proposed in RFC 1158.
"""
include = [
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"src/**/*.rs"
]
[target."cfg(windows)".dependencies]
winapi = { version = "0.3", features = ["handleapi", "winsock2", "ws2def", "ws2ipdef", "ws2tcpip"] }
[target.'cfg(any(target_os="redox", unix, target_os="wasi"))'.dependencies]
libc = "0.2.54"
[target.'cfg(target_os="wasi")'.dependencies]
wasi = "0.10.0+wasi-snapshot-preview1"
[dependencies]
cfg-if = "0.1"
[features]
nightly = []
duration = []
default = ["duration"]