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 |
| 33 | |
| 34 | rust_library( |
| 35 | name = "tokio_stream", |
| 36 | srcs = glob(["**/*.rs"]), |
| 37 | crate_features = [ |
| 38 | "default", |
| 39 | "time", |
| 40 | ], |
| 41 | crate_root = "src/lib.rs", |
| 42 | data = [], |
| 43 | edition = "2018", |
| 44 | rustc_flags = [ |
| 45 | "--cap-lints=allow", |
| 46 | ], |
| 47 | tags = [ |
| 48 | "cargo-raze", |
| 49 | "crate-name=tokio-stream", |
| 50 | "manual", |
| 51 | ], |
| 52 | version = "0.1.11", |
| 53 | # buildifier: leave-alone |
| 54 | deps = [ |
| 55 | "@raze__futures_core__0_3_25//:futures_core", |
| 56 | "@raze__pin_project_lite__0_2_9//:pin_project_lite", |
| 57 | "@raze__tokio__1_24_1//:tokio", |
| 58 | ], |
| 59 | ) |
| 60 | |
| 61 | # Unsupported target "async_send_sync" with type "test" omitted |
| 62 | |
| 63 | # Unsupported target "chunks_timeout" with type "test" omitted |
| 64 | |
| 65 | # Unsupported target "stream_chain" with type "test" omitted |
| 66 | |
| 67 | # Unsupported target "stream_collect" with type "test" omitted |
| 68 | |
| 69 | # Unsupported target "stream_empty" with type "test" omitted |
| 70 | |
| 71 | # Unsupported target "stream_fuse" with type "test" omitted |
| 72 | |
| 73 | # Unsupported target "stream_iter" with type "test" omitted |
| 74 | |
| 75 | # Unsupported target "stream_merge" with type "test" omitted |
| 76 | |
| 77 | # Unsupported target "stream_once" with type "test" omitted |
| 78 | |
| 79 | # Unsupported target "stream_panic" with type "test" omitted |
| 80 | |
| 81 | # Unsupported target "stream_pending" with type "test" omitted |
| 82 | |
| 83 | # Unsupported target "stream_stream_map" with type "test" omitted |
| 84 | |
| 85 | # Unsupported target "stream_timeout" with type "test" omitted |
| 86 | |
| 87 | # Unsupported target "time_throttle" with type "test" omitted |
| 88 | |
| 89 | # Unsupported target "watch" with type "test" omitted |