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 OR Apache-2.0" |
| 29 | ]) |
| 30 | |
| 31 | # Generated Targets |
| 32 | |
| 33 | rust_library( |
| 34 | name = "futures", |
| 35 | srcs = glob(["**/*.rs"]), |
| 36 | crate_features = [ |
| 37 | "alloc", |
| 38 | ], |
| 39 | crate_root = "src/lib.rs", |
| 40 | crate_type = "lib", |
| 41 | data = [], |
| 42 | edition = "2018", |
| 43 | rustc_flags = [ |
| 44 | "--cap-lints=allow", |
| 45 | ], |
| 46 | tags = [ |
| 47 | "cargo-raze", |
| 48 | "manual", |
| 49 | ], |
| 50 | version = "0.3.15", |
| 51 | # buildifier: leave-alone |
| 52 | deps = [ |
| 53 | "@raze__futures_channel__0_3_15//:futures_channel", |
| 54 | "@raze__futures_core__0_3_15//:futures_core", |
| 55 | "@raze__futures_io__0_3_15//:futures_io", |
| 56 | "@raze__futures_sink__0_3_15//:futures_sink", |
| 57 | "@raze__futures_task__0_3_15//:futures_task", |
| 58 | "@raze__futures_util__0_3_15//:futures_util", |
| 59 | ], |
| 60 | ) |
| 61 | |
| 62 | # Unsupported target "_require_features" with type "test" omitted |
| 63 | |
| 64 | # Unsupported target "async_await_macros" with type "test" omitted |
| 65 | |
| 66 | # Unsupported target "auto_traits" with type "test" omitted |
| 67 | |
| 68 | # Unsupported target "compat" with type "test" omitted |
| 69 | |
| 70 | # Unsupported target "eager_drop" with type "test" omitted |
| 71 | |
| 72 | # Unsupported target "eventual" with type "test" omitted |
| 73 | |
| 74 | # Unsupported target "future_abortable" with type "test" omitted |
| 75 | |
| 76 | # Unsupported target "future_basic_combinators" with type "test" omitted |
| 77 | |
| 78 | # Unsupported target "future_fuse" with type "test" omitted |
| 79 | |
| 80 | # Unsupported target "future_inspect" with type "test" omitted |
| 81 | |
| 82 | # Unsupported target "future_join_all" with type "test" omitted |
| 83 | |
| 84 | # Unsupported target "future_obj" with type "test" omitted |
| 85 | |
| 86 | # Unsupported target "future_select_all" with type "test" omitted |
| 87 | |
| 88 | # Unsupported target "future_select_ok" with type "test" omitted |
| 89 | |
| 90 | # Unsupported target "future_shared" with type "test" omitted |
| 91 | |
| 92 | # Unsupported target "future_try_flatten_stream" with type "test" omitted |
| 93 | |
| 94 | # Unsupported target "future_try_join_all" with type "test" omitted |
| 95 | |
| 96 | # Unsupported target "io_buf_reader" with type "test" omitted |
| 97 | |
| 98 | # Unsupported target "io_buf_writer" with type "test" omitted |
| 99 | |
| 100 | # Unsupported target "io_cursor" with type "test" omitted |
| 101 | |
| 102 | # Unsupported target "io_lines" with type "test" omitted |
| 103 | |
| 104 | # Unsupported target "io_read" with type "test" omitted |
| 105 | |
| 106 | # Unsupported target "io_read_exact" with type "test" omitted |
| 107 | |
| 108 | # Unsupported target "io_read_line" with type "test" omitted |
| 109 | |
| 110 | # Unsupported target "io_read_to_end" with type "test" omitted |
| 111 | |
| 112 | # Unsupported target "io_read_to_string" with type "test" omitted |
| 113 | |
| 114 | # Unsupported target "io_read_until" with type "test" omitted |
| 115 | |
| 116 | # Unsupported target "io_window" with type "test" omitted |
| 117 | |
| 118 | # Unsupported target "io_write" with type "test" omitted |
| 119 | |
| 120 | # Unsupported target "lock_mutex" with type "test" omitted |
| 121 | |
| 122 | # Unsupported target "macro_comma_support" with type "test" omitted |
| 123 | |
| 124 | # Unsupported target "object_safety" with type "test" omitted |
| 125 | |
| 126 | # Unsupported target "oneshot" with type "test" omitted |
| 127 | |
| 128 | # Unsupported target "ready_queue" with type "test" omitted |
| 129 | |
| 130 | # Unsupported target "recurse" with type "test" omitted |
| 131 | |
| 132 | # Unsupported target "sink" with type "test" omitted |
| 133 | |
| 134 | # Unsupported target "sink_fanout" with type "test" omitted |
| 135 | |
| 136 | # Unsupported target "stream" with type "test" omitted |
| 137 | |
| 138 | # Unsupported target "stream_abortable" with type "test" omitted |
| 139 | |
| 140 | # Unsupported target "stream_buffer_unordered" with type "test" omitted |
| 141 | |
| 142 | # Unsupported target "stream_catch_unwind" with type "test" omitted |
| 143 | |
| 144 | # Unsupported target "stream_futures_ordered" with type "test" omitted |
| 145 | |
| 146 | # Unsupported target "stream_futures_unordered" with type "test" omitted |
| 147 | |
| 148 | # Unsupported target "stream_into_async_read" with type "test" omitted |
| 149 | |
| 150 | # Unsupported target "stream_peekable" with type "test" omitted |
| 151 | |
| 152 | # Unsupported target "stream_select_all" with type "test" omitted |
| 153 | |
| 154 | # Unsupported target "stream_select_next_some" with type "test" omitted |
| 155 | |
| 156 | # Unsupported target "stream_split" with type "test" omitted |
| 157 | |
| 158 | # Unsupported target "stream_try_stream" with type "test" omitted |
| 159 | |
| 160 | # Unsupported target "stream_unfold" with type "test" omitted |
| 161 | |
| 162 | # Unsupported target "task_arc_wake" with type "test" omitted |
| 163 | |
| 164 | # Unsupported target "task_atomic_waker" with type "test" omitted |
| 165 | |
| 166 | # Unsupported target "test_macro" with type "test" omitted |
| 167 | |
| 168 | # Unsupported target "try_join" with type "test" omitted |