hyperboria/rules/rust/remote/BUILD.tantivy-fst-0.3.0.bazel

61 lines
1.3 KiB
Plaintext

"""
@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:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//rules/rust", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
])
# Generated Targets
# Unsupported target "build" with type "bench" omitted
# Unsupported target "search" with type "bench" omitted
rust_library(
name = "tantivy_fst",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.3.0",
# buildifier: leave-alone
deps = [
"@raze__byteorder__1_4_3//:byteorder",
"@raze__regex_syntax__0_4_2//:regex_syntax",
"@raze__utf8_ranges__1_0_4//:utf8_ranges",
],
)