hyperboria/rules/rust/remote/BUILD.crossbeam-0.7.3.bazel
the-superpirate 8472f27ec5 No description
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
2021-01-04 18:12:22 +03:00

67 lines
1.5 KiB
Plaintext

"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//rules/rust", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "crossbeam",
srcs = glob(["**/*.rs"]),
crate_features = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-queue",
"default",
"std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.7.3",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__0_1_10//:cfg_if",
"@raze__crossbeam_channel__0_4_4//:crossbeam_channel",
"@raze__crossbeam_deque__0_7_3//:crossbeam_deque",
"@raze__crossbeam_epoch__0_8_2//:crossbeam_epoch",
"@raze__crossbeam_queue__0_2_3//:crossbeam_queue",
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
],
)
# Unsupported target "subcrates" with type "test" omitted