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 @//bindgen/3rdparty:crates_vendor 7############################################################################### 8 9load("@rules_rust//rust:defs.bzl", "rust_library") 10 11package(default_visibility = ["//visibility:public"]) 12 13rust_library( 14 name = "clap", 15 srcs = glob( 16 include = ["**/*.rs"], 17 allow_empty = True, 18 ), 19 compile_data = glob( 20 include = ["**"], 21 allow_empty = True, 22 exclude = [ 23 "**/* *", 24 ".tmp_git_root/**/*", 25 "BUILD", 26 "BUILD.bazel", 27 "WORKSPACE", 28 "WORKSPACE.bazel", 29 ], 30 ), 31 crate_features = [ 32 "color", 33 "default", 34 "derive", 35 "error-context", 36 "help", 37 "std", 38 "suggestions", 39 "usage", 40 ], 41 crate_root = "src/lib.rs", 42 edition = "2021", 43 proc_macro_deps = [ 44 "@rules_rust_bindgen__clap_derive-4.3.2//:clap_derive", 45 ], 46 rustc_flags = [ 47 "--cap-lints=allow", 48 ], 49 tags = [ 50 "cargo-bazel", 51 "crate-name=clap", 52 "manual", 53 "noclippy", 54 "norustfmt", 55 ], 56 target_compatible_with = select({ 57 "@rules_rust//rust/platform:aarch64-apple-darwin": [], 58 "@rules_rust//rust/platform:aarch64-apple-ios": [], 59 "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], 60 "@rules_rust//rust/platform:aarch64-fuchsia": [], 61 "@rules_rust//rust/platform:aarch64-linux-android": [], 62 "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], 63 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], 64 "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], 65 "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], 66 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], 67 "@rules_rust//rust/platform:armv7-linux-androideabi": [], 68 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], 69 "@rules_rust//rust/platform:i686-apple-darwin": [], 70 "@rules_rust//rust/platform:i686-linux-android": [], 71 "@rules_rust//rust/platform:i686-pc-windows-msvc": [], 72 "@rules_rust//rust/platform:i686-unknown-freebsd": [], 73 "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], 74 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], 75 "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], 76 "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], 77 "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], 78 "@rules_rust//rust/platform:thumbv7em-none-eabi": [], 79 "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], 80 "@rules_rust//rust/platform:wasm32-unknown-unknown": [], 81 "@rules_rust//rust/platform:wasm32-wasi": [], 82 "@rules_rust//rust/platform:x86_64-apple-darwin": [], 83 "@rules_rust//rust/platform:x86_64-apple-ios": [], 84 "@rules_rust//rust/platform:x86_64-fuchsia": [], 85 "@rules_rust//rust/platform:x86_64-linux-android": [], 86 "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], 87 "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], 88 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], 89 "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], 90 "@rules_rust//rust/platform:x86_64-unknown-none": [], 91 "//conditions:default": ["@platforms//:incompatible"], 92 }), 93 version = "4.3.3", 94 deps = [ 95 "@rules_rust_bindgen__clap_builder-4.3.3//:clap_builder", 96 "@rules_rust_bindgen__once_cell-1.18.0//:once_cell", 97 ], 98) 99