• Home
  • Raw
  • Download

Lines Matching +full:windows +full:- +full:test

4 # - Remove path dependencies
5 # - Update doc url
6 # - README.md
7 # - Update CHANGELOG.md.
8 # - Create "v1.x.y" git tag.
11 rust-version = "1.63"
15 repository = "https://github.com/tokio-rs/tokio"
18 An event-driven, non-blocking I/O platform for writing asynchronous I/O
21 categories = ["asynchronous", "network-programming"]
22 keywords = ["io", "async", "non-blocking", "futures"]
31 "io-util",
32 "io-std",
38 "rt-multi-thread",
45 io-util = ["bytes"]
47 io-std = []
48 macros = ["tokio-macros"]
51 "mio/os-poll",
52 "mio/os-ext",
55 "windows-sys/Win32_Foundation",
56 "windows-sys/Win32_Security",
57 "windows-sys/Win32_Storage_FileSystem",
58 "windows-sys/Win32_System_Pipes",
59 "windows-sys/Win32_System_SystemServices",
64 "mio/os-poll",
65 "mio/os-ext",
67 "signal-hook-registry",
68 "windows-sys/Win32_Foundation",
69 "windows-sys/Win32_System_Threading",
70 "windows-sys/Win32_System_WindowsProgramming",
74 rt-multi-thread = [
80 "mio/os-poll",
82 "mio/os-ext",
83 "signal-hook-registry",
84 "windows-sys/Win32_Foundation",
85 "windows-sys/Win32_System_Console",
88 test-util = ["rt", "sync", "time"]
97 tokio-macros = { version = "~2.1.0", path = "../tokio-macros", optional = true }
99 pin-project-lite = "0.2.11"
103 mio = { version = "0.8.6", optional = true, default-features = false }
111 # Requires `--cfg tokio_unstable` to enable.
113 tracing = { version = "0.1.25", default-features = false, features = ["std"], optional = true } # N…
116 # Requires `--cfg tokio_unstable` to enable.
122 signal-hook-registry = { version = "1.1.1", optional = true }
124 [target.'cfg(unix)'.dev-dependencies]
126 nix = { version = "0.28.0", default-features = false, features = ["fs", "socket"] }
128 [target.'cfg(windows)'.dependencies.windows-sys]
132 [target.'cfg(windows)'.dev-dependencies.windows-sys]
139 [dev-dependencies]
140 tokio-test = { version = "0.4.0", path = "../tokio-test" }
141 tokio-stream = { version = "0.1", path = "../tokio-stream" }
142 futures = { version = "0.3.0", features = ["async-await"] }
144 async-stream = "0.3"
146 [target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
150 [target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dev-dependencies]
153 [target.'cfg(all(target_family = "wasm", not(target_os = "wasi")))'.dev-dependencies]
154 wasm-bindgen-test = "0.3.0"
156 [target.'cfg(target_os = "freebsd")'.dev-dependencies]
157 mio-aio = { version = "0.7.0", features = ["tokio"] }
159 [target.'cfg(loom)'.dev-dependencies]
163 all-features = true
165 rustdoc-args = ["--cfg", "docsrs", "--cfg", "tokio_unstable"]
166 # it's necessary to _also_ pass `--cfg tokio_unstable` to rustc, or else
168 rustc-args = ["--cfg", "tokio_unstable"]
171 features = ["full", "test-util"]