Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 1 | """ |
| 2 | @generated |
| 3 | cargo-raze crate build file. |
| 4 | |
| 5 | DO NOT EDIT! Replaced on runs of cargo-raze |
| 6 | """ |
| 7 | |
| 8 | # buildifier: disable=load |
| 9 | load("@bazel_skylib//lib:selects.bzl", "selects") |
| 10 | |
| 11 | # buildifier: disable=load |
| 12 | load( |
| 13 | "@rules_rust//rust:defs.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_proc_macro", |
| 17 | "rust_test", |
| 18 | ) |
| 19 | |
| 20 | package(default_visibility = [ |
| 21 | # Public for visibility by "@raze__crate__version//" targets. |
| 22 | # |
| 23 | # Prefer access through "//third_party/rust/cargo", which limits external |
| 24 | # visibility to explicit Cargo.toml dependencies. |
| 25 | "//visibility:public", |
| 26 | ]) |
| 27 | |
| 28 | licenses([ |
| 29 | "notice", # MIT from expression "MIT" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 33 | |
| 34 | rust_library( |
| 35 | name = "tokio", |
| 36 | srcs = glob(["**/*.rs"]), |
| 37 | aliases = { |
| 38 | }, |
| 39 | crate_features = [ |
| 40 | "bytes", |
| 41 | "default", |
| 42 | "fs", |
| 43 | "io-util", |
| 44 | "libc", |
| 45 | "macros", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 46 | "mio", |
| 47 | "net", |
| 48 | "num_cpus", |
| 49 | "rt", |
| 50 | "rt-multi-thread", |
| 51 | "socket2", |
| 52 | "sync", |
| 53 | "time", |
| 54 | "tokio-macros", |
| 55 | "windows-sys", |
| 56 | ], |
| 57 | crate_root = "src/lib.rs", |
| 58 | data = [], |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 59 | edition = "2021", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 60 | proc_macro_deps = [ |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 61 | "@raze__tokio_macros__2_1_0//:tokio_macros", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 62 | ], |
| 63 | rustc_flags = [ |
| 64 | "--cap-lints=allow", |
| 65 | ], |
| 66 | tags = [ |
| 67 | "cargo-raze", |
| 68 | "crate-name=tokio", |
| 69 | "manual", |
| 70 | ], |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 71 | version = "1.32.0", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 72 | # buildifier: leave-alone |
| 73 | deps = [ |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 74 | "@raze__bytes__1_5_0//:bytes", |
| 75 | "@raze__mio__0_8_8//:mio", |
| 76 | "@raze__num_cpus__1_16_0//:num_cpus", |
| 77 | "@raze__pin_project_lite__0_2_13//:pin_project_lite", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 78 | ] + selects.with_or({ |
| 79 | ( |
| 80 | "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", |
| 81 | ): [ |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 82 | "@raze__socket2__0_5_4//:socket2", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 83 | ], |
| 84 | "//conditions:default": [], |
| 85 | }) + selects.with_or({ |
| 86 | ( |
| 87 | "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", |
| 88 | ): [ |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 89 | "@raze__libc__0_2_148//:libc", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 90 | ], |
| 91 | "//conditions:default": [], |
| 92 | }), |
| 93 | ) |
| 94 | |
| 95 | # Unsupported target "_require_full" with type "test" omitted |
| 96 | |
| 97 | # Unsupported target "async_send_sync" with type "test" omitted |
| 98 | |
| 99 | # Unsupported target "buffered" with type "test" omitted |
| 100 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 101 | # Unsupported target "dump" with type "test" omitted |
| 102 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 103 | # Unsupported target "fs" with type "test" omitted |
| 104 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 105 | # Unsupported target "fs_canonicalize_dir" with type "test" omitted |
| 106 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 107 | # Unsupported target "fs_copy" with type "test" omitted |
| 108 | |
| 109 | # Unsupported target "fs_dir" with type "test" omitted |
| 110 | |
| 111 | # Unsupported target "fs_file" with type "test" omitted |
| 112 | |
| 113 | # Unsupported target "fs_link" with type "test" omitted |
| 114 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 115 | # Unsupported target "fs_open_options" with type "test" omitted |
| 116 | |
| 117 | # Unsupported target "fs_open_options_windows" with type "test" omitted |
| 118 | |
| 119 | # Unsupported target "fs_remove_dir_all" with type "test" omitted |
| 120 | |
| 121 | # Unsupported target "fs_remove_file" with type "test" omitted |
| 122 | |
| 123 | # Unsupported target "fs_rename" with type "test" omitted |
| 124 | |
| 125 | # Unsupported target "fs_symlink_dir_windows" with type "test" omitted |
| 126 | |
| 127 | # Unsupported target "fs_symlink_file_windows" with type "test" omitted |
| 128 | |
| 129 | # Unsupported target "fs_try_exists" with type "test" omitted |
| 130 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 131 | # Unsupported target "io_async_fd" with type "test" omitted |
| 132 | |
| 133 | # Unsupported target "io_async_read" with type "test" omitted |
| 134 | |
| 135 | # Unsupported target "io_buf_reader" with type "test" omitted |
| 136 | |
| 137 | # Unsupported target "io_buf_writer" with type "test" omitted |
| 138 | |
| 139 | # Unsupported target "io_chain" with type "test" omitted |
| 140 | |
| 141 | # Unsupported target "io_copy" with type "test" omitted |
| 142 | |
| 143 | # Unsupported target "io_copy_bidirectional" with type "test" omitted |
| 144 | |
| 145 | # Unsupported target "io_driver" with type "test" omitted |
| 146 | |
| 147 | # Unsupported target "io_driver_drop" with type "test" omitted |
| 148 | |
| 149 | # Unsupported target "io_fill_buf" with type "test" omitted |
| 150 | |
| 151 | # Unsupported target "io_lines" with type "test" omitted |
| 152 | |
| 153 | # Unsupported target "io_mem_stream" with type "test" omitted |
| 154 | |
| 155 | # Unsupported target "io_panic" with type "test" omitted |
| 156 | |
| 157 | # Unsupported target "io_poll_aio" with type "test" omitted |
| 158 | |
| 159 | # Unsupported target "io_read" with type "test" omitted |
| 160 | |
| 161 | # Unsupported target "io_read_buf" with type "test" omitted |
| 162 | |
| 163 | # Unsupported target "io_read_exact" with type "test" omitted |
| 164 | |
| 165 | # Unsupported target "io_read_line" with type "test" omitted |
| 166 | |
| 167 | # Unsupported target "io_read_to_end" with type "test" omitted |
| 168 | |
| 169 | # Unsupported target "io_read_to_string" with type "test" omitted |
| 170 | |
| 171 | # Unsupported target "io_read_until" with type "test" omitted |
| 172 | |
| 173 | # Unsupported target "io_split" with type "test" omitted |
| 174 | |
| 175 | # Unsupported target "io_take" with type "test" omitted |
| 176 | |
| 177 | # Unsupported target "io_util_empty" with type "test" omitted |
| 178 | |
| 179 | # Unsupported target "io_write" with type "test" omitted |
| 180 | |
| 181 | # Unsupported target "io_write_all" with type "test" omitted |
| 182 | |
| 183 | # Unsupported target "io_write_all_buf" with type "test" omitted |
| 184 | |
| 185 | # Unsupported target "io_write_buf" with type "test" omitted |
| 186 | |
| 187 | # Unsupported target "io_write_int" with type "test" omitted |
| 188 | |
| 189 | # Unsupported target "join_handle_panic" with type "test" omitted |
| 190 | |
| 191 | # Unsupported target "macros_join" with type "test" omitted |
| 192 | |
| 193 | # Unsupported target "macros_pin" with type "test" omitted |
| 194 | |
| 195 | # Unsupported target "macros_rename_test" with type "test" omitted |
| 196 | |
| 197 | # Unsupported target "macros_select" with type "test" omitted |
| 198 | |
| 199 | # Unsupported target "macros_test" with type "test" omitted |
| 200 | |
| 201 | # Unsupported target "macros_try_join" with type "test" omitted |
| 202 | |
| 203 | # Unsupported target "net_bind_resource" with type "test" omitted |
| 204 | |
| 205 | # Unsupported target "net_lookup_host" with type "test" omitted |
| 206 | |
| 207 | # Unsupported target "net_named_pipe" with type "test" omitted |
| 208 | |
| 209 | # Unsupported target "net_panic" with type "test" omitted |
| 210 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 211 | # Unsupported target "net_unix_pipe" with type "test" omitted |
| 212 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 213 | # Unsupported target "no_rt" with type "test" omitted |
| 214 | |
| 215 | # Unsupported target "process_arg0" with type "test" omitted |
| 216 | |
| 217 | # Unsupported target "process_issue_2174" with type "test" omitted |
| 218 | |
| 219 | # Unsupported target "process_issue_42" with type "test" omitted |
| 220 | |
| 221 | # Unsupported target "process_kill_on_drop" with type "test" omitted |
| 222 | |
| 223 | # Unsupported target "process_raw_handle" with type "test" omitted |
| 224 | |
| 225 | # Unsupported target "process_smoke" with type "test" omitted |
| 226 | |
| 227 | # Unsupported target "rt_basic" with type "test" omitted |
| 228 | |
| 229 | # Unsupported target "rt_common" with type "test" omitted |
| 230 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 231 | # Unsupported target "rt_handle" with type "test" omitted |
| 232 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 233 | # Unsupported target "rt_handle_block_on" with type "test" omitted |
| 234 | |
| 235 | # Unsupported target "rt_metrics" with type "test" omitted |
| 236 | |
| 237 | # Unsupported target "rt_panic" with type "test" omitted |
| 238 | |
| 239 | # Unsupported target "rt_threaded" with type "test" omitted |
| 240 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 241 | # Unsupported target "rt_threaded_alt" with type "test" omitted |
| 242 | |
| 243 | # Unsupported target "rt_time_start_paused" with type "test" omitted |
| 244 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 245 | # Unsupported target "signal_ctrl_c" with type "test" omitted |
| 246 | |
| 247 | # Unsupported target "signal_drop_recv" with type "test" omitted |
| 248 | |
| 249 | # Unsupported target "signal_drop_rt" with type "test" omitted |
| 250 | |
| 251 | # Unsupported target "signal_drop_signal" with type "test" omitted |
| 252 | |
| 253 | # Unsupported target "signal_multi_rt" with type "test" omitted |
| 254 | |
| 255 | # Unsupported target "signal_no_rt" with type "test" omitted |
| 256 | |
| 257 | # Unsupported target "signal_notify_both" with type "test" omitted |
| 258 | |
| 259 | # Unsupported target "signal_panic" with type "test" omitted |
| 260 | |
| 261 | # Unsupported target "signal_twice" with type "test" omitted |
| 262 | |
| 263 | # Unsupported target "signal_usr1" with type "test" omitted |
| 264 | |
| 265 | # Unsupported target "sync_barrier" with type "test" omitted |
| 266 | |
| 267 | # Unsupported target "sync_broadcast" with type "test" omitted |
| 268 | |
| 269 | # Unsupported target "sync_errors" with type "test" omitted |
| 270 | |
| 271 | # Unsupported target "sync_mpsc" with type "test" omitted |
| 272 | |
| 273 | # Unsupported target "sync_mpsc_weak" with type "test" omitted |
| 274 | |
| 275 | # Unsupported target "sync_mutex" with type "test" omitted |
| 276 | |
| 277 | # Unsupported target "sync_mutex_owned" with type "test" omitted |
| 278 | |
| 279 | # Unsupported target "sync_notify" with type "test" omitted |
| 280 | |
| 281 | # Unsupported target "sync_once_cell" with type "test" omitted |
| 282 | |
| 283 | # Unsupported target "sync_oneshot" with type "test" omitted |
| 284 | |
| 285 | # Unsupported target "sync_panic" with type "test" omitted |
| 286 | |
| 287 | # Unsupported target "sync_rwlock" with type "test" omitted |
| 288 | |
| 289 | # Unsupported target "sync_semaphore" with type "test" omitted |
| 290 | |
| 291 | # Unsupported target "sync_semaphore_owned" with type "test" omitted |
| 292 | |
| 293 | # Unsupported target "sync_watch" with type "test" omitted |
| 294 | |
| 295 | # Unsupported target "task_abort" with type "test" omitted |
| 296 | |
| 297 | # Unsupported target "task_blocking" with type "test" omitted |
| 298 | |
| 299 | # Unsupported target "task_builder" with type "test" omitted |
| 300 | |
| 301 | # Unsupported target "task_id" with type "test" omitted |
| 302 | |
| 303 | # Unsupported target "task_join_set" with type "test" omitted |
| 304 | |
| 305 | # Unsupported target "task_local" with type "test" omitted |
| 306 | |
| 307 | # Unsupported target "task_local_set" with type "test" omitted |
| 308 | |
| 309 | # Unsupported target "task_panic" with type "test" omitted |
| 310 | |
Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +0200 | [diff] [blame^] | 311 | # Unsupported target "task_yield_now" with type "test" omitted |
| 312 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame] | 313 | # Unsupported target "tcp_accept" with type "test" omitted |
| 314 | |
| 315 | # Unsupported target "tcp_connect" with type "test" omitted |
| 316 | |
| 317 | # Unsupported target "tcp_echo" with type "test" omitted |
| 318 | |
| 319 | # Unsupported target "tcp_into_split" with type "test" omitted |
| 320 | |
| 321 | # Unsupported target "tcp_into_std" with type "test" omitted |
| 322 | |
| 323 | # Unsupported target "tcp_peek" with type "test" omitted |
| 324 | |
| 325 | # Unsupported target "tcp_shutdown" with type "test" omitted |
| 326 | |
| 327 | # Unsupported target "tcp_socket" with type "test" omitted |
| 328 | |
| 329 | # Unsupported target "tcp_split" with type "test" omitted |
| 330 | |
| 331 | # Unsupported target "tcp_stream" with type "test" omitted |
| 332 | |
| 333 | # Unsupported target "test_clock" with type "test" omitted |
| 334 | |
| 335 | # Unsupported target "time_interval" with type "test" omitted |
| 336 | |
| 337 | # Unsupported target "time_panic" with type "test" omitted |
| 338 | |
| 339 | # Unsupported target "time_pause" with type "test" omitted |
| 340 | |
| 341 | # Unsupported target "time_rt" with type "test" omitted |
| 342 | |
| 343 | # Unsupported target "time_sleep" with type "test" omitted |
| 344 | |
| 345 | # Unsupported target "time_timeout" with type "test" omitted |
| 346 | |
| 347 | # Unsupported target "udp" with type "test" omitted |
| 348 | |
| 349 | # Unsupported target "uds_cred" with type "test" omitted |
| 350 | |
| 351 | # Unsupported target "uds_datagram" with type "test" omitted |
| 352 | |
| 353 | # Unsupported target "uds_split" with type "test" omitted |
| 354 | |
| 355 | # Unsupported target "uds_stream" with type "test" omitted |
| 356 | |
| 357 | # Unsupported target "unwindsafe" with type "test" omitted |