blob: b58c65a99110c4eb2e09c625e1fad2feef70db42 [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(
Leopold2aa8b182023-01-14 23:31:43 +010013 "@rules_rust//rust:defs.bzl",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020014 "rust_binary",
15 "rust_library",
Leopold2aa8b182023-01-14 23:31:43 +010016 "rust_proc_macro",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020017 "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", # MIT from expression "MIT"
30])
31
32# Generated Targets
33
34# Unsupported target "bench" with type "bench" omitted
35
36rust_binary(
37 # Prefix bin name to disambiguate from (probable) collision with lib name
38 # N.B.: The exact form of this is subject to change.
39 name = "cargo_bin_handlebars_cli",
40 srcs = glob(["**/*.rs"]),
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020041 crate_features = [
42 "default",
43 ],
44 crate_root = "src/cli.rs",
45 data = [] + [
46 "src/grammar.pest",
47 ],
Leopold2aa8b182023-01-14 23:31:43 +010048 edition = "2021",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020049 proc_macro_deps = [
Lorenz Brund141d182023-10-02 15:07:01 +020050 "@raze__pest_derive__2_7_4//:pest_derive",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020051 ],
52 rustc_flags = [
53 "--cap-lints=allow",
54 ],
55 tags = [
56 "cargo-raze",
Leopold2aa8b182023-01-14 23:31:43 +010057 "crate-name=handlebars-cli",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020058 "manual",
59 ],
Lorenz Brund141d182023-10-02 15:07:01 +020060 version = "4.4.0",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020061 # buildifier: leave-alone
62 deps = [
63 ":handlebars",
Lorenz Brund141d182023-10-02 15:07:01 +020064 "@raze__log__0_4_20//:log",
65 "@raze__pest__2_7_4//:pest",
66 "@raze__serde__1_0_188//:serde",
67 "@raze__serde_json__1_0_107//:serde_json",
68 "@raze__thiserror__1_0_49//:thiserror",
Leopold2aa8b182023-01-14 23:31:43 +010069 ],
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020070)
71
72# Unsupported target "decorator" with type "example" omitted
73
74# Unsupported target "dev_mode" with type "example" omitted
75
76# Unsupported target "error" with type "example" omitted
77
Leopold2aa8b182023-01-14 23:31:43 +010078# Unsupported target "helper_macro" with type "example" omitted
79
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020080# Unsupported target "partials" with type "example" omitted
81
82# Unsupported target "quick" with type "example" omitted
83
84# Unsupported target "render" with type "example" omitted
85
86# Unsupported target "render_file" with type "example" omitted
87
88# Unsupported target "script" with type "example" omitted
89
90rust_library(
91 name = "handlebars",
92 srcs = glob(["**/*.rs"]),
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020093 crate_features = [
94 "default",
95 ],
96 crate_root = "src/lib.rs",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020097 data = [] + [
98 "src/grammar.pest",
99 ],
Leopold2aa8b182023-01-14 23:31:43 +0100100 edition = "2021",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200101 proc_macro_deps = [
Lorenz Brund141d182023-10-02 15:07:01 +0200102 "@raze__pest_derive__2_7_4//:pest_derive",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200103 ],
104 rustc_flags = [
105 "--cap-lints=allow",
106 ],
107 tags = [
108 "cargo-raze",
Leopold2aa8b182023-01-14 23:31:43 +0100109 "crate-name=handlebars",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200110 "manual",
111 ],
Lorenz Brund141d182023-10-02 15:07:01 +0200112 version = "4.4.0",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200113 # buildifier: leave-alone
114 deps = [
Lorenz Brund141d182023-10-02 15:07:01 +0200115 "@raze__log__0_4_20//:log",
116 "@raze__pest__2_7_4//:pest",
117 "@raze__serde__1_0_188//:serde",
118 "@raze__serde_json__1_0_107//:serde_json",
119 "@raze__thiserror__1_0_49//:thiserror",
Leopold2aa8b182023-01-14 23:31:43 +0100120 ],
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200121)
122
123# Unsupported target "block_context" with type "test" omitted
124
125# Unsupported target "data_helper" with type "test" omitted
126
Leopold2aa8b182023-01-14 23:31:43 +0100127# Unsupported target "embed" with type "test" omitted
128
Serge Bazanskicbf1fa92021-07-02 17:28:50 +0200129# Unsupported target "escape" with type "test" omitted
130
131# Unsupported target "helper_function_lifetime" with type "test" omitted
132
133# Unsupported target "helper_macro" with type "test" omitted
134
135# Unsupported target "helper_with_space" with type "test" omitted
136
137# Unsupported target "root_var" with type "test" omitted
138
139# Unsupported target "subexpression" with type "test" omitted
140
141# Unsupported target "template_names" with type "test" omitted
Leopold2aa8b182023-01-14 23:31:43 +0100142
143# Unsupported target "whitespace" with type "test" omitted