anki/cargo/remote/BUILD.cssparser-macros-0.6.0.bazel
2021-12-03 20:35:53 +10:00

56 lines
1.1 KiB
Plaintext
Vendored

"""
@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",
"rust_binary",
"rust_library",
"rust_proc_macro",
"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([
"reciprocal", # MPL-2.0 from expression "MPL-2.0"
])
# Generated Targets
rust_proc_macro(
name = "cssparser_macros",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "lib.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.6.0",
# buildifier: leave-alone
deps = [
"@raze__quote__1_0_10//:quote",
"@raze__syn__1_0_82//:syn",
],
)