anki/cargo/remote/BUILD.phf-0.10.1.bazel

58 lines
1.1 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(
2021-06-25 07:35:25 +02:00
name = "phf",
2021-03-07 10:08:03 +01:00
srcs = glob(["**/*.rs"]),
crate_features = [
2021-06-25 07:35:25 +02:00
"default",
"std",
2021-03-07 10:08:03 +01:00
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=phf",
2021-03-07 10:08:03 +01:00
"manual",
],
2022-01-15 05:59:43 +01:00
version = "0.10.1",
2021-03-07 10:08:03 +01:00
# buildifier: leave-alone
deps = [
2021-10-02 12:42:03 +02:00
"@raze__phf_shared__0_10_0//:phf_shared",
2021-03-07 10:08:03 +01:00
],
)