-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
36 lines (32 loc) · 893 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 = "miow"
version = "0.6.0"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
keywords = ["iocp", "windows", "io", "overlapped"]
repository = "https://github.com/yoshuawuyts/miow"
homepage = "https://github.com/yoshuawuyts/miow"
description = """
A zero overhead I/O library for Windows, focusing on IOCP and async I/O
abstractions.
"""
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["aarch64-pc-windows-msvc", "i686-pc-windows-msvc", "x86_64-pc-windows-msvc"]
[badges]
maintenance = { status = "as-is" }
[dependencies.windows-sys]
version = "0.48.0"
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Pipes",
"Win32_System_Threading",
]
[dev-dependencies]
rand = "0.8.0"
socket2 = "0.5.3"