Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 1 | """ |
| 2 | @generated |
| 3 | cargo-raze crate build file. |
| 4 | |
| 5 | DO NOT EDIT! Replaced on runs of cargo-raze |
| 6 | """ |
| 7 | |
| 8 | # buildifier: disable=load |
| 9 | load("@bazel_skylib//lib:selects.bzl", "selects") |
| 10 | |
| 11 | # buildifier: disable=load |
| 12 | load( |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 13 | "@rules_rust//rust:defs.bzl", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 14 | "rust_binary", |
| 15 | "rust_library", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 16 | "rust_proc_macro", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 17 | "rust_test", |
| 18 | ) |
| 19 | |
| 20 | package(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 | |
| 28 | licenses([ |
| 29 | "notice", # MIT from expression "MIT" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
| 33 | |
| 34 | # Unsupported target "bench" with type "bench" omitted |
| 35 | |
| 36 | rust_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 Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 41 | crate_features = [ |
| 42 | "default", |
| 43 | ], |
| 44 | crate_root = "src/cli.rs", |
| 45 | data = [] + [ |
| 46 | "src/grammar.pest", |
| 47 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 48 | edition = "2021", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 49 | proc_macro_deps = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 50 | "@raze__pest_derive__2_5_3//:pest_derive", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 51 | ], |
| 52 | rustc_flags = [ |
| 53 | "--cap-lints=allow", |
| 54 | ], |
| 55 | tags = [ |
| 56 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 57 | "crate-name=handlebars-cli", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 58 | "manual", |
| 59 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 60 | version = "4.3.6", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 61 | # buildifier: leave-alone |
| 62 | deps = [ |
| 63 | ":handlebars", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 64 | "@raze__log__0_4_17//:log", |
| 65 | "@raze__pest__2_5_3//:pest", |
| 66 | "@raze__serde__1_0_152//:serde", |
| 67 | "@raze__serde_json__1_0_91//:serde_json", |
| 68 | "@raze__thiserror__1_0_38//:thiserror", |
| 69 | ], |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 70 | ) |
| 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 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 78 | # Unsupported target "helper_macro" with type "example" omitted |
| 79 | |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 80 | # 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 | |
| 90 | rust_library( |
| 91 | name = "handlebars", |
| 92 | srcs = glob(["**/*.rs"]), |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 93 | crate_features = [ |
| 94 | "default", |
| 95 | ], |
| 96 | crate_root = "src/lib.rs", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 97 | data = [] + [ |
| 98 | "src/grammar.pest", |
| 99 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 100 | edition = "2021", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 101 | proc_macro_deps = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 102 | "@raze__pest_derive__2_5_3//:pest_derive", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 103 | ], |
| 104 | rustc_flags = [ |
| 105 | "--cap-lints=allow", |
| 106 | ], |
| 107 | tags = [ |
| 108 | "cargo-raze", |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 109 | "crate-name=handlebars", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 110 | "manual", |
| 111 | ], |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 112 | version = "4.3.6", |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 113 | # buildifier: leave-alone |
| 114 | deps = [ |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 115 | "@raze__log__0_4_17//:log", |
| 116 | "@raze__pest__2_5_3//:pest", |
| 117 | "@raze__serde__1_0_152//:serde", |
| 118 | "@raze__serde_json__1_0_91//:serde_json", |
| 119 | "@raze__thiserror__1_0_38//:thiserror", |
| 120 | ], |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 121 | ) |
| 122 | |
| 123 | # Unsupported target "block_context" with type "test" omitted |
| 124 | |
| 125 | # Unsupported target "data_helper" with type "test" omitted |
| 126 | |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 127 | # Unsupported target "embed" with type "test" omitted |
| 128 | |
Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [diff] [blame] | 129 | # 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 |
Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [diff] [blame^] | 142 | |
| 143 | # Unsupported target "whitespace" with type "test" omitted |