anki/cargo/remote/BUILD.strum_macros-0.20.1.bazel

58 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-03-07 10:08:03 +01: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")
2021-03-07 10:08:03 +01:00
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
2021-03-07 10:08:03 +01:00
"rust_binary",
"rust_library",
"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"
])
# Generated Targets
rust_library(
name = "strum_macros",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.20.1",
# buildifier: leave-alone
deps = [
2021-06-16 08:10:57 +02:00
"@raze__heck__0_3_3//:heck",
"@raze__proc_macro2__1_0_27//:proc_macro2",
2021-03-07 10:08:03 +01:00
"@raze__quote__1_0_9//:quote",
2021-06-16 08:10:57 +02:00
"@raze__syn__1_0_73//:syn",
2021-03-07 10:08:03 +01:00
],
)