• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6#     bazel run @//third-party:vendor
7###############################################################################
8
9load("@rules_rust//rust:defs.bzl", "rust_library")
10
11package(default_visibility = ["//visibility:public"])
12
13# licenses([
14#     "TODO",  # MIT OR Apache-2.0
15# ])
16
17rust_library(
18    name = "clap",
19    srcs = glob(["**/*.rs"]),
20    compile_data = glob(
21        include = ["**"],
22        exclude = [
23            "**/* *",
24            "BUILD",
25            "BUILD.bazel",
26            "WORKSPACE",
27            "WORKSPACE.bazel",
28        ],
29    ),
30    crate_features = [
31        "error-context",
32        "help",
33        "std",
34        "usage",
35    ],
36    crate_root = "src/lib.rs",
37    edition = "2021",
38    rustc_flags = ["--cap-lints=allow"],
39    tags = [
40        "cargo-bazel",
41        "crate-name=clap",
42        "manual",
43        "noclippy",
44        "norustfmt",
45    ],
46    version = "4.1.4",
47    deps = [
48        "@vendor__bitflags-1.3.2//:bitflags",
49        "@vendor__clap_lex-0.3.1//:clap_lex",
50    ],
51)
52