anki/cargo/remote/BUILD.phf_macros-0.10.0.bazel

63 lines
1.3 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_proc_macro(
2021-06-25 07:35:25 +02:00
name = "phf_macros",
2021-03-07 10:08:03 +01:00
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
2021-06-25 07:35:25 +02:00
proc_macro_deps = [
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
2021-03-07 10:08:03 +01:00
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=phf_macros",
2021-03-07 10:08:03 +01:00
"manual",
],
2021-10-02 12:42:03 +02:00
version = "0.10.0",
2021-03-07 10:08:03 +01:00
# buildifier: leave-alone
deps = [
2021-10-02 12:42:03 +02:00
"@raze__phf_generator__0_10_0//:phf_generator",
"@raze__phf_shared__0_10_0//:phf_shared",
2022-01-15 05:59:43 +01:00
"@raze__proc_macro2__1_0_36//:proc_macro2",
"@raze__quote__1_0_15//:quote",
"@raze__syn__1_0_86//:syn",
2021-03-07 10:08:03 +01:00
],
)