anki/cargo/remote/BUILD.servo_arc-0.1.1.bazel

57 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-07-23 11:39:40 +02:00
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:defs.bzl",
2021-07-23 11:39:40 +02:00
"rust_binary",
"rust_library",
"rust_proc_macro",
2021-07-23 11:39:40 +02:00
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", 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 = "servo_arc",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "lib.rs",
data = [],
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=servo_arc",
2021-07-23 11:39:40 +02:00
"manual",
],
version = "0.1.1",
# buildifier: leave-alone
deps = [
"@raze__nodrop__0_1_14//:nodrop",
"@raze__stable_deref_trait__1_2_0//:stable_deref_trait",
],
)