Lorenz Brun | d141d18 | 2023-10-02 15:07:01 +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: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 OR Apache-2.0" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
| 33 | |
| 34 | # Unsupported target "crossbeam" with type "bench" omitted |
| 35 | |
| 36 | # Unsupported target "fibonacci" with type "example" omitted |
| 37 | |
| 38 | # Unsupported target "matching" with type "example" omitted |
| 39 | |
| 40 | # Unsupported target "stopwatch" with type "example" omitted |
| 41 | |
| 42 | rust_library( |
| 43 | name = "crossbeam_channel", |
| 44 | srcs = glob(["**/*.rs"]), |
| 45 | crate_features = [ |
| 46 | "crossbeam-utils", |
| 47 | "default", |
| 48 | "std", |
| 49 | ], |
| 50 | crate_root = "src/lib.rs", |
| 51 | data = [], |
| 52 | edition = "2018", |
| 53 | rustc_flags = [ |
| 54 | "--cap-lints=allow", |
| 55 | ], |
| 56 | tags = [ |
| 57 | "cargo-raze", |
| 58 | "crate-name=crossbeam-channel", |
| 59 | "manual", |
| 60 | ], |
| 61 | version = "0.5.8", |
| 62 | # buildifier: leave-alone |
| 63 | deps = [ |
| 64 | "@raze__cfg_if__1_0_0//:cfg_if", |
| 65 | "@raze__crossbeam_utils__0_8_16//:crossbeam_utils", |
| 66 | ], |
| 67 | ) |
| 68 | |
| 69 | # Unsupported target "after" with type "test" omitted |
| 70 | |
| 71 | # Unsupported target "array" with type "test" omitted |
| 72 | |
| 73 | # Unsupported target "golang" with type "test" omitted |
| 74 | |
| 75 | # Unsupported target "iter" with type "test" omitted |
| 76 | |
| 77 | # Unsupported target "list" with type "test" omitted |
| 78 | |
| 79 | # Unsupported target "mpsc" with type "test" omitted |
| 80 | |
| 81 | # Unsupported target "never" with type "test" omitted |
| 82 | |
| 83 | # Unsupported target "ready" with type "test" omitted |
| 84 | |
| 85 | # Unsupported target "same_channel" with type "test" omitted |
| 86 | |
| 87 | # Unsupported target "select" with type "test" omitted |
| 88 | |
| 89 | # Unsupported target "select_macro" with type "test" omitted |
| 90 | |
| 91 | # Unsupported target "thread_locals" with type "test" omitted |
| 92 | |
| 93 | # Unsupported target "tick" with type "test" omitted |
| 94 | |
| 95 | # Unsupported target "zero" with type "test" omitted |