blob: 0d8f5fb3849fcebc6573c4b4789e8692e5c91f40 [file] [log] [blame]
"""
@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:defs.bzl",
"rust_binary",
"rust_library",
"rust_proc_macro",
"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 OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "clap_builder",
srcs = glob(["**/*.rs"]),
crate_features = [
"cargo",
"color",
"error-context",
"help",
"std",
"suggestions",
"usage",
"wrap_help",
],
crate_root = "src/lib.rs",
data = [] + [
"README.md",
],
edition = "2021",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=clap_builder",
"manual",
],
version = "4.4.6",
# buildifier: leave-alone
deps = [
"@raze__anstream__0_6_4//:anstream",
"@raze__anstyle__1_0_4//:anstyle",
"@raze__clap_lex__0_5_1//:clap_lex",
"@raze__strsim__0_10_0//:strsim",
"@raze__terminal_size__0_3_0//:terminal_size",
],
)