blob: 35364d14e301061af332a3859a0d677eb5fe33b9 [file] [log] [blame]
Leopold2aa8b182023-01-14 23:31:43 +01001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
13 "@rules_rust//rust:defs.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_proc_macro",
17 "rust_test",
18)
19
20package(default_visibility = [
21 # Public for visibility by "@raze__crate__version//" targets.
22 #
23 # Prefer access through "//third_party/rust/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "notice", # Apache-2.0 from expression "Apache-2.0"
30])
31
32# Generated Targets
33
Leopold2aa8b182023-01-14 23:31:43 +010034rust_library(
Lorenz Brund141d182023-10-02 15:07:01 +020035 name = "prost_build",
Leopold2aa8b182023-01-14 23:31:43 +010036 srcs = glob(["**/*.rs"]),
37 crate_root = "src/lib.rs",
38 data = [],
Lorenz Brund141d182023-10-02 15:07:01 +020039 edition = "2021",
Leopold2aa8b182023-01-14 23:31:43 +010040 rustc_flags = [
41 "--cap-lints=allow",
42 ],
43 tags = [
44 "cargo-raze",
Lorenz Brund141d182023-10-02 15:07:01 +020045 "crate-name=prost-build",
Leopold2aa8b182023-01-14 23:31:43 +010046 "manual",
47 ],
Lorenz Brund141d182023-10-02 15:07:01 +020048 version = "0.11.9",
Leopold2aa8b182023-01-14 23:31:43 +010049 # buildifier: leave-alone
50 deps = [
Lorenz Brund141d182023-10-02 15:07:01 +020051 "@raze__bytes__1_5_0//:bytes",
52 "@raze__heck__0_4_1//:heck",
53 "@raze__itertools__0_10_5//:itertools",
54 "@raze__lazy_static__1_4_0//:lazy_static",
55 "@raze__log__0_4_20//:log",
56 "@raze__multimap__0_8_3//:multimap",
57 "@raze__petgraph__0_6_4//:petgraph",
58 "@raze__prost__0_11_9//:prost",
59 "@raze__prost_types__0_11_9//:prost_types",
60 "@raze__regex__1_9_6//:regex",
61 "@raze__tempfile__3_8_0//:tempfile",
62 "@raze__which__4_4_2//:which",
Leopold2aa8b182023-01-14 23:31:43 +010063 ],
64)