2020-11-01 05:26:58 +01:00
|
|
|
"""
|
|
|
|
@generated
|
|
|
|
cargo-raze crate build file.
|
|
|
|
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
|
|
"""
|
|
|
|
|
2021-03-27 09:39:02 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load(
|
2021-03-27 09:39:02 +01:00
|
|
|
"@rules_rust//rust:rust.bzl",
|
2020-11-01 05:26:58 +01:00
|
|
|
"rust_binary",
|
|
|
|
"rust_library",
|
|
|
|
"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", # Apache-2.0 from expression "Apache-2.0"
|
|
|
|
])
|
|
|
|
|
2020-11-10 00:47:24 +01:00
|
|
|
# Generated Targets
|
|
|
|
|
|
|
|
# Unsupported target "varint" with type "bench" omitted
|
2020-11-01 05:26:58 +01:00
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "prost",
|
|
|
|
srcs = glob(["**/*.rs"]),
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_features = [
|
|
|
|
"default",
|
|
|
|
"prost-derive",
|
|
|
|
"std",
|
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
crate_root = "src/lib.rs",
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_type = "lib",
|
2020-12-15 11:28:10 +01:00
|
|
|
data = [],
|
2020-11-01 05:26:58 +01:00
|
|
|
edition = "2018",
|
|
|
|
proc_macro_deps = [
|
2021-10-02 12:42:03 +02:00
|
|
|
"@raze__prost_derive__0_8_0//:prost_derive",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
|
|
|
"manual",
|
|
|
|
],
|
2021-10-02 12:42:03 +02:00
|
|
|
version = "0.8.0",
|
2020-11-10 00:47:24 +01:00
|
|
|
# buildifier: leave-alone
|
|
|
|
deps = [
|
2021-10-02 12:42:03 +02:00
|
|
|
"@raze__bytes__1_1_0//:bytes",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
)
|