Bug 1874684 - Part 10: Replace BigInt with Int128 in RoundNumberToIncrement. r=mgaudet
[gecko.git] / third_party / rust / mio / Cargo.toml
blob44fe316713c02a2b2783968867079633e515d09b
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g., crates.io) dependencies.
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
12 [package]
13 edition = "2018"
14 name = "mio"
15 version = "0.8.8"
16 authors = [
17     "Carl Lerche <me@carllerche.com>",
18     "Thomas de Zeeuw <thomasdezeeuw@gmail.com>",
19     "Tokio Contributors <team@tokio.rs>",
21 include = [
22     "Cargo.toml",
23     "LICENSE",
24     "README.md",
25     "CHANGELOG.md",
26     "src/**/*.rs",
27     "examples/**/*.rs",
29 description = "Lightweight non-blocking I/O."
30 homepage = "https://github.com/tokio-rs/mio"
31 readme = "README.md"
32 keywords = [
33     "io",
34     "async",
35     "non-blocking",
37 categories = ["asynchronous"]
38 license = "MIT"
39 repository = "https://github.com/tokio-rs/mio"
41 [package.metadata.docs.rs]
42 all-features = true
43 rustdoc-args = [
44     "--cfg",
45     "docsrs",
47 targets = [
48     "aarch64-apple-ios",
49     "aarch64-linux-android",
50     "wasm32-wasi",
51     "x86_64-apple-darwin",
52     "x86_64-pc-windows-msvc",
53     "x86_64-unknown-dragonfly",
54     "x86_64-unknown-freebsd",
55     "x86_64-unknown-illumos",
56     "x86_64-unknown-linux-gnu",
57     "x86_64-unknown-netbsd",
58     "x86_64-unknown-openbsd",
61 [package.metadata.playground]
62 features = [
63     "os-poll",
64     "os-ext",
65     "net",
68 [[example]]
69 name = "tcp_server"
70 required-features = [
71     "os-poll",
72     "net",
75 [[example]]
76 name = "tcp_listenfd_server"
77 required-features = [
78     "os-poll",
79     "net",
82 [[example]]
83 name = "udp_server"
84 required-features = [
85     "os-poll",
86     "net",
89 [dependencies.log]
90 version = "0.4.8"
91 optional = true
93 [dev-dependencies]
94 rand = "0.8"
96 [dev-dependencies.env_logger]
97 version = "0.9.3"
98 default-features = false
100 [features]
101 default = ["log"]
102 net = []
103 os-ext = [
104     "os-poll",
105     "windows-sys/Win32_System_Pipes",
106     "windows-sys/Win32_Security",
108 os-poll = []
110 [target."cfg(target_os = \"wasi\")".dependencies]
111 libc = "0.2.121"
112 wasi = "0.11.0"
114 [target."cfg(unix)".dependencies]
115 libc = "0.2.121"
117 [target."cfg(windows)".dependencies.windows-sys]
118 version = "0.52"
119 features = [
120     "Wdk_Foundation",
121     "Wdk_Storage_FileSystem",
122     "Wdk_System_IO",
123     "Win32_Foundation",
124     "Win32_Networking_WinSock",
125     "Win32_Storage_FileSystem",
126     "Win32_System_IO",
127     "Win32_System_WindowsProgramming",