anki/cargo/remote/BUILD.strum-0.24.1.bazel

62 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:defs.bzl",
2021-03-07 10:08:03 +01:00
"rust_binary",
"rust_library",
"rust_proc_macro",
2021-03-07 10:08:03 +01: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"
])
# Generated Targets
rust_library(
name = "strum",
srcs = glob(["**/*.rs"]),
crate_features = [
2021-11-18 11:54:00 +01:00
"default",
2021-03-07 10:08:03 +01:00
"derive",
2021-11-18 11:54:00 +01:00
"std",
2021-03-07 10:08:03 +01:00
"strum_macros",
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
proc_macro_deps = [
2022-09-24 04:39:21 +02:00
"@raze__strum_macros__0_24_3//:strum_macros",
2021-03-07 10:08:03 +01:00
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=strum",
2021-03-07 10:08:03 +01:00
"manual",
],
2022-09-24 04:39:21 +02:00
version = "0.24.1",
2021-03-07 10:08:03 +01:00
# buildifier: leave-alone
deps = [
],
)