Leopold | 2aa8b18 | 2023-01-14 23:31:43 +0100 | [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( |
| 13 | "@rules_rust//rust:defs.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_proc_macro", |
| 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 OR Apache-2.0" |
| 30 | ]) |
| 31 | |
| 32 | # Generated Targets |
| 33 | |
| 34 | rust_binary( |
| 35 | # Prefix bin name to disambiguate from (probable) collision with lib name |
| 36 | # N.B.: The exact form of this is subject to change. |
| 37 | name = "cargo_bin_stdio_fixture", |
| 38 | srcs = glob(["**/*.rs"]), |
| 39 | crate_features = [ |
| 40 | "atty", |
| 41 | "cargo", |
| 42 | "color", |
| 43 | "default", |
| 44 | "once_cell", |
| 45 | "std", |
| 46 | "strsim", |
| 47 | "suggestions", |
| 48 | "termcolor", |
| 49 | ], |
| 50 | crate_root = "src/bin/stdio-fixture.rs", |
| 51 | data = [] + [ |
| 52 | "README.md", |
| 53 | "examples/demo.md", |
| 54 | ], |
| 55 | edition = "2021", |
| 56 | rustc_flags = [ |
| 57 | "--cap-lints=allow", |
| 58 | ], |
| 59 | tags = [ |
| 60 | "cargo-raze", |
| 61 | "crate-name=stdio-fixture", |
| 62 | "manual", |
| 63 | ], |
| 64 | version = "3.2.23", |
| 65 | # buildifier: leave-alone |
| 66 | deps = [ |
| 67 | ":clap", |
| 68 | "@raze__atty__0_2_14//:atty", |
| 69 | "@raze__bitflags__1_3_2//:bitflags", |
| 70 | "@raze__clap_lex__0_2_4//:clap_lex", |
| 71 | "@raze__indexmap__1_9_2//:indexmap", |
| 72 | "@raze__once_cell__1_17_0//:once_cell", |
| 73 | "@raze__strsim__0_10_0//:strsim", |
| 74 | "@raze__termcolor__1_1_3//:termcolor", |
| 75 | "@raze__textwrap__0_16_0//:textwrap", |
| 76 | ], |
| 77 | ) |
| 78 | |
| 79 | # Unsupported target "01_quick" with type "example" omitted |
| 80 | |
| 81 | # Unsupported target "01_quick_derive" with type "example" omitted |
| 82 | |
| 83 | # Unsupported target "02_app_settings" with type "example" omitted |
| 84 | |
| 85 | # Unsupported target "02_app_settings_derive" with type "example" omitted |
| 86 | |
| 87 | # Unsupported target "02_apps" with type "example" omitted |
| 88 | |
| 89 | # Unsupported target "02_apps_derive" with type "example" omitted |
| 90 | |
| 91 | # Unsupported target "02_crate" with type "example" omitted |
| 92 | |
| 93 | # Unsupported target "02_crate_derive" with type "example" omitted |
| 94 | |
| 95 | # Unsupported target "03_01_flag_bool" with type "example" omitted |
| 96 | |
| 97 | # Unsupported target "03_01_flag_bool_derive" with type "example" omitted |
| 98 | |
| 99 | # Unsupported target "03_01_flag_count" with type "example" omitted |
| 100 | |
| 101 | # Unsupported target "03_01_flag_count_derive" with type "example" omitted |
| 102 | |
| 103 | # Unsupported target "03_02_option" with type "example" omitted |
| 104 | |
| 105 | # Unsupported target "03_02_option_derive" with type "example" omitted |
| 106 | |
| 107 | # Unsupported target "03_03_positional" with type "example" omitted |
| 108 | |
| 109 | # Unsupported target "03_03_positional_derive" with type "example" omitted |
| 110 | |
| 111 | # Unsupported target "03_04_subcommands" with type "example" omitted |
| 112 | |
| 113 | # Unsupported target "03_04_subcommands_alt_derive" with type "example" omitted |
| 114 | |
| 115 | # Unsupported target "03_04_subcommands_derive" with type "example" omitted |
| 116 | |
| 117 | # Unsupported target "03_05_default_values" with type "example" omitted |
| 118 | |
| 119 | # Unsupported target "03_05_default_values_derive" with type "example" omitted |
| 120 | |
| 121 | # Unsupported target "04_01_enum" with type "example" omitted |
| 122 | |
| 123 | # Unsupported target "04_01_enum_derive" with type "example" omitted |
| 124 | |
| 125 | # Unsupported target "04_01_possible" with type "example" omitted |
| 126 | |
| 127 | # Unsupported target "04_02_parse" with type "example" omitted |
| 128 | |
| 129 | # Unsupported target "04_02_parse_derive" with type "example" omitted |
| 130 | |
| 131 | # Unsupported target "04_02_validate" with type "example" omitted |
| 132 | |
| 133 | # Unsupported target "04_02_validate_derive" with type "example" omitted |
| 134 | |
| 135 | # Unsupported target "04_03_relations" with type "example" omitted |
| 136 | |
| 137 | # Unsupported target "04_03_relations_derive" with type "example" omitted |
| 138 | |
| 139 | # Unsupported target "04_04_custom" with type "example" omitted |
| 140 | |
| 141 | # Unsupported target "04_04_custom_derive" with type "example" omitted |
| 142 | |
| 143 | # Unsupported target "05_01_assert" with type "example" omitted |
| 144 | |
| 145 | # Unsupported target "05_01_assert_derive" with type "example" omitted |
| 146 | |
| 147 | # Unsupported target "busybox" with type "example" omitted |
| 148 | |
| 149 | # Unsupported target "cargo-example" with type "example" omitted |
| 150 | |
| 151 | # Unsupported target "cargo-example-derive" with type "example" omitted |
| 152 | |
| 153 | # Unsupported target "custom-bool" with type "example" omitted |
| 154 | |
| 155 | # Unsupported target "demo" with type "example" omitted |
| 156 | |
| 157 | # Unsupported target "escaped-positional" with type "example" omitted |
| 158 | |
| 159 | # Unsupported target "escaped-positional-derive" with type "example" omitted |
| 160 | |
| 161 | # Unsupported target "git" with type "example" omitted |
| 162 | |
| 163 | # Unsupported target "git-derive" with type "example" omitted |
| 164 | |
| 165 | # Unsupported target "hostname" with type "example" omitted |
| 166 | |
| 167 | # Unsupported target "interop_augment_args" with type "example" omitted |
| 168 | |
| 169 | # Unsupported target "interop_augment_subcommands" with type "example" omitted |
| 170 | |
| 171 | # Unsupported target "interop_flatten_hand_args" with type "example" omitted |
| 172 | |
| 173 | # Unsupported target "interop_hand_subcommand" with type "example" omitted |
| 174 | |
| 175 | # Unsupported target "pacman" with type "example" omitted |
| 176 | |
| 177 | # Unsupported target "repl" with type "example" omitted |
| 178 | |
| 179 | # Unsupported target "typed-derive" with type "example" omitted |
| 180 | |
| 181 | rust_library( |
| 182 | name = "clap", |
| 183 | srcs = glob(["**/*.rs"]), |
| 184 | crate_features = [ |
| 185 | "atty", |
| 186 | "cargo", |
| 187 | "color", |
| 188 | "default", |
| 189 | "once_cell", |
| 190 | "std", |
| 191 | "strsim", |
| 192 | "suggestions", |
| 193 | "termcolor", |
| 194 | ], |
| 195 | crate_root = "src/lib.rs", |
| 196 | data = [] + [ |
| 197 | "README.md", |
| 198 | "examples/demo.md", |
| 199 | ], |
| 200 | edition = "2021", |
| 201 | rustc_flags = [ |
| 202 | "--cap-lints=allow", |
| 203 | ], |
| 204 | tags = [ |
| 205 | "cargo-raze", |
| 206 | "crate-name=clap", |
| 207 | "manual", |
| 208 | ], |
| 209 | version = "3.2.23", |
| 210 | # buildifier: leave-alone |
| 211 | deps = [ |
| 212 | "@raze__atty__0_2_14//:atty", |
| 213 | "@raze__bitflags__1_3_2//:bitflags", |
| 214 | "@raze__clap_lex__0_2_4//:clap_lex", |
| 215 | "@raze__indexmap__1_9_2//:indexmap", |
| 216 | "@raze__once_cell__1_17_0//:once_cell", |
| 217 | "@raze__strsim__0_10_0//:strsim", |
| 218 | "@raze__termcolor__1_1_3//:termcolor", |
| 219 | "@raze__textwrap__0_16_0//:textwrap", |
| 220 | ], |
| 221 | ) |