mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-05 01:12:55 +01:00
63 lines
1.3 KiB
Plaintext
63 lines
1.3 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 AND BSD-2-Clause)"
|
||
|
])
|
||
|
|
||
|
# Generated Targets
|
||
|
|
||
|
rust_library(
|
||
|
name = "crossbeam_queue",
|
||
|
srcs = glob(["**/*.rs"]),
|
||
|
crate_features = [
|
||
|
"default",
|
||
|
"std",
|
||
|
],
|
||
|
crate_root = "src/lib.rs",
|
||
|
crate_type = "lib",
|
||
|
data = [],
|
||
|
edition = "2015",
|
||
|
rustc_flags = [
|
||
|
"--cap-lints=allow",
|
||
|
],
|
||
|
tags = [
|
||
|
"cargo-raze",
|
||
|
"manual",
|
||
|
],
|
||
|
version = "0.2.3",
|
||
|
# buildifier: leave-alone
|
||
|
deps = [
|
||
|
"@raze__cfg_if__0_1_10//:cfg_if",
|
||
|
"@raze__crossbeam_utils__0_7_2//:crossbeam_utils",
|
||
|
"@raze__maybe_uninit__2_0_0//:maybe_uninit",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
# Unsupported target "array_queue" with type "test" omitted
|
||
|
|
||
|
# Unsupported target "seg_queue" with type "test" omitted
|