blob: 6de3d59f6124985098c816f436b90659c4c276df [file] [log] [blame]
Serge Bazanskicbf1fa92021-07-02 17:28:50 +02001"""
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:rust.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_test",
17)
18
19package(default_visibility = [
20 # Public for visibility by "@raze__crate__version//" targets.
21 #
22 # Prefer access through "//third_party/rust/cargo", which limits external
23 # visibility to explicit Cargo.toml dependencies.
24 "//visibility:public",
25])
26
27licenses([
28 "notice", # MIT from expression "MIT"
29])
30
31# Generated Targets
32
33# Unsupported target "bench" with type "bench" omitted
34
35rust_binary(
36 # Prefix bin name to disambiguate from (probable) collision with lib name
37 # N.B.: The exact form of this is subject to change.
38 name = "cargo_bin_handlebars_cli",
39 srcs = glob(["**/*.rs"]),
40 aliases = {
41 },
42 crate_features = [
43 "default",
44 ],
45 crate_root = "src/cli.rs",
46 data = [] + [
47 "src/grammar.pest",
48 ],
49 edition = "2018",
50 proc_macro_deps = [
51 "@raze__pest_derive__2_1_0//:pest_derive",
52 ],
53 rustc_flags = [
54 "--cap-lints=allow",
55 ],
56 tags = [
57 "cargo-raze",
58 "manual",
59 ],
60 version = "4.0.1",
61 # buildifier: leave-alone
62 deps = [
63 ":handlebars",
64 "@raze__log__0_4_14//:log",
65 "@raze__pest__2_1_3//:pest",
66 "@raze__quick_error__2_0_1//:quick_error",
67 "@raze__serde__1_0_126//:serde",
68 "@raze__serde_json__1_0_64//:serde_json",
69 ] + selects.with_or({
70 # cfg(unix)
71 (
72 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
73 ): [
74 ],
75 "//conditions:default": [],
76 }),
77)
78
79# Unsupported target "decorator" with type "example" omitted
80
81# Unsupported target "dev_mode" with type "example" omitted
82
83# Unsupported target "error" with type "example" omitted
84
85# Unsupported target "partials" with type "example" omitted
86
87# Unsupported target "quick" with type "example" omitted
88
89# Unsupported target "render" with type "example" omitted
90
91# Unsupported target "render_file" with type "example" omitted
92
93# Unsupported target "script" with type "example" omitted
94
95rust_library(
96 name = "handlebars",
97 srcs = glob(["**/*.rs"]),
98 aliases = {
99 },
100 crate_features = [
101 "default",
102 ],
103 crate_root = "src/lib.rs",
104 crate_type = "lib",
105 data = [] + [
106 "src/grammar.pest",
107 ],
108 edition = "2018",
109 proc_macro_deps = [
110 "@raze__pest_derive__2_1_0//:pest_derive",
111 ],
112 rustc_flags = [
113 "--cap-lints=allow",
114 ],
115 tags = [
116 "cargo-raze",
117 "manual",
118 ],
119 version = "4.0.1",
120 # buildifier: leave-alone
121 deps = [
122 "@raze__log__0_4_14//:log",
123 "@raze__pest__2_1_3//:pest",
124 "@raze__quick_error__2_0_1//:quick_error",
125 "@raze__serde__1_0_126//:serde",
126 "@raze__serde_json__1_0_64//:serde_json",
127 ] + selects.with_or({
128 # cfg(unix)
129 (
130 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
131 ): [
132 ],
133 "//conditions:default": [],
134 }),
135)
136
137# Unsupported target "block_context" with type "test" omitted
138
139# Unsupported target "data_helper" with type "test" omitted
140
141# Unsupported target "escape" with type "test" omitted
142
143# Unsupported target "helper_function_lifetime" with type "test" omitted
144
145# Unsupported target "helper_macro" with type "test" omitted
146
147# Unsupported target "helper_with_space" with type "test" omitted
148
149# Unsupported target "root_var" with type "test" omitted
150
151# Unsupported target "subexpression" with type "test" omitted
152
153# Unsupported target "template_names" with type "test" omitted