| """ |
| @generated |
| cargo-raze crate build file. |
| |
| DO NOT EDIT! Replaced on runs of cargo-raze |
| """ |
| |
| # buildifier: disable=load |
| load("@bazel_skylib//lib:selects.bzl", "selects") |
| |
| # buildifier: disable=load |
| load( |
| "@rules_rust//rust:rust.bzl", |
| "rust_binary", |
| "rust_library", |
| "rust_test", |
| ) |
| |
| package(default_visibility = [ |
| # Public for visibility by "@raze__crate__version//" targets. |
| # |
| # Prefer access through "//third_party/rust/cargo", which limits external |
| # visibility to explicit Cargo.toml dependencies. |
| "//visibility:public", |
| ]) |
| |
| licenses([ |
| "notice", # MIT from expression "MIT" |
| ]) |
| |
| # Generated Targets |
| |
| # Unsupported target "bench" with type "bench" omitted |
| |
| rust_binary( |
| # Prefix bin name to disambiguate from (probable) collision with lib name |
| # N.B.: The exact form of this is subject to change. |
| name = "cargo_bin_handlebars_cli", |
| srcs = glob(["**/*.rs"]), |
| aliases = { |
| }, |
| crate_features = [ |
| "default", |
| ], |
| crate_root = "src/cli.rs", |
| data = [] + [ |
| "src/grammar.pest", |
| ], |
| edition = "2018", |
| proc_macro_deps = [ |
| "@raze__pest_derive__2_1_0//:pest_derive", |
| ], |
| rustc_flags = [ |
| "--cap-lints=allow", |
| ], |
| tags = [ |
| "cargo-raze", |
| "manual", |
| ], |
| version = "4.0.1", |
| # buildifier: leave-alone |
| deps = [ |
| ":handlebars", |
| "@raze__log__0_4_14//:log", |
| "@raze__pest__2_1_3//:pest", |
| "@raze__quick_error__2_0_1//:quick_error", |
| "@raze__serde__1_0_126//:serde", |
| "@raze__serde_json__1_0_64//:serde_json", |
| ] + selects.with_or({ |
| # cfg(unix) |
| ( |
| "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", |
| ): [ |
| ], |
| "//conditions:default": [], |
| }), |
| ) |
| |
| # Unsupported target "decorator" with type "example" omitted |
| |
| # Unsupported target "dev_mode" with type "example" omitted |
| |
| # Unsupported target "error" with type "example" omitted |
| |
| # Unsupported target "partials" with type "example" omitted |
| |
| # Unsupported target "quick" with type "example" omitted |
| |
| # Unsupported target "render" with type "example" omitted |
| |
| # Unsupported target "render_file" with type "example" omitted |
| |
| # Unsupported target "script" with type "example" omitted |
| |
| rust_library( |
| name = "handlebars", |
| srcs = glob(["**/*.rs"]), |
| aliases = { |
| }, |
| crate_features = [ |
| "default", |
| ], |
| crate_root = "src/lib.rs", |
| crate_type = "lib", |
| data = [] + [ |
| "src/grammar.pest", |
| ], |
| edition = "2018", |
| proc_macro_deps = [ |
| "@raze__pest_derive__2_1_0//:pest_derive", |
| ], |
| rustc_flags = [ |
| "--cap-lints=allow", |
| ], |
| tags = [ |
| "cargo-raze", |
| "manual", |
| ], |
| version = "4.0.1", |
| # buildifier: leave-alone |
| deps = [ |
| "@raze__log__0_4_14//:log", |
| "@raze__pest__2_1_3//:pest", |
| "@raze__quick_error__2_0_1//:quick_error", |
| "@raze__serde__1_0_126//:serde", |
| "@raze__serde_json__1_0_64//:serde_json", |
| ] + selects.with_or({ |
| # cfg(unix) |
| ( |
| "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", |
| ): [ |
| ], |
| "//conditions:default": [], |
| }), |
| ) |
| |
| # Unsupported target "block_context" with type "test" omitted |
| |
| # Unsupported target "data_helper" with type "test" omitted |
| |
| # Unsupported target "escape" with type "test" omitted |
| |
| # Unsupported target "helper_function_lifetime" with type "test" omitted |
| |
| # Unsupported target "helper_macro" with type "test" omitted |
| |
| # Unsupported target "helper_with_space" with type "test" omitted |
| |
| # Unsupported target "root_var" with type "test" omitted |
| |
| # Unsupported target "subexpression" with type "test" omitted |
| |
| # Unsupported target "template_names" with type "test" omitted |