• Home
  • Raw
  • Download

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

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.49"
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 = ["memchr", "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"]
96 [build-dependencies]
100 tokio-macros = { version = "1.7.0", path = "../tokio-macros", optional = true }
102 pin-project-lite = "0.2.0"
115 # Requires `--cfg tokio_unstable` to enable.
117 tracing = { version = "0.1.25", default-features = false, features = ["std"], optional = true } # N…
121 signal-hook-registry = { version = "1.1.1", optional = true }
123 [target.'cfg(unix)'.dev-dependencies]
125 nix = { version = "0.26", default-features = false, features = ["fs", "socket"] }
127 [target.'cfg(windows)'.dependencies.windows-sys]
131 [target.'cfg(docsrs)'.dependencies.windows-sys]
138 [target.'cfg(windows)'.dev-dependencies.ntapi]
141 [dev-dependencies]
142 tokio-test = { version = "0.4.0", path = "../tokio-test" }
143 tokio-stream = { version = "0.1", path = "../tokio-stream" }
144 futures = { version = "0.3.0", features = ["async-await"] }
147 async-stream = "0.3"
149 [target.'cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))'.dev-dependencies]
153 …ll(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dev-dependencies]
156 …l(any(target_arch = "wasm32", target_arch = "wasm64"), not(target_os = "wasi")))'.dev-dependencies]
157 wasm-bindgen-test = "0.3.0"
159 [target.'cfg(target_os = "freebsd")'.dev-dependencies]
160 mio-aio = { version = "0.7.0", features = ["tokio"] }
162 [target.'cfg(loom)'.dev-dependencies]
166 all-features = true
168 rustdoc-args = ["--cfg", "docsrs", "--cfg", "tokio_unstable"]
169 # it's necessary to _also_ pass `--cfg tokio_unstable` to rustc, or else
171 rustc-args = ["--cfg", "tokio_unstable"]
174 features = ["full", "test-util"]