]> git.proxmox.com Git - rustc.git/blob - src/vendor/miow/Cargo.toml.orig
New upstream version 1.26.0+dfsg1
[rustc.git] / src / vendor / miow / Cargo.toml.orig
1 [package]
2 name = "miow"
3 version = "0.3.1"
4 authors = ["Alex Crichton <alex@alexcrichton.com>"]
5 license = "MIT/Apache-2.0"
6 readme = "README.md"
7 keywords = ["iocp", "windows", "io", "overlapped"]
8 repository = "https://github.com/alexcrichton/miow"
9 homepage = "https://github.com/alexcrichton/miow"
10 documentation = "https://docs.rs/miow/0.3/x86_64-pc-windows-msvc/miow/"
11 description = """
12 A zero overhead I/O library for Windows, focusing on IOCP and Async I/O
13 abstractions.
14 """
15
16 [dependencies]
17 socket2 = "0.3"
18
19 [dependencies.winapi]
20 version = "0.3.2"
21 features = [
22 "std",
23 "fileapi",
24 "handleapi",
25 "ioapiset",
26 "minwindef",
27 "namedpipeapi",
28 "ntdef",
29 "winerror",
30 "winsock2",
31 "ws2def",
32 "ws2ipdef",
33 ]
34
35 [dev-dependencies]
36 rand = "0.4"