blob: a3ae2108910081e88e755e51d96bc6ef91ec9b5a [file] [log] [blame]
"""
@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:defs.bzl",
"rust_binary",
"rust_library",
"rust_proc_macro",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//third_party/rust/cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # Apache-2.0 from expression "Apache-2.0"
])
# Generated Targets
rust_proc_macro(
name = "prost_derive",
srcs = glob(["**/*.rs"]),
crate_root = "src/lib.rs",
data = [],
edition = "2021",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=prost-derive",
"manual",
],
version = "0.11.9",
# buildifier: leave-alone
deps = [
"@raze__anyhow__1_0_75//:anyhow",
"@raze__itertools__0_10_5//:itertools",
"@raze__proc_macro2__1_0_67//:proc_macro2",
"@raze__quote__1_0_33//:quote",
"@raze__syn__1_0_109//:syn",
],
)