Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [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:rust.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_test", |
| 17 | ) |
| 18 | |
| 19 | package(default_visibility = [ |
| 20 | # Public for visibility by "@raze__crate__version//" targets. |
| 21 | # |
| 22 | # Prefer access through "//third_party/rust/cargo", which limits external |
| 23 | # visibility to explicit Cargo.toml dependencies. |
| 24 | "//visibility:public", |
| 25 | ]) |
| 26 | |
| 27 | licenses([ |
| 28 | "notice", # MIT from expression "MIT" |
| 29 | ]) |
| 30 | |
| 31 | # Generated Targets |
| 32 | |
| 33 | rust_library( |
| 34 | name = "tokio", |
| 35 | srcs = glob(["**/*.rs"]), |
| 36 | aliases = { |
| 37 | }, |
| 38 | crate_features = [ |
| 39 | "blocking", |
| 40 | "default", |
| 41 | "fnv", |
| 42 | "fs", |
| 43 | "futures-core", |
| 44 | "io-driver", |
| 45 | "io-util", |
| 46 | "iovec", |
| 47 | "lazy_static", |
| 48 | "macros", |
| 49 | "memchr", |
| 50 | "mio", |
| 51 | "rt-core", |
| 52 | "slab", |
| 53 | "stream", |
| 54 | "sync", |
| 55 | "tcp", |
| 56 | "time", |
| 57 | "tokio-macros", |
| 58 | ], |
| 59 | crate_root = "src/lib.rs", |
| 60 | crate_type = "lib", |
| 61 | data = [], |
| 62 | edition = "2018", |
| 63 | proc_macro_deps = [ |
| 64 | "@raze__tokio_macros__0_2_6//:tokio_macros", |
| 65 | ], |
| 66 | rustc_flags = [ |
| 67 | "--cap-lints=allow", |
| 68 | ], |
| 69 | tags = [ |
| 70 | "cargo-raze", |
| 71 | "manual", |
| 72 | ], |
| 73 | version = "0.2.25", |
| 74 | # buildifier: leave-alone |
| 75 | deps = [ |
| 76 | "@raze__bytes__0_5_6//:bytes", |
| 77 | "@raze__fnv__1_0_7//:fnv", |
| 78 | "@raze__futures_core__0_3_15//:futures_core", |
| 79 | "@raze__iovec__0_1_4//:iovec", |
| 80 | "@raze__lazy_static__1_4_0//:lazy_static", |
| 81 | "@raze__memchr__2_4_0//:memchr", |
| 82 | "@raze__mio__0_6_23//:mio", |
| 83 | "@raze__pin_project_lite__0_1_12//:pin_project_lite", |
| 84 | "@raze__slab__0_4_3//:slab", |
| 85 | ] + selects.with_or({ |
| 86 | # cfg(unix) |
| 87 | ( |
| 88 | "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", |
| 89 | ): [ |
| 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 | |
| 101 | # Unsupported target "fs" with type "test" omitted |
| 102 | |
| 103 | # Unsupported target "fs_copy" with type "test" omitted |
| 104 | |
| 105 | # Unsupported target "fs_dir" with type "test" omitted |
| 106 | |
| 107 | # Unsupported target "fs_file" with type "test" omitted |
| 108 | |
| 109 | # Unsupported target "fs_file_mocked" with type "test" omitted |
| 110 | |
| 111 | # Unsupported target "fs_link" with type "test" omitted |
| 112 | |
| 113 | # Unsupported target "io_async_read" with type "test" omitted |
| 114 | |
| 115 | # Unsupported target "io_chain" with type "test" omitted |
| 116 | |
| 117 | # Unsupported target "io_copy" with type "test" omitted |
| 118 | |
| 119 | # Unsupported target "io_driver" with type "test" omitted |
| 120 | |
| 121 | # Unsupported target "io_driver_drop" with type "test" omitted |
| 122 | |
| 123 | # Unsupported target "io_lines" with type "test" omitted |
| 124 | |
| 125 | # Unsupported target "io_mem_stream" with type "test" omitted |
| 126 | |
| 127 | # Unsupported target "io_read" with type "test" omitted |
| 128 | |
| 129 | # Unsupported target "io_read_exact" with type "test" omitted |
| 130 | |
| 131 | # Unsupported target "io_read_line" with type "test" omitted |
| 132 | |
| 133 | # Unsupported target "io_read_to_end" with type "test" omitted |
| 134 | |
| 135 | # Unsupported target "io_read_to_string" with type "test" omitted |
| 136 | |
| 137 | # Unsupported target "io_read_until" with type "test" omitted |
| 138 | |
| 139 | # Unsupported target "io_reader_stream" with type "test" omitted |
| 140 | |
| 141 | # Unsupported target "io_split" with type "test" omitted |
| 142 | |
| 143 | # Unsupported target "io_take" with type "test" omitted |
| 144 | |
| 145 | # Unsupported target "io_write" with type "test" omitted |
| 146 | |
| 147 | # Unsupported target "io_write_all" with type "test" omitted |
| 148 | |
| 149 | # Unsupported target "io_write_int" with type "test" omitted |
| 150 | |
| 151 | # Unsupported target "macros_join" with type "test" omitted |
| 152 | |
| 153 | # Unsupported target "macros_pin" with type "test" omitted |
| 154 | |
| 155 | # Unsupported target "macros_select" with type "test" omitted |
| 156 | |
| 157 | # Unsupported target "macros_test" with type "test" omitted |
| 158 | |
| 159 | # Unsupported target "macros_try_join" with type "test" omitted |
| 160 | |
| 161 | # Unsupported target "net_bind_resource" with type "test" omitted |
| 162 | |
| 163 | # Unsupported target "net_lookup_host" with type "test" omitted |
| 164 | |
| 165 | # Unsupported target "no_rt" with type "test" omitted |
| 166 | |
| 167 | # Unsupported target "process_issue_2174" with type "test" omitted |
| 168 | |
| 169 | # Unsupported target "process_issue_42" with type "test" omitted |
| 170 | |
| 171 | # Unsupported target "process_kill_on_drop" with type "test" omitted |
| 172 | |
| 173 | # Unsupported target "process_smoke" with type "test" omitted |
| 174 | |
| 175 | # Unsupported target "rt_basic" with type "test" omitted |
| 176 | |
| 177 | # Unsupported target "rt_common" with type "test" omitted |
| 178 | |
| 179 | # Unsupported target "rt_threaded" with type "test" omitted |
| 180 | |
| 181 | # Unsupported target "signal_ctrl_c" with type "test" omitted |
| 182 | |
| 183 | # Unsupported target "signal_drop_recv" with type "test" omitted |
| 184 | |
| 185 | # Unsupported target "signal_drop_rt" with type "test" omitted |
| 186 | |
| 187 | # Unsupported target "signal_drop_signal" with type "test" omitted |
| 188 | |
| 189 | # Unsupported target "signal_multi_rt" with type "test" omitted |
| 190 | |
| 191 | # Unsupported target "signal_no_rt" with type "test" omitted |
| 192 | |
| 193 | # Unsupported target "signal_notify_both" with type "test" omitted |
| 194 | |
| 195 | # Unsupported target "signal_twice" with type "test" omitted |
| 196 | |
| 197 | # Unsupported target "signal_usr1" with type "test" omitted |
| 198 | |
| 199 | # Unsupported target "stream_chain" with type "test" omitted |
| 200 | |
| 201 | # Unsupported target "stream_collect" with type "test" omitted |
| 202 | |
| 203 | # Unsupported target "stream_empty" with type "test" omitted |
| 204 | |
| 205 | # Unsupported target "stream_fuse" with type "test" omitted |
| 206 | |
| 207 | # Unsupported target "stream_iter" with type "test" omitted |
| 208 | |
| 209 | # Unsupported target "stream_merge" with type "test" omitted |
| 210 | |
| 211 | # Unsupported target "stream_once" with type "test" omitted |
| 212 | |
| 213 | # Unsupported target "stream_pending" with type "test" omitted |
| 214 | |
| 215 | # Unsupported target "stream_reader" with type "test" omitted |
| 216 | |
| 217 | # Unsupported target "stream_stream_map" with type "test" omitted |
| 218 | |
| 219 | # Unsupported target "stream_timeout" with type "test" omitted |
| 220 | |
| 221 | # Unsupported target "sync_barrier" with type "test" omitted |
| 222 | |
| 223 | # Unsupported target "sync_broadcast" with type "test" omitted |
| 224 | |
| 225 | # Unsupported target "sync_cancellation_token" with type "test" omitted |
| 226 | |
| 227 | # Unsupported target "sync_errors" with type "test" omitted |
| 228 | |
| 229 | # Unsupported target "sync_mpsc" with type "test" omitted |
| 230 | |
| 231 | # Unsupported target "sync_mutex" with type "test" omitted |
| 232 | |
| 233 | # Unsupported target "sync_mutex_owned" with type "test" omitted |
| 234 | |
| 235 | # Unsupported target "sync_notify" with type "test" omitted |
| 236 | |
| 237 | # Unsupported target "sync_oneshot" with type "test" omitted |
| 238 | |
| 239 | # Unsupported target "sync_rwlock" with type "test" omitted |
| 240 | |
| 241 | # Unsupported target "sync_semaphore" with type "test" omitted |
| 242 | |
| 243 | # Unsupported target "sync_semaphore_owned" with type "test" omitted |
| 244 | |
| 245 | # Unsupported target "sync_watch" with type "test" omitted |
| 246 | |
| 247 | # Unsupported target "task_blocking" with type "test" omitted |
| 248 | |
| 249 | # Unsupported target "task_local" with type "test" omitted |
| 250 | |
| 251 | # Unsupported target "task_local_set" with type "test" omitted |
| 252 | |
| 253 | # Unsupported target "tcp_accept" with type "test" omitted |
| 254 | |
| 255 | # Unsupported target "tcp_connect" with type "test" omitted |
| 256 | |
| 257 | # Unsupported target "tcp_echo" with type "test" omitted |
| 258 | |
| 259 | # Unsupported target "tcp_into_split" with type "test" omitted |
| 260 | |
| 261 | # Unsupported target "tcp_peek" with type "test" omitted |
| 262 | |
| 263 | # Unsupported target "tcp_shutdown" with type "test" omitted |
| 264 | |
| 265 | # Unsupported target "tcp_split" with type "test" omitted |
| 266 | |
| 267 | # Unsupported target "test_clock" with type "test" omitted |
| 268 | |
| 269 | # Unsupported target "time_delay" with type "test" omitted |
| 270 | |
| 271 | # Unsupported target "time_delay_queue" with type "test" omitted |
| 272 | |
| 273 | # Unsupported target "time_interval" with type "test" omitted |
| 274 | |
| 275 | # Unsupported target "time_rt" with type "test" omitted |
| 276 | |
| 277 | # Unsupported target "time_throttle" with type "test" omitted |
| 278 | |
| 279 | # Unsupported target "time_timeout" with type "test" omitted |
| 280 | |
| 281 | # Unsupported target "udp" with type "test" omitted |
| 282 | |
| 283 | # Unsupported target "uds_cred" with type "test" omitted |
| 284 | |
| 285 | # Unsupported target "uds_datagram" with type "test" omitted |
| 286 | |
| 287 | # Unsupported target "uds_split" with type "test" omitted |
| 288 | |
| 289 | # Unsupported target "uds_stream" with type "test" omitted |