Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 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 | # |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 6 | # bazel run @//wasm_bindgen/3rdparty:crates_vendor |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 7 | ############################################################################### |
| 8 | """ |
| 9 | # `crates_repository` API |
| 10 | |
| 11 | - [aliases](#aliases) |
| 12 | - [crate_deps](#crate_deps) |
| 13 | - [all_crate_deps](#all_crate_deps) |
| 14 | - [crate_repositories](#crate_repositories) |
| 15 | |
| 16 | """ |
| 17 | |
| 18 | load("@bazel_skylib//lib:selects.bzl", "selects") |
| 19 | load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| 20 | load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") |
| 21 | |
| 22 | ############################################################################### |
| 23 | # MACROS API |
| 24 | ############################################################################### |
| 25 | |
| 26 | # An identifier that represent common dependencies (unconditional). |
| 27 | _COMMON_CONDITION = "" |
| 28 | |
| 29 | def _flatten_dependency_maps(all_dependency_maps): |
| 30 | """Flatten a list of dependency maps into one dictionary. |
| 31 | |
| 32 | Dependency maps have the following structure: |
| 33 | |
| 34 | ```python |
| 35 | DEPENDENCIES_MAP = { |
| 36 | # The first key in the map is a Bazel package |
| 37 | # name of the workspace this file is defined in. |
| 38 | "workspace_member_package": { |
| 39 | |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 40 | # Not all dependencies are supported for all platforms. |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 41 | # the condition key is the condition required to be true |
| 42 | # on the host platform. |
| 43 | "condition": { |
| 44 | |
| 45 | # An alias to a crate target. # The label of the crate target the |
| 46 | # Aliases are only crate names. # package name refers to. |
| 47 | "package_name": "@full//:label", |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | ``` |
| 52 | |
| 53 | Args: |
| 54 | all_dependency_maps (list): A list of dicts as described above |
| 55 | |
| 56 | Returns: |
| 57 | dict: A dictionary as described above |
| 58 | """ |
| 59 | dependencies = {} |
| 60 | |
| 61 | for workspace_deps_map in all_dependency_maps: |
| 62 | for pkg_name, conditional_deps_map in workspace_deps_map.items(): |
| 63 | if pkg_name not in dependencies: |
| 64 | non_frozen_map = dict() |
| 65 | for key, values in conditional_deps_map.items(): |
| 66 | non_frozen_map.update({key: dict(values.items())}) |
| 67 | dependencies.setdefault(pkg_name, non_frozen_map) |
| 68 | continue |
| 69 | |
| 70 | for condition, deps_map in conditional_deps_map.items(): |
| 71 | # If the condition has not been recorded, do so and continue |
| 72 | if condition not in dependencies[pkg_name]: |
| 73 | dependencies[pkg_name].setdefault(condition, dict(deps_map.items())) |
| 74 | continue |
| 75 | |
| 76 | # Alert on any miss-matched dependencies |
| 77 | inconsistent_entries = [] |
| 78 | for crate_name, crate_label in deps_map.items(): |
| 79 | existing = dependencies[pkg_name][condition].get(crate_name) |
| 80 | if existing and existing != crate_label: |
| 81 | inconsistent_entries.append((crate_name, existing, crate_label)) |
| 82 | dependencies[pkg_name][condition].update({crate_name: crate_label}) |
| 83 | |
| 84 | return dependencies |
| 85 | |
| 86 | def crate_deps(deps, package_name = None): |
| 87 | """Finds the fully qualified label of the requested crates for the package where this macro is called. |
| 88 | |
| 89 | Args: |
| 90 | deps (list): The desired list of crate targets. |
| 91 | package_name (str, optional): The package name of the set of dependencies to look up. |
| 92 | Defaults to `native.package_name()`. |
| 93 | |
| 94 | Returns: |
| 95 | list: A list of labels to generated rust targets (str) |
| 96 | """ |
| 97 | |
| 98 | if not deps: |
| 99 | return [] |
| 100 | |
| 101 | if package_name == None: |
| 102 | package_name = native.package_name() |
| 103 | |
| 104 | # Join both sets of dependencies |
| 105 | dependencies = _flatten_dependency_maps([ |
| 106 | _NORMAL_DEPENDENCIES, |
| 107 | _NORMAL_DEV_DEPENDENCIES, |
| 108 | _PROC_MACRO_DEPENDENCIES, |
| 109 | _PROC_MACRO_DEV_DEPENDENCIES, |
| 110 | _BUILD_DEPENDENCIES, |
| 111 | _BUILD_PROC_MACRO_DEPENDENCIES, |
| 112 | ]).pop(package_name, {}) |
| 113 | |
| 114 | # Combine all conditional packages so we can easily index over a flat list |
| 115 | # TODO: Perhaps this should actually return select statements and maintain |
| 116 | # the conditionals of the dependencies |
| 117 | flat_deps = {} |
| 118 | for deps_set in dependencies.values(): |
| 119 | for crate_name, crate_label in deps_set.items(): |
| 120 | flat_deps.update({crate_name: crate_label}) |
| 121 | |
| 122 | missing_crates = [] |
| 123 | crate_targets = [] |
| 124 | for crate_target in deps: |
| 125 | if crate_target not in flat_deps: |
| 126 | missing_crates.append(crate_target) |
| 127 | else: |
| 128 | crate_targets.append(flat_deps[crate_target]) |
| 129 | |
| 130 | if missing_crates: |
| 131 | fail("Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`".format( |
| 132 | missing_crates, |
| 133 | package_name, |
| 134 | dependencies, |
| 135 | )) |
| 136 | |
| 137 | return crate_targets |
| 138 | |
| 139 | def all_crate_deps( |
| 140 | normal = False, |
| 141 | normal_dev = False, |
| 142 | proc_macro = False, |
| 143 | proc_macro_dev = False, |
| 144 | build = False, |
| 145 | build_proc_macro = False, |
| 146 | package_name = None): |
| 147 | """Finds the fully qualified label of all requested direct crate dependencies \ |
| 148 | for the package where this macro is called. |
| 149 | |
| 150 | If no parameters are set, all normal dependencies are returned. Setting any one flag will |
| 151 | otherwise impact the contents of the returned list. |
| 152 | |
| 153 | Args: |
| 154 | normal (bool, optional): If True, normal dependencies are included in the |
| 155 | output list. |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 156 | normal_dev (bool, optional): If True, normal dev dependencies will be |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 157 | included in the output list.. |
| 158 | proc_macro (bool, optional): If True, proc_macro dependencies are included |
| 159 | in the output list. |
| 160 | proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are |
| 161 | included in the output list. |
| 162 | build (bool, optional): If True, build dependencies are included |
| 163 | in the output list. |
| 164 | build_proc_macro (bool, optional): If True, build proc_macro dependencies are |
| 165 | included in the output list. |
| 166 | package_name (str, optional): The package name of the set of dependencies to look up. |
| 167 | Defaults to `native.package_name()` when unset. |
| 168 | |
| 169 | Returns: |
| 170 | list: A list of labels to generated rust targets (str) |
| 171 | """ |
| 172 | |
| 173 | if package_name == None: |
| 174 | package_name = native.package_name() |
| 175 | |
| 176 | # Determine the relevant maps to use |
| 177 | all_dependency_maps = [] |
| 178 | if normal: |
| 179 | all_dependency_maps.append(_NORMAL_DEPENDENCIES) |
| 180 | if normal_dev: |
| 181 | all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES) |
| 182 | if proc_macro: |
| 183 | all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES) |
| 184 | if proc_macro_dev: |
| 185 | all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES) |
| 186 | if build: |
| 187 | all_dependency_maps.append(_BUILD_DEPENDENCIES) |
| 188 | if build_proc_macro: |
| 189 | all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES) |
| 190 | |
| 191 | # Default to always using normal dependencies |
| 192 | if not all_dependency_maps: |
| 193 | all_dependency_maps.append(_NORMAL_DEPENDENCIES) |
| 194 | |
| 195 | dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None) |
| 196 | |
| 197 | if not dependencies: |
| 198 | if dependencies == None: |
| 199 | fail("Tried to get all_crate_deps for package " + package_name + " but that package had no Cargo.toml file") |
| 200 | else: |
| 201 | return [] |
| 202 | |
| 203 | crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values()) |
| 204 | for condition, deps in dependencies.items(): |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 205 | crate_deps += selects.with_or({ |
| 206 | tuple(_CONDITIONS[condition]): deps.values(), |
| 207 | "//conditions:default": [], |
| 208 | }) |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 209 | |
| 210 | return crate_deps |
| 211 | |
| 212 | def aliases( |
| 213 | normal = False, |
| 214 | normal_dev = False, |
| 215 | proc_macro = False, |
| 216 | proc_macro_dev = False, |
| 217 | build = False, |
| 218 | build_proc_macro = False, |
| 219 | package_name = None): |
| 220 | """Produces a map of Crate alias names to their original label |
| 221 | |
| 222 | If no dependency kinds are specified, `normal` and `proc_macro` are used by default. |
| 223 | Setting any one flag will otherwise determine the contents of the returned dict. |
| 224 | |
| 225 | Args: |
| 226 | normal (bool, optional): If True, normal dependencies are included in the |
| 227 | output list. |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 228 | normal_dev (bool, optional): If True, normal dev dependencies will be |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 229 | included in the output list.. |
| 230 | proc_macro (bool, optional): If True, proc_macro dependencies are included |
| 231 | in the output list. |
| 232 | proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are |
| 233 | included in the output list. |
| 234 | build (bool, optional): If True, build dependencies are included |
| 235 | in the output list. |
| 236 | build_proc_macro (bool, optional): If True, build proc_macro dependencies are |
| 237 | included in the output list. |
| 238 | package_name (str, optional): The package name of the set of dependencies to look up. |
| 239 | Defaults to `native.package_name()` when unset. |
| 240 | |
| 241 | Returns: |
| 242 | dict: The aliases of all associated packages |
| 243 | """ |
| 244 | if package_name == None: |
| 245 | package_name = native.package_name() |
| 246 | |
| 247 | # Determine the relevant maps to use |
| 248 | all_aliases_maps = [] |
| 249 | if normal: |
| 250 | all_aliases_maps.append(_NORMAL_ALIASES) |
| 251 | if normal_dev: |
| 252 | all_aliases_maps.append(_NORMAL_DEV_ALIASES) |
| 253 | if proc_macro: |
| 254 | all_aliases_maps.append(_PROC_MACRO_ALIASES) |
| 255 | if proc_macro_dev: |
| 256 | all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES) |
| 257 | if build: |
| 258 | all_aliases_maps.append(_BUILD_ALIASES) |
| 259 | if build_proc_macro: |
| 260 | all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES) |
| 261 | |
| 262 | # Default to always using normal aliases |
| 263 | if not all_aliases_maps: |
| 264 | all_aliases_maps.append(_NORMAL_ALIASES) |
| 265 | all_aliases_maps.append(_PROC_MACRO_ALIASES) |
| 266 | |
| 267 | aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None) |
| 268 | |
| 269 | if not aliases: |
| 270 | return dict() |
| 271 | |
| 272 | common_items = aliases.pop(_COMMON_CONDITION, {}).items() |
| 273 | |
| 274 | # If there are only common items in the dictionary, immediately return them |
| 275 | if not len(aliases.keys()) == 1: |
| 276 | return dict(common_items) |
| 277 | |
| 278 | # Build a single select statement where each conditional has accounted for the |
| 279 | # common set of aliases. |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 280 | crate_aliases = {"//conditions:default": dict(common_items)} |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 281 | for condition, deps in aliases.items(): |
| 282 | condition_triples = _CONDITIONS[condition] |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 283 | for triple in condition_triples: |
| 284 | if triple in crate_aliases: |
| 285 | crate_aliases[triple].update(deps) |
| 286 | else: |
| 287 | crate_aliases.update({triple: dict(deps.items() + common_items)}) |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 288 | |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 289 | return select(crate_aliases) |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 290 | |
| 291 | ############################################################################### |
| 292 | # WORKSPACE MEMBER DEPS AND ALIASES |
| 293 | ############################################################################### |
| 294 | |
| 295 | _NORMAL_DEPENDENCIES = { |
| 296 | "": { |
| 297 | _COMMON_CONDITION: { |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 298 | "anyhow": "@rules_rust_wasm_bindgen__anyhow-1.0.68//:anyhow", |
| 299 | "curl": "@rules_rust_wasm_bindgen__curl-0.4.44//:curl", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 300 | "docopt": "@rules_rust_wasm_bindgen__docopt-1.1.1//:docopt", |
| 301 | "env_logger": "@rules_rust_wasm_bindgen__env_logger-0.8.4//:env_logger", |
| 302 | "log": "@rules_rust_wasm_bindgen__log-0.4.17//:log", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 303 | "rouille": "@rules_rust_wasm_bindgen__rouille-3.6.1//:rouille", |
| 304 | "serde": "@rules_rust_wasm_bindgen__serde-1.0.152//:serde", |
| 305 | "serde_json": "@rules_rust_wasm_bindgen__serde_json-1.0.91//:serde_json", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 306 | "walrus": "@rules_rust_wasm_bindgen__walrus-0.19.0//:walrus", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 307 | "wasm-bindgen": "@rules_rust_wasm_bindgen__wasm-bindgen-0.2.84//:wasm_bindgen", |
| 308 | "wasm-bindgen-cli-support": "@rules_rust_wasm_bindgen__wasm-bindgen-cli-support-0.2.84//:wasm_bindgen_cli_support", |
| 309 | "wasm-bindgen-shared": "@rules_rust_wasm_bindgen__wasm-bindgen-shared-0.2.84//:wasm_bindgen_shared", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 310 | }, |
| 311 | }, |
| 312 | } |
| 313 | |
| 314 | _NORMAL_ALIASES = { |
| 315 | "": { |
| 316 | _COMMON_CONDITION: { |
| 317 | }, |
| 318 | }, |
| 319 | } |
| 320 | |
| 321 | _NORMAL_DEV_DEPENDENCIES = { |
| 322 | "": { |
| 323 | _COMMON_CONDITION: { |
| 324 | "assert_cmd": "@rules_rust_wasm_bindgen__assert_cmd-1.0.8//:assert_cmd", |
| 325 | "diff": "@rules_rust_wasm_bindgen__diff-0.1.13//:diff", |
| 326 | "predicates": "@rules_rust_wasm_bindgen__predicates-1.0.8//:predicates", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 327 | "rayon": "@rules_rust_wasm_bindgen__rayon-1.6.1//:rayon", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 328 | "tempfile": "@rules_rust_wasm_bindgen__tempfile-3.3.0//:tempfile", |
| 329 | "wasmprinter": "@rules_rust_wasm_bindgen__wasmprinter-0.2.33//:wasmprinter", |
| 330 | "wit-printer": "@rules_rust_wasm_bindgen__wit-printer-0.2.0//:wit_printer", |
| 331 | "wit-text": "@rules_rust_wasm_bindgen__wit-text-0.8.0//:wit_text", |
| 332 | "wit-validator": "@rules_rust_wasm_bindgen__wit-validator-0.2.1//:wit_validator", |
| 333 | "wit-walrus": "@rules_rust_wasm_bindgen__wit-walrus-0.6.0//:wit_walrus", |
| 334 | }, |
| 335 | }, |
| 336 | } |
| 337 | |
| 338 | _NORMAL_DEV_ALIASES = { |
| 339 | "": { |
| 340 | _COMMON_CONDITION: { |
| 341 | }, |
| 342 | }, |
| 343 | } |
| 344 | |
| 345 | _PROC_MACRO_DEPENDENCIES = { |
| 346 | "": { |
| 347 | _COMMON_CONDITION: { |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 348 | "serde_derive": "@rules_rust_wasm_bindgen__serde_derive-1.0.152//:serde_derive", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 349 | }, |
| 350 | }, |
| 351 | } |
| 352 | |
| 353 | _PROC_MACRO_ALIASES = { |
| 354 | "": { |
| 355 | }, |
| 356 | } |
| 357 | |
| 358 | _PROC_MACRO_DEV_DEPENDENCIES = { |
| 359 | "": { |
| 360 | }, |
| 361 | } |
| 362 | |
| 363 | _PROC_MACRO_DEV_ALIASES = { |
| 364 | "": { |
| 365 | _COMMON_CONDITION: { |
| 366 | }, |
| 367 | }, |
| 368 | } |
| 369 | |
| 370 | _BUILD_DEPENDENCIES = { |
| 371 | "": { |
| 372 | }, |
| 373 | } |
| 374 | |
| 375 | _BUILD_ALIASES = { |
| 376 | "": { |
| 377 | }, |
| 378 | } |
| 379 | |
| 380 | _BUILD_PROC_MACRO_DEPENDENCIES = { |
| 381 | "": { |
| 382 | }, |
| 383 | } |
| 384 | |
| 385 | _BUILD_PROC_MACRO_ALIASES = { |
| 386 | "": { |
| 387 | }, |
| 388 | } |
| 389 | |
| 390 | _CONDITIONS = { |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 391 | "aarch64-apple-darwin": ["@rules_rust//rust/platform:aarch64-apple-darwin"], |
| 392 | "aarch64-linux-android": ["@rules_rust//rust/platform:aarch64-linux-android"], |
| 393 | "aarch64-pc-windows-gnullvm": [], |
| 394 | "aarch64-pc-windows-msvc": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc"], |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 395 | "aarch64-uwp-windows-msvc": [], |
| 396 | "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))": [], |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 397 | "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": ["@rules_rust//rust/platform:aarch64-unknown-linux-gnu"], |
| 398 | "cfg(all(unix, not(target_os = \"macos\")))": ["@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu"], |
| 399 | "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-none"], |
| 400 | "cfg(any(target_os = \"macos\", target_os = \"ios\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios"], |
| 401 | "cfg(any(target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-unknown-freebsd"], |
| 402 | "cfg(any(unix, target_os = \"wasi\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:wasm32-wasi", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu"], |
| 403 | "cfg(not(windows))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:riscv32imc-unknown-none-elf", "@rules_rust//rust/platform:riscv64gc-unknown-none-elf", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:thumbv7em-none-eabi", "@rules_rust//rust/platform:thumbv8m.main-none-eabi", "@rules_rust//rust/platform:wasm32-unknown-unknown", "@rules_rust//rust/platform:wasm32-wasi", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-none"], |
| 404 | "cfg(target_arch = \"wasm32\")": ["@rules_rust//rust/platform:wasm32-unknown-unknown", "@rules_rust//rust/platform:wasm32-wasi"], |
| 405 | "cfg(target_env = \"msvc\")": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"], |
| 406 | "cfg(target_family = \"unix\")": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu"], |
| 407 | "cfg(target_os = \"android\")": ["@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:x86_64-linux-android"], |
| 408 | "cfg(target_os = \"haiku\")": [], |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 409 | "cfg(target_os = \"hermit\")": [], |
| 410 | "cfg(target_os = \"redox\")": [], |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 411 | "cfg(target_os = \"wasi\")": ["@rules_rust//rust/platform:wasm32-wasi"], |
| 412 | "cfg(target_os = \"windows\")": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"], |
| 413 | "cfg(unix)": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu"], |
| 414 | "cfg(windows)": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"], |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 415 | "i686-pc-windows-gnu": [], |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 416 | "i686-pc-windows-msvc": ["@rules_rust//rust/platform:i686-pc-windows-msvc"], |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 417 | "i686-uwp-windows-gnu": [], |
| 418 | "i686-uwp-windows-msvc": [], |
| 419 | "x86_64-pc-windows-gnu": [], |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 420 | "x86_64-pc-windows-gnullvm": [], |
| 421 | "x86_64-pc-windows-msvc": ["@rules_rust//rust/platform:x86_64-pc-windows-msvc"], |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 422 | "x86_64-uwp-windows-gnu": [], |
| 423 | "x86_64-uwp-windows-msvc": [], |
| 424 | } |
| 425 | |
| 426 | ############################################################################### |
| 427 | |
| 428 | def crate_repositories(): |
| 429 | """A macro for defining repositories for all generated crates""" |
| 430 | maybe( |
| 431 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 432 | name = "rules_rust_wasm_bindgen__aho-corasick-0.7.20", |
| 433 | sha256 = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 434 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 435 | urls = ["https://crates.io/api/v1/crates/aho-corasick/0.7.20/download"], |
| 436 | strip_prefix = "aho-corasick-0.7.20", |
| 437 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.aho-corasick-0.7.20.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 438 | ) |
| 439 | |
| 440 | maybe( |
| 441 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 442 | name = "rules_rust_wasm_bindgen__android_system_properties-0.1.5", |
| 443 | sha256 = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 444 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 445 | urls = ["https://crates.io/api/v1/crates/android_system_properties/0.1.5/download"], |
| 446 | strip_prefix = "android_system_properties-0.1.5", |
| 447 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.android_system_properties-0.1.5.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 448 | ) |
| 449 | |
| 450 | maybe( |
| 451 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 452 | name = "rules_rust_wasm_bindgen__anyhow-1.0.68", |
| 453 | sha256 = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 454 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 455 | urls = ["https://crates.io/api/v1/crates/anyhow/1.0.68/download"], |
| 456 | strip_prefix = "anyhow-1.0.68", |
| 457 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.anyhow-1.0.68.bazel"), |
| 458 | ) |
| 459 | |
| 460 | maybe( |
| 461 | http_archive, |
| 462 | name = "rules_rust_wasm_bindgen__ascii-1.1.0", |
| 463 | sha256 = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16", |
| 464 | type = "tar.gz", |
| 465 | urls = ["https://crates.io/api/v1/crates/ascii/1.1.0/download"], |
| 466 | strip_prefix = "ascii-1.1.0", |
| 467 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.ascii-1.1.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 468 | ) |
| 469 | |
| 470 | maybe( |
| 471 | http_archive, |
| 472 | name = "rules_rust_wasm_bindgen__assert_cmd-1.0.8", |
| 473 | sha256 = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe", |
| 474 | type = "tar.gz", |
| 475 | urls = ["https://crates.io/api/v1/crates/assert_cmd/1.0.8/download"], |
| 476 | strip_prefix = "assert_cmd-1.0.8", |
| 477 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.assert_cmd-1.0.8.bazel"), |
| 478 | ) |
| 479 | |
| 480 | maybe( |
| 481 | http_archive, |
| 482 | name = "rules_rust_wasm_bindgen__atty-0.2.14", |
| 483 | sha256 = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8", |
| 484 | type = "tar.gz", |
| 485 | urls = ["https://crates.io/api/v1/crates/atty/0.2.14/download"], |
| 486 | strip_prefix = "atty-0.2.14", |
| 487 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.atty-0.2.14.bazel"), |
| 488 | ) |
| 489 | |
| 490 | maybe( |
| 491 | http_archive, |
| 492 | name = "rules_rust_wasm_bindgen__autocfg-1.1.0", |
| 493 | sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", |
| 494 | type = "tar.gz", |
| 495 | urls = ["https://crates.io/api/v1/crates/autocfg/1.1.0/download"], |
| 496 | strip_prefix = "autocfg-1.1.0", |
| 497 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.autocfg-1.1.0.bazel"), |
| 498 | ) |
| 499 | |
| 500 | maybe( |
| 501 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 502 | name = "rules_rust_wasm_bindgen__base64-0.13.1", |
| 503 | sha256 = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 504 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 505 | urls = ["https://crates.io/api/v1/crates/base64/0.13.1/download"], |
| 506 | strip_prefix = "base64-0.13.1", |
| 507 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.base64-0.13.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 508 | ) |
| 509 | |
| 510 | maybe( |
| 511 | http_archive, |
| 512 | name = "rules_rust_wasm_bindgen__base64-0.9.3", |
| 513 | sha256 = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643", |
| 514 | type = "tar.gz", |
| 515 | urls = ["https://crates.io/api/v1/crates/base64/0.9.3/download"], |
| 516 | strip_prefix = "base64-0.9.3", |
| 517 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.base64-0.9.3.bazel"), |
| 518 | ) |
| 519 | |
| 520 | maybe( |
| 521 | http_archive, |
| 522 | name = "rules_rust_wasm_bindgen__bitflags-1.3.2", |
| 523 | sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", |
| 524 | type = "tar.gz", |
| 525 | urls = ["https://crates.io/api/v1/crates/bitflags/1.3.2/download"], |
| 526 | strip_prefix = "bitflags-1.3.2", |
| 527 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.bitflags-1.3.2.bazel"), |
| 528 | ) |
| 529 | |
| 530 | maybe( |
| 531 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 532 | name = "rules_rust_wasm_bindgen__block-buffer-0.10.3", |
| 533 | sha256 = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e", |
| 534 | type = "tar.gz", |
| 535 | urls = ["https://crates.io/api/v1/crates/block-buffer/0.10.3/download"], |
| 536 | strip_prefix = "block-buffer-0.10.3", |
| 537 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.block-buffer-0.10.3.bazel"), |
| 538 | ) |
| 539 | |
| 540 | maybe( |
| 541 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 542 | name = "rules_rust_wasm_bindgen__bstr-0.2.17", |
| 543 | sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223", |
| 544 | type = "tar.gz", |
| 545 | urls = ["https://crates.io/api/v1/crates/bstr/0.2.17/download"], |
| 546 | strip_prefix = "bstr-0.2.17", |
| 547 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.bstr-0.2.17.bazel"), |
| 548 | ) |
| 549 | |
| 550 | maybe( |
| 551 | http_archive, |
| 552 | name = "rules_rust_wasm_bindgen__buf_redux-0.8.4", |
| 553 | sha256 = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f", |
| 554 | type = "tar.gz", |
| 555 | urls = ["https://crates.io/api/v1/crates/buf_redux/0.8.4/download"], |
| 556 | strip_prefix = "buf_redux-0.8.4", |
| 557 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.buf_redux-0.8.4.bazel"), |
| 558 | ) |
| 559 | |
| 560 | maybe( |
| 561 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 562 | name = "rules_rust_wasm_bindgen__bumpalo-3.11.1", |
| 563 | sha256 = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 564 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 565 | urls = ["https://crates.io/api/v1/crates/bumpalo/3.11.1/download"], |
| 566 | strip_prefix = "bumpalo-3.11.1", |
| 567 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.bumpalo-3.11.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 568 | ) |
| 569 | |
| 570 | maybe( |
| 571 | http_archive, |
| 572 | name = "rules_rust_wasm_bindgen__byteorder-1.4.3", |
| 573 | sha256 = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610", |
| 574 | type = "tar.gz", |
| 575 | urls = ["https://crates.io/api/v1/crates/byteorder/1.4.3/download"], |
| 576 | strip_prefix = "byteorder-1.4.3", |
| 577 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.byteorder-1.4.3.bazel"), |
| 578 | ) |
| 579 | |
| 580 | maybe( |
| 581 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 582 | name = "rules_rust_wasm_bindgen__cc-1.0.78", |
| 583 | sha256 = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 584 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 585 | urls = ["https://crates.io/api/v1/crates/cc/1.0.78/download"], |
| 586 | strip_prefix = "cc-1.0.78", |
| 587 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cc-1.0.78.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 588 | ) |
| 589 | |
| 590 | maybe( |
| 591 | http_archive, |
| 592 | name = "rules_rust_wasm_bindgen__cfg-if-1.0.0", |
| 593 | sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", |
| 594 | type = "tar.gz", |
| 595 | urls = ["https://crates.io/api/v1/crates/cfg-if/1.0.0/download"], |
| 596 | strip_prefix = "cfg-if-1.0.0", |
| 597 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cfg-if-1.0.0.bazel"), |
| 598 | ) |
| 599 | |
| 600 | maybe( |
| 601 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 602 | name = "rules_rust_wasm_bindgen__chrono-0.4.23", |
| 603 | sha256 = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 604 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 605 | urls = ["https://crates.io/api/v1/crates/chrono/0.4.23/download"], |
| 606 | strip_prefix = "chrono-0.4.23", |
| 607 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.chrono-0.4.23.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 608 | ) |
| 609 | |
| 610 | maybe( |
| 611 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 612 | name = "rules_rust_wasm_bindgen__chunked_transfer-1.4.1", |
| 613 | sha256 = "cca491388666e04d7248af3f60f0c40cfb0991c72205595d7c396e3510207d1a", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 614 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 615 | urls = ["https://crates.io/api/v1/crates/chunked_transfer/1.4.1/download"], |
| 616 | strip_prefix = "chunked_transfer-1.4.1", |
| 617 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.chunked_transfer-1.4.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 618 | ) |
| 619 | |
| 620 | maybe( |
| 621 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 622 | name = "rules_rust_wasm_bindgen__codespan-reporting-0.11.1", |
| 623 | sha256 = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 624 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 625 | urls = ["https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download"], |
| 626 | strip_prefix = "codespan-reporting-0.11.1", |
| 627 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.codespan-reporting-0.11.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 628 | ) |
| 629 | |
| 630 | maybe( |
| 631 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 632 | name = "rules_rust_wasm_bindgen__core-foundation-sys-0.8.3", |
| 633 | sha256 = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 634 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 635 | urls = ["https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download"], |
| 636 | strip_prefix = "core-foundation-sys-0.8.3", |
| 637 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.core-foundation-sys-0.8.3.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 638 | ) |
| 639 | |
| 640 | maybe( |
| 641 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 642 | name = "rules_rust_wasm_bindgen__cpufeatures-0.2.5", |
| 643 | sha256 = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 644 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 645 | urls = ["https://crates.io/api/v1/crates/cpufeatures/0.2.5/download"], |
| 646 | strip_prefix = "cpufeatures-0.2.5", |
| 647 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cpufeatures-0.2.5.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 648 | ) |
| 649 | |
| 650 | maybe( |
| 651 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 652 | name = "rules_rust_wasm_bindgen__crossbeam-channel-0.5.6", |
| 653 | sha256 = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 654 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 655 | urls = ["https://crates.io/api/v1/crates/crossbeam-channel/0.5.6/download"], |
| 656 | strip_prefix = "crossbeam-channel-0.5.6", |
| 657 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.crossbeam-channel-0.5.6.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 658 | ) |
| 659 | |
| 660 | maybe( |
| 661 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 662 | name = "rules_rust_wasm_bindgen__crossbeam-deque-0.8.2", |
| 663 | sha256 = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 664 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 665 | urls = ["https://crates.io/api/v1/crates/crossbeam-deque/0.8.2/download"], |
| 666 | strip_prefix = "crossbeam-deque-0.8.2", |
| 667 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.crossbeam-deque-0.8.2.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 668 | ) |
| 669 | |
| 670 | maybe( |
| 671 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 672 | name = "rules_rust_wasm_bindgen__crossbeam-epoch-0.9.13", |
| 673 | sha256 = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 674 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 675 | urls = ["https://crates.io/api/v1/crates/crossbeam-epoch/0.9.13/download"], |
| 676 | strip_prefix = "crossbeam-epoch-0.9.13", |
| 677 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.crossbeam-epoch-0.9.13.bazel"), |
| 678 | ) |
| 679 | |
| 680 | maybe( |
| 681 | http_archive, |
| 682 | name = "rules_rust_wasm_bindgen__crossbeam-utils-0.8.14", |
| 683 | sha256 = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f", |
| 684 | type = "tar.gz", |
| 685 | urls = ["https://crates.io/api/v1/crates/crossbeam-utils/0.8.14/download"], |
| 686 | strip_prefix = "crossbeam-utils-0.8.14", |
| 687 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.crossbeam-utils-0.8.14.bazel"), |
| 688 | ) |
| 689 | |
| 690 | maybe( |
| 691 | http_archive, |
| 692 | name = "rules_rust_wasm_bindgen__crypto-common-0.1.6", |
| 693 | sha256 = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3", |
| 694 | type = "tar.gz", |
| 695 | urls = ["https://crates.io/api/v1/crates/crypto-common/0.1.6/download"], |
| 696 | strip_prefix = "crypto-common-0.1.6", |
| 697 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.crypto-common-0.1.6.bazel"), |
| 698 | ) |
| 699 | |
| 700 | maybe( |
| 701 | http_archive, |
| 702 | name = "rules_rust_wasm_bindgen__curl-0.4.44", |
| 703 | sha256 = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22", |
| 704 | type = "tar.gz", |
| 705 | urls = ["https://crates.io/api/v1/crates/curl/0.4.44/download"], |
| 706 | strip_prefix = "curl-0.4.44", |
| 707 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.curl-0.4.44.bazel"), |
| 708 | ) |
| 709 | |
| 710 | maybe( |
| 711 | http_archive, |
| 712 | name = "rules_rust_wasm_bindgen__curl-sys-0.4.59-curl-7.86.0", |
| 713 | sha256 = "6cfce34829f448b08f55b7db6d0009e23e2e86a34e8c2b366269bf5799b4a407", |
| 714 | type = "tar.gz", |
| 715 | urls = ["https://crates.io/api/v1/crates/curl-sys/0.4.59+curl-7.86.0/download"], |
| 716 | strip_prefix = "curl-sys-0.4.59+curl-7.86.0", |
| 717 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.curl-sys-0.4.59+curl-7.86.0.bazel"), |
| 718 | ) |
| 719 | |
| 720 | maybe( |
| 721 | http_archive, |
| 722 | name = "rules_rust_wasm_bindgen__cxx-1.0.85", |
| 723 | sha256 = "5add3fc1717409d029b20c5b6903fc0c0b02fa6741d820054f4a2efa5e5816fd", |
| 724 | type = "tar.gz", |
| 725 | urls = ["https://crates.io/api/v1/crates/cxx/1.0.85/download"], |
| 726 | strip_prefix = "cxx-1.0.85", |
| 727 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cxx-1.0.85.bazel"), |
| 728 | ) |
| 729 | |
| 730 | maybe( |
| 731 | http_archive, |
| 732 | name = "rules_rust_wasm_bindgen__cxx-build-1.0.85", |
| 733 | sha256 = "b4c87959ba14bc6fbc61df77c3fcfe180fc32b93538c4f1031dd802ccb5f2ff0", |
| 734 | type = "tar.gz", |
| 735 | urls = ["https://crates.io/api/v1/crates/cxx-build/1.0.85/download"], |
| 736 | strip_prefix = "cxx-build-1.0.85", |
| 737 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cxx-build-1.0.85.bazel"), |
| 738 | ) |
| 739 | |
| 740 | maybe( |
| 741 | http_archive, |
| 742 | name = "rules_rust_wasm_bindgen__cxxbridge-flags-1.0.85", |
| 743 | sha256 = "69a3e162fde4e594ed2b07d0f83c6c67b745e7f28ce58c6df5e6b6bef99dfb59", |
| 744 | type = "tar.gz", |
| 745 | urls = ["https://crates.io/api/v1/crates/cxxbridge-flags/1.0.85/download"], |
| 746 | strip_prefix = "cxxbridge-flags-1.0.85", |
| 747 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cxxbridge-flags-1.0.85.bazel"), |
| 748 | ) |
| 749 | |
| 750 | maybe( |
| 751 | http_archive, |
| 752 | name = "rules_rust_wasm_bindgen__cxxbridge-macro-1.0.85", |
| 753 | sha256 = "3e7e2adeb6a0d4a282e581096b06e1791532b7d576dcde5ccd9382acf55db8e6", |
| 754 | type = "tar.gz", |
| 755 | urls = ["https://crates.io/api/v1/crates/cxxbridge-macro/1.0.85/download"], |
| 756 | strip_prefix = "cxxbridge-macro-1.0.85", |
| 757 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.cxxbridge-macro-1.0.85.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 758 | ) |
| 759 | |
| 760 | maybe( |
| 761 | http_archive, |
| 762 | name = "rules_rust_wasm_bindgen__diff-0.1.13", |
| 763 | sha256 = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8", |
| 764 | type = "tar.gz", |
| 765 | urls = ["https://crates.io/api/v1/crates/diff/0.1.13/download"], |
| 766 | strip_prefix = "diff-0.1.13", |
| 767 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.diff-0.1.13.bazel"), |
| 768 | ) |
| 769 | |
| 770 | maybe( |
| 771 | http_archive, |
| 772 | name = "rules_rust_wasm_bindgen__difference-2.0.0", |
| 773 | sha256 = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198", |
| 774 | type = "tar.gz", |
| 775 | urls = ["https://crates.io/api/v1/crates/difference/2.0.0/download"], |
| 776 | strip_prefix = "difference-2.0.0", |
| 777 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.difference-2.0.0.bazel"), |
| 778 | ) |
| 779 | |
| 780 | maybe( |
| 781 | http_archive, |
| 782 | name = "rules_rust_wasm_bindgen__difflib-0.4.0", |
| 783 | sha256 = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8", |
| 784 | type = "tar.gz", |
| 785 | urls = ["https://crates.io/api/v1/crates/difflib/0.4.0/download"], |
| 786 | strip_prefix = "difflib-0.4.0", |
| 787 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.difflib-0.4.0.bazel"), |
| 788 | ) |
| 789 | |
| 790 | maybe( |
| 791 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 792 | name = "rules_rust_wasm_bindgen__digest-0.10.6", |
| 793 | sha256 = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f", |
| 794 | type = "tar.gz", |
| 795 | urls = ["https://crates.io/api/v1/crates/digest/0.10.6/download"], |
| 796 | strip_prefix = "digest-0.10.6", |
| 797 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.digest-0.10.6.bazel"), |
| 798 | ) |
| 799 | |
| 800 | maybe( |
| 801 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 802 | name = "rules_rust_wasm_bindgen__doc-comment-0.3.3", |
| 803 | sha256 = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10", |
| 804 | type = "tar.gz", |
| 805 | urls = ["https://crates.io/api/v1/crates/doc-comment/0.3.3/download"], |
| 806 | strip_prefix = "doc-comment-0.3.3", |
| 807 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.doc-comment-0.3.3.bazel"), |
| 808 | ) |
| 809 | |
| 810 | maybe( |
| 811 | http_archive, |
| 812 | name = "rules_rust_wasm_bindgen__docopt-1.1.1", |
| 813 | sha256 = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f", |
| 814 | type = "tar.gz", |
| 815 | urls = ["https://crates.io/api/v1/crates/docopt/1.1.1/download"], |
| 816 | strip_prefix = "docopt-1.1.1", |
| 817 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.docopt-1.1.1.bazel"), |
| 818 | ) |
| 819 | |
| 820 | maybe( |
| 821 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 822 | name = "rules_rust_wasm_bindgen__either-1.8.0", |
| 823 | sha256 = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 824 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 825 | urls = ["https://crates.io/api/v1/crates/either/1.8.0/download"], |
| 826 | strip_prefix = "either-1.8.0", |
| 827 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.either-1.8.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 828 | ) |
| 829 | |
| 830 | maybe( |
| 831 | http_archive, |
| 832 | name = "rules_rust_wasm_bindgen__env_logger-0.8.4", |
| 833 | sha256 = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3", |
| 834 | type = "tar.gz", |
| 835 | urls = ["https://crates.io/api/v1/crates/env_logger/0.8.4/download"], |
| 836 | strip_prefix = "env_logger-0.8.4", |
| 837 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.env_logger-0.8.4.bazel"), |
| 838 | ) |
| 839 | |
| 840 | maybe( |
| 841 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 842 | name = "rules_rust_wasm_bindgen__fastrand-1.8.0", |
| 843 | sha256 = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 844 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 845 | urls = ["https://crates.io/api/v1/crates/fastrand/1.8.0/download"], |
| 846 | strip_prefix = "fastrand-1.8.0", |
| 847 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.fastrand-1.8.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 848 | ) |
| 849 | |
| 850 | maybe( |
| 851 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 852 | name = "rules_rust_wasm_bindgen__filetime-0.2.19", |
| 853 | sha256 = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 854 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 855 | urls = ["https://crates.io/api/v1/crates/filetime/0.2.19/download"], |
| 856 | strip_prefix = "filetime-0.2.19", |
| 857 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.filetime-0.2.19.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 858 | ) |
| 859 | |
| 860 | maybe( |
| 861 | http_archive, |
| 862 | name = "rules_rust_wasm_bindgen__float-cmp-0.8.0", |
| 863 | sha256 = "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4", |
| 864 | type = "tar.gz", |
| 865 | urls = ["https://crates.io/api/v1/crates/float-cmp/0.8.0/download"], |
| 866 | strip_prefix = "float-cmp-0.8.0", |
| 867 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.float-cmp-0.8.0.bazel"), |
| 868 | ) |
| 869 | |
| 870 | maybe( |
| 871 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 872 | name = "rules_rust_wasm_bindgen__form_urlencoded-1.1.0", |
| 873 | sha256 = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 874 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 875 | urls = ["https://crates.io/api/v1/crates/form_urlencoded/1.1.0/download"], |
| 876 | strip_prefix = "form_urlencoded-1.1.0", |
| 877 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.form_urlencoded-1.1.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 878 | ) |
| 879 | |
| 880 | maybe( |
| 881 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 882 | name = "rules_rust_wasm_bindgen__generic-array-0.14.6", |
| 883 | sha256 = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 884 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 885 | urls = ["https://crates.io/api/v1/crates/generic-array/0.14.6/download"], |
| 886 | strip_prefix = "generic-array-0.14.6", |
| 887 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.generic-array-0.14.6.bazel"), |
| 888 | ) |
| 889 | |
| 890 | maybe( |
| 891 | http_archive, |
| 892 | name = "rules_rust_wasm_bindgen__getrandom-0.2.8", |
| 893 | sha256 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31", |
| 894 | type = "tar.gz", |
| 895 | urls = ["https://crates.io/api/v1/crates/getrandom/0.2.8/download"], |
| 896 | strip_prefix = "getrandom-0.2.8", |
| 897 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.getrandom-0.2.8.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 898 | ) |
| 899 | |
| 900 | maybe( |
| 901 | http_archive, |
| 902 | name = "rules_rust_wasm_bindgen__heck-0.3.3", |
| 903 | sha256 = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c", |
| 904 | type = "tar.gz", |
| 905 | urls = ["https://crates.io/api/v1/crates/heck/0.3.3/download"], |
| 906 | strip_prefix = "heck-0.3.3", |
| 907 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.heck-0.3.3.bazel"), |
| 908 | ) |
| 909 | |
| 910 | maybe( |
| 911 | http_archive, |
| 912 | name = "rules_rust_wasm_bindgen__hermit-abi-0.1.19", |
| 913 | sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", |
| 914 | type = "tar.gz", |
| 915 | urls = ["https://crates.io/api/v1/crates/hermit-abi/0.1.19/download"], |
| 916 | strip_prefix = "hermit-abi-0.1.19", |
| 917 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.hermit-abi-0.1.19.bazel"), |
| 918 | ) |
| 919 | |
| 920 | maybe( |
| 921 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 922 | name = "rules_rust_wasm_bindgen__hermit-abi-0.2.6", |
| 923 | sha256 = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 924 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 925 | urls = ["https://crates.io/api/v1/crates/hermit-abi/0.2.6/download"], |
| 926 | strip_prefix = "hermit-abi-0.2.6", |
| 927 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.hermit-abi-0.2.6.bazel"), |
| 928 | ) |
| 929 | |
| 930 | maybe( |
| 931 | http_archive, |
| 932 | name = "rules_rust_wasm_bindgen__httparse-1.8.0", |
| 933 | sha256 = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904", |
| 934 | type = "tar.gz", |
| 935 | urls = ["https://crates.io/api/v1/crates/httparse/1.8.0/download"], |
| 936 | strip_prefix = "httparse-1.8.0", |
| 937 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.httparse-1.8.0.bazel"), |
| 938 | ) |
| 939 | |
| 940 | maybe( |
| 941 | http_archive, |
| 942 | name = "rules_rust_wasm_bindgen__httpdate-1.0.2", |
| 943 | sha256 = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421", |
| 944 | type = "tar.gz", |
| 945 | urls = ["https://crates.io/api/v1/crates/httpdate/1.0.2/download"], |
| 946 | strip_prefix = "httpdate-1.0.2", |
| 947 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.httpdate-1.0.2.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 948 | ) |
| 949 | |
| 950 | maybe( |
| 951 | http_archive, |
| 952 | name = "rules_rust_wasm_bindgen__humantime-2.1.0", |
| 953 | sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4", |
| 954 | type = "tar.gz", |
| 955 | urls = ["https://crates.io/api/v1/crates/humantime/2.1.0/download"], |
| 956 | strip_prefix = "humantime-2.1.0", |
| 957 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.humantime-2.1.0.bazel"), |
| 958 | ) |
| 959 | |
| 960 | maybe( |
| 961 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 962 | name = "rules_rust_wasm_bindgen__iana-time-zone-0.1.53", |
| 963 | sha256 = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765", |
| 964 | type = "tar.gz", |
| 965 | urls = ["https://crates.io/api/v1/crates/iana-time-zone/0.1.53/download"], |
| 966 | strip_prefix = "iana-time-zone-0.1.53", |
| 967 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.iana-time-zone-0.1.53.bazel"), |
| 968 | ) |
| 969 | |
| 970 | maybe( |
| 971 | http_archive, |
| 972 | name = "rules_rust_wasm_bindgen__iana-time-zone-haiku-0.1.1", |
| 973 | sha256 = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca", |
| 974 | type = "tar.gz", |
| 975 | urls = ["https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.1/download"], |
| 976 | strip_prefix = "iana-time-zone-haiku-0.1.1", |
| 977 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.iana-time-zone-haiku-0.1.1.bazel"), |
| 978 | ) |
| 979 | |
| 980 | maybe( |
| 981 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 982 | name = "rules_rust_wasm_bindgen__id-arena-2.2.1", |
| 983 | sha256 = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005", |
| 984 | type = "tar.gz", |
| 985 | urls = ["https://crates.io/api/v1/crates/id-arena/2.2.1/download"], |
| 986 | strip_prefix = "id-arena-2.2.1", |
| 987 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.id-arena-2.2.1.bazel"), |
| 988 | ) |
| 989 | |
| 990 | maybe( |
| 991 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 992 | name = "rules_rust_wasm_bindgen__idna-0.3.0", |
| 993 | sha256 = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 994 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 995 | urls = ["https://crates.io/api/v1/crates/idna/0.3.0/download"], |
| 996 | strip_prefix = "idna-0.3.0", |
| 997 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.idna-0.3.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 998 | ) |
| 999 | |
| 1000 | maybe( |
| 1001 | http_archive, |
| 1002 | name = "rules_rust_wasm_bindgen__instant-0.1.12", |
| 1003 | sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c", |
| 1004 | type = "tar.gz", |
| 1005 | urls = ["https://crates.io/api/v1/crates/instant/0.1.12/download"], |
| 1006 | strip_prefix = "instant-0.1.12", |
| 1007 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.instant-0.1.12.bazel"), |
| 1008 | ) |
| 1009 | |
| 1010 | maybe( |
| 1011 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1012 | name = "rules_rust_wasm_bindgen__itertools-0.10.5", |
| 1013 | sha256 = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1014 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1015 | urls = ["https://crates.io/api/v1/crates/itertools/0.10.5/download"], |
| 1016 | strip_prefix = "itertools-0.10.5", |
| 1017 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.itertools-0.10.5.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1018 | ) |
| 1019 | |
| 1020 | maybe( |
| 1021 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1022 | name = "rules_rust_wasm_bindgen__itoa-1.0.5", |
| 1023 | sha256 = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1024 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1025 | urls = ["https://crates.io/api/v1/crates/itoa/1.0.5/download"], |
| 1026 | strip_prefix = "itoa-1.0.5", |
| 1027 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.itoa-1.0.5.bazel"), |
| 1028 | ) |
| 1029 | |
| 1030 | maybe( |
| 1031 | http_archive, |
| 1032 | name = "rules_rust_wasm_bindgen__js-sys-0.3.60", |
| 1033 | sha256 = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47", |
| 1034 | type = "tar.gz", |
| 1035 | urls = ["https://crates.io/api/v1/crates/js-sys/0.3.60/download"], |
| 1036 | strip_prefix = "js-sys-0.3.60", |
| 1037 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.js-sys-0.3.60.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1038 | ) |
| 1039 | |
| 1040 | maybe( |
| 1041 | http_archive, |
| 1042 | name = "rules_rust_wasm_bindgen__lazy_static-1.4.0", |
| 1043 | sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", |
| 1044 | type = "tar.gz", |
| 1045 | urls = ["https://crates.io/api/v1/crates/lazy_static/1.4.0/download"], |
| 1046 | strip_prefix = "lazy_static-1.4.0", |
| 1047 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.lazy_static-1.4.0.bazel"), |
| 1048 | ) |
| 1049 | |
| 1050 | maybe( |
| 1051 | http_archive, |
| 1052 | name = "rules_rust_wasm_bindgen__leb128-0.2.5", |
| 1053 | sha256 = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67", |
| 1054 | type = "tar.gz", |
| 1055 | urls = ["https://crates.io/api/v1/crates/leb128/0.2.5/download"], |
| 1056 | strip_prefix = "leb128-0.2.5", |
| 1057 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.leb128-0.2.5.bazel"), |
| 1058 | ) |
| 1059 | |
| 1060 | maybe( |
| 1061 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1062 | name = "rules_rust_wasm_bindgen__libc-0.2.139", |
| 1063 | sha256 = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1064 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1065 | urls = ["https://crates.io/api/v1/crates/libc/0.2.139/download"], |
| 1066 | strip_prefix = "libc-0.2.139", |
| 1067 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.libc-0.2.139.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1068 | ) |
| 1069 | |
| 1070 | maybe( |
| 1071 | http_archive, |
| 1072 | name = "rules_rust_wasm_bindgen__libz-sys-1.1.8", |
| 1073 | sha256 = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf", |
| 1074 | type = "tar.gz", |
| 1075 | urls = ["https://crates.io/api/v1/crates/libz-sys/1.1.8/download"], |
| 1076 | strip_prefix = "libz-sys-1.1.8", |
| 1077 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.libz-sys-1.1.8.bazel"), |
| 1078 | ) |
| 1079 | |
| 1080 | maybe( |
| 1081 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1082 | name = "rules_rust_wasm_bindgen__link-cplusplus-1.0.8", |
| 1083 | sha256 = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5", |
| 1084 | type = "tar.gz", |
| 1085 | urls = ["https://crates.io/api/v1/crates/link-cplusplus/1.0.8/download"], |
| 1086 | strip_prefix = "link-cplusplus-1.0.8", |
| 1087 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.link-cplusplus-1.0.8.bazel"), |
| 1088 | ) |
| 1089 | |
| 1090 | maybe( |
| 1091 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1092 | name = "rules_rust_wasm_bindgen__log-0.4.17", |
| 1093 | sha256 = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e", |
| 1094 | type = "tar.gz", |
| 1095 | urls = ["https://crates.io/api/v1/crates/log/0.4.17/download"], |
| 1096 | strip_prefix = "log-0.4.17", |
| 1097 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.log-0.4.17.bazel"), |
| 1098 | ) |
| 1099 | |
| 1100 | maybe( |
| 1101 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1102 | name = "rules_rust_wasm_bindgen__memchr-2.5.0", |
| 1103 | sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", |
| 1104 | type = "tar.gz", |
| 1105 | urls = ["https://crates.io/api/v1/crates/memchr/2.5.0/download"], |
| 1106 | strip_prefix = "memchr-2.5.0", |
| 1107 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.memchr-2.5.0.bazel"), |
| 1108 | ) |
| 1109 | |
| 1110 | maybe( |
| 1111 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1112 | name = "rules_rust_wasm_bindgen__memoffset-0.7.1", |
| 1113 | sha256 = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1114 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1115 | urls = ["https://crates.io/api/v1/crates/memoffset/0.7.1/download"], |
| 1116 | strip_prefix = "memoffset-0.7.1", |
| 1117 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.memoffset-0.7.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1118 | ) |
| 1119 | |
| 1120 | maybe( |
| 1121 | http_archive, |
| 1122 | name = "rules_rust_wasm_bindgen__mime-0.3.16", |
| 1123 | sha256 = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d", |
| 1124 | type = "tar.gz", |
| 1125 | urls = ["https://crates.io/api/v1/crates/mime/0.3.16/download"], |
| 1126 | strip_prefix = "mime-0.3.16", |
| 1127 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.mime-0.3.16.bazel"), |
| 1128 | ) |
| 1129 | |
| 1130 | maybe( |
| 1131 | http_archive, |
| 1132 | name = "rules_rust_wasm_bindgen__mime_guess-2.0.4", |
| 1133 | sha256 = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef", |
| 1134 | type = "tar.gz", |
| 1135 | urls = ["https://crates.io/api/v1/crates/mime_guess/2.0.4/download"], |
| 1136 | strip_prefix = "mime_guess-2.0.4", |
| 1137 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.mime_guess-2.0.4.bazel"), |
| 1138 | ) |
| 1139 | |
| 1140 | maybe( |
| 1141 | http_archive, |
| 1142 | name = "rules_rust_wasm_bindgen__multipart-0.18.0", |
| 1143 | sha256 = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182", |
| 1144 | type = "tar.gz", |
| 1145 | urls = ["https://crates.io/api/v1/crates/multipart/0.18.0/download"], |
| 1146 | strip_prefix = "multipart-0.18.0", |
| 1147 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.multipart-0.18.0.bazel"), |
| 1148 | ) |
| 1149 | |
| 1150 | maybe( |
| 1151 | http_archive, |
| 1152 | name = "rules_rust_wasm_bindgen__normalize-line-endings-0.3.0", |
| 1153 | sha256 = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be", |
| 1154 | type = "tar.gz", |
| 1155 | urls = ["https://crates.io/api/v1/crates/normalize-line-endings/0.3.0/download"], |
| 1156 | strip_prefix = "normalize-line-endings-0.3.0", |
| 1157 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.normalize-line-endings-0.3.0.bazel"), |
| 1158 | ) |
| 1159 | |
| 1160 | maybe( |
| 1161 | http_archive, |
| 1162 | name = "rules_rust_wasm_bindgen__num-integer-0.1.45", |
| 1163 | sha256 = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9", |
| 1164 | type = "tar.gz", |
| 1165 | urls = ["https://crates.io/api/v1/crates/num-integer/0.1.45/download"], |
| 1166 | strip_prefix = "num-integer-0.1.45", |
| 1167 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.num-integer-0.1.45.bazel"), |
| 1168 | ) |
| 1169 | |
| 1170 | maybe( |
| 1171 | http_archive, |
| 1172 | name = "rules_rust_wasm_bindgen__num-traits-0.2.15", |
| 1173 | sha256 = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd", |
| 1174 | type = "tar.gz", |
| 1175 | urls = ["https://crates.io/api/v1/crates/num-traits/0.2.15/download"], |
| 1176 | strip_prefix = "num-traits-0.2.15", |
| 1177 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.num-traits-0.2.15.bazel"), |
| 1178 | ) |
| 1179 | |
| 1180 | maybe( |
| 1181 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1182 | name = "rules_rust_wasm_bindgen__num_cpus-1.15.0", |
| 1183 | sha256 = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1184 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1185 | urls = ["https://crates.io/api/v1/crates/num_cpus/1.15.0/download"], |
| 1186 | strip_prefix = "num_cpus-1.15.0", |
| 1187 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.num_cpus-1.15.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1188 | ) |
| 1189 | |
| 1190 | maybe( |
| 1191 | http_archive, |
| 1192 | name = "rules_rust_wasm_bindgen__num_threads-0.1.6", |
| 1193 | sha256 = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44", |
| 1194 | type = "tar.gz", |
| 1195 | urls = ["https://crates.io/api/v1/crates/num_threads/0.1.6/download"], |
| 1196 | strip_prefix = "num_threads-0.1.6", |
| 1197 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.num_threads-0.1.6.bazel"), |
| 1198 | ) |
| 1199 | |
| 1200 | maybe( |
| 1201 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1202 | name = "rules_rust_wasm_bindgen__once_cell-1.17.0", |
| 1203 | sha256 = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1204 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1205 | urls = ["https://crates.io/api/v1/crates/once_cell/1.17.0/download"], |
| 1206 | strip_prefix = "once_cell-1.17.0", |
| 1207 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.once_cell-1.17.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1208 | ) |
| 1209 | |
| 1210 | maybe( |
| 1211 | http_archive, |
| 1212 | name = "rules_rust_wasm_bindgen__openssl-probe-0.1.5", |
| 1213 | sha256 = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf", |
| 1214 | type = "tar.gz", |
| 1215 | urls = ["https://crates.io/api/v1/crates/openssl-probe/0.1.5/download"], |
| 1216 | strip_prefix = "openssl-probe-0.1.5", |
| 1217 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.openssl-probe-0.1.5.bazel"), |
| 1218 | ) |
| 1219 | |
| 1220 | maybe( |
| 1221 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1222 | name = "rules_rust_wasm_bindgen__openssl-sys-0.9.80", |
| 1223 | sha256 = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1224 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1225 | urls = ["https://crates.io/api/v1/crates/openssl-sys/0.9.80/download"], |
| 1226 | strip_prefix = "openssl-sys-0.9.80", |
| 1227 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.openssl-sys-0.9.80.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1228 | ) |
| 1229 | |
| 1230 | maybe( |
| 1231 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1232 | name = "rules_rust_wasm_bindgen__percent-encoding-2.2.0", |
| 1233 | sha256 = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1234 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1235 | urls = ["https://crates.io/api/v1/crates/percent-encoding/2.2.0/download"], |
| 1236 | strip_prefix = "percent-encoding-2.2.0", |
| 1237 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.percent-encoding-2.2.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1238 | ) |
| 1239 | |
| 1240 | maybe( |
| 1241 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1242 | name = "rules_rust_wasm_bindgen__pkg-config-0.3.26", |
| 1243 | sha256 = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1244 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1245 | urls = ["https://crates.io/api/v1/crates/pkg-config/0.3.26/download"], |
| 1246 | strip_prefix = "pkg-config-0.3.26", |
| 1247 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.pkg-config-0.3.26.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1248 | ) |
| 1249 | |
| 1250 | maybe( |
| 1251 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1252 | name = "rules_rust_wasm_bindgen__ppv-lite86-0.2.17", |
| 1253 | sha256 = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1254 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1255 | urls = ["https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download"], |
| 1256 | strip_prefix = "ppv-lite86-0.2.17", |
| 1257 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.ppv-lite86-0.2.17.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1258 | ) |
| 1259 | |
| 1260 | maybe( |
| 1261 | http_archive, |
| 1262 | name = "rules_rust_wasm_bindgen__predicates-1.0.8", |
| 1263 | sha256 = "f49cfaf7fdaa3bfacc6fa3e7054e65148878354a5cfddcf661df4c851f8021df", |
| 1264 | type = "tar.gz", |
| 1265 | urls = ["https://crates.io/api/v1/crates/predicates/1.0.8/download"], |
| 1266 | strip_prefix = "predicates-1.0.8", |
| 1267 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.predicates-1.0.8.bazel"), |
| 1268 | ) |
| 1269 | |
| 1270 | maybe( |
| 1271 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1272 | name = "rules_rust_wasm_bindgen__predicates-2.1.5", |
| 1273 | sha256 = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1274 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1275 | urls = ["https://crates.io/api/v1/crates/predicates/2.1.5/download"], |
| 1276 | strip_prefix = "predicates-2.1.5", |
| 1277 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.predicates-2.1.5.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1278 | ) |
| 1279 | |
| 1280 | maybe( |
| 1281 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1282 | name = "rules_rust_wasm_bindgen__predicates-core-1.0.5", |
| 1283 | sha256 = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1284 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1285 | urls = ["https://crates.io/api/v1/crates/predicates-core/1.0.5/download"], |
| 1286 | strip_prefix = "predicates-core-1.0.5", |
| 1287 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.predicates-core-1.0.5.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1288 | ) |
| 1289 | |
| 1290 | maybe( |
| 1291 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1292 | name = "rules_rust_wasm_bindgen__predicates-tree-1.0.7", |
| 1293 | sha256 = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1294 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1295 | urls = ["https://crates.io/api/v1/crates/predicates-tree/1.0.7/download"], |
| 1296 | strip_prefix = "predicates-tree-1.0.7", |
| 1297 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.predicates-tree-1.0.7.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1298 | ) |
| 1299 | |
| 1300 | maybe( |
| 1301 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1302 | name = "rules_rust_wasm_bindgen__proc-macro2-1.0.49", |
| 1303 | sha256 = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1304 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1305 | urls = ["https://crates.io/api/v1/crates/proc-macro2/1.0.49/download"], |
| 1306 | strip_prefix = "proc-macro2-1.0.49", |
| 1307 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.proc-macro2-1.0.49.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1308 | ) |
| 1309 | |
| 1310 | maybe( |
| 1311 | http_archive, |
| 1312 | name = "rules_rust_wasm_bindgen__quick-error-1.2.3", |
| 1313 | sha256 = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0", |
| 1314 | type = "tar.gz", |
| 1315 | urls = ["https://crates.io/api/v1/crates/quick-error/1.2.3/download"], |
| 1316 | strip_prefix = "quick-error-1.2.3", |
| 1317 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.quick-error-1.2.3.bazel"), |
| 1318 | ) |
| 1319 | |
| 1320 | maybe( |
| 1321 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1322 | name = "rules_rust_wasm_bindgen__quote-1.0.23", |
| 1323 | sha256 = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1324 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1325 | urls = ["https://crates.io/api/v1/crates/quote/1.0.23/download"], |
| 1326 | strip_prefix = "quote-1.0.23", |
| 1327 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.quote-1.0.23.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1328 | ) |
| 1329 | |
| 1330 | maybe( |
| 1331 | http_archive, |
| 1332 | name = "rules_rust_wasm_bindgen__rand-0.8.5", |
| 1333 | sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", |
| 1334 | type = "tar.gz", |
| 1335 | urls = ["https://crates.io/api/v1/crates/rand/0.8.5/download"], |
| 1336 | strip_prefix = "rand-0.8.5", |
| 1337 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rand-0.8.5.bazel"), |
| 1338 | ) |
| 1339 | |
| 1340 | maybe( |
| 1341 | http_archive, |
| 1342 | name = "rules_rust_wasm_bindgen__rand_chacha-0.3.1", |
| 1343 | sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", |
| 1344 | type = "tar.gz", |
| 1345 | urls = ["https://crates.io/api/v1/crates/rand_chacha/0.3.1/download"], |
| 1346 | strip_prefix = "rand_chacha-0.3.1", |
| 1347 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rand_chacha-0.3.1.bazel"), |
| 1348 | ) |
| 1349 | |
| 1350 | maybe( |
| 1351 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1352 | name = "rules_rust_wasm_bindgen__rand_core-0.6.4", |
| 1353 | sha256 = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1354 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1355 | urls = ["https://crates.io/api/v1/crates/rand_core/0.6.4/download"], |
| 1356 | strip_prefix = "rand_core-0.6.4", |
| 1357 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rand_core-0.6.4.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1358 | ) |
| 1359 | |
| 1360 | maybe( |
| 1361 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1362 | name = "rules_rust_wasm_bindgen__rayon-1.6.1", |
| 1363 | sha256 = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1364 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1365 | urls = ["https://crates.io/api/v1/crates/rayon/1.6.1/download"], |
| 1366 | strip_prefix = "rayon-1.6.1", |
| 1367 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rayon-1.6.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1368 | ) |
| 1369 | |
| 1370 | maybe( |
| 1371 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1372 | name = "rules_rust_wasm_bindgen__rayon-core-1.10.1", |
| 1373 | sha256 = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1374 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1375 | urls = ["https://crates.io/api/v1/crates/rayon-core/1.10.1/download"], |
| 1376 | strip_prefix = "rayon-core-1.10.1", |
| 1377 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rayon-core-1.10.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1378 | ) |
| 1379 | |
| 1380 | maybe( |
| 1381 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1382 | name = "rules_rust_wasm_bindgen__redox_syscall-0.2.16", |
| 1383 | sha256 = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1384 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1385 | urls = ["https://crates.io/api/v1/crates/redox_syscall/0.2.16/download"], |
| 1386 | strip_prefix = "redox_syscall-0.2.16", |
| 1387 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.redox_syscall-0.2.16.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1388 | ) |
| 1389 | |
| 1390 | maybe( |
| 1391 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1392 | name = "rules_rust_wasm_bindgen__regex-1.7.0", |
| 1393 | sha256 = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1394 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1395 | urls = ["https://crates.io/api/v1/crates/regex/1.7.0/download"], |
| 1396 | strip_prefix = "regex-1.7.0", |
| 1397 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.regex-1.7.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1398 | ) |
| 1399 | |
| 1400 | maybe( |
| 1401 | http_archive, |
| 1402 | name = "rules_rust_wasm_bindgen__regex-automata-0.1.10", |
| 1403 | sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132", |
| 1404 | type = "tar.gz", |
| 1405 | urls = ["https://crates.io/api/v1/crates/regex-automata/0.1.10/download"], |
| 1406 | strip_prefix = "regex-automata-0.1.10", |
| 1407 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.regex-automata-0.1.10.bazel"), |
| 1408 | ) |
| 1409 | |
| 1410 | maybe( |
| 1411 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1412 | name = "rules_rust_wasm_bindgen__regex-syntax-0.6.28", |
| 1413 | sha256 = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1414 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1415 | urls = ["https://crates.io/api/v1/crates/regex-syntax/0.6.28/download"], |
| 1416 | strip_prefix = "regex-syntax-0.6.28", |
| 1417 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.regex-syntax-0.6.28.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1418 | ) |
| 1419 | |
| 1420 | maybe( |
| 1421 | http_archive, |
| 1422 | name = "rules_rust_wasm_bindgen__remove_dir_all-0.5.3", |
| 1423 | sha256 = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7", |
| 1424 | type = "tar.gz", |
| 1425 | urls = ["https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download"], |
| 1426 | strip_prefix = "remove_dir_all-0.5.3", |
| 1427 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.remove_dir_all-0.5.3.bazel"), |
| 1428 | ) |
| 1429 | |
| 1430 | maybe( |
| 1431 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1432 | name = "rules_rust_wasm_bindgen__rouille-3.6.1", |
| 1433 | sha256 = "4f86e4c51a773f953f02bbab5fd049f004bfd384341d62da2a079aff812ab176", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1434 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1435 | urls = ["https://crates.io/api/v1/crates/rouille/3.6.1/download"], |
| 1436 | strip_prefix = "rouille-3.6.1", |
| 1437 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rouille-3.6.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1438 | ) |
| 1439 | |
| 1440 | maybe( |
| 1441 | http_archive, |
| 1442 | name = "rules_rust_wasm_bindgen__rustc-demangle-0.1.21", |
| 1443 | sha256 = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342", |
| 1444 | type = "tar.gz", |
| 1445 | urls = ["https://crates.io/api/v1/crates/rustc-demangle/0.1.21/download"], |
| 1446 | strip_prefix = "rustc-demangle-0.1.21", |
| 1447 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.rustc-demangle-0.1.21.bazel"), |
| 1448 | ) |
| 1449 | |
| 1450 | maybe( |
| 1451 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1452 | name = "rules_rust_wasm_bindgen__ryu-1.0.12", |
| 1453 | sha256 = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1454 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1455 | urls = ["https://crates.io/api/v1/crates/ryu/1.0.12/download"], |
| 1456 | strip_prefix = "ryu-1.0.12", |
| 1457 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.ryu-1.0.12.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1458 | ) |
| 1459 | |
| 1460 | maybe( |
| 1461 | http_archive, |
| 1462 | name = "rules_rust_wasm_bindgen__safemem-0.3.3", |
| 1463 | sha256 = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072", |
| 1464 | type = "tar.gz", |
| 1465 | urls = ["https://crates.io/api/v1/crates/safemem/0.3.3/download"], |
| 1466 | strip_prefix = "safemem-0.3.3", |
| 1467 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.safemem-0.3.3.bazel"), |
| 1468 | ) |
| 1469 | |
| 1470 | maybe( |
| 1471 | http_archive, |
| 1472 | name = "rules_rust_wasm_bindgen__schannel-0.1.20", |
| 1473 | sha256 = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2", |
| 1474 | type = "tar.gz", |
| 1475 | urls = ["https://crates.io/api/v1/crates/schannel/0.1.20/download"], |
| 1476 | strip_prefix = "schannel-0.1.20", |
| 1477 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.schannel-0.1.20.bazel"), |
| 1478 | ) |
| 1479 | |
| 1480 | maybe( |
| 1481 | http_archive, |
| 1482 | name = "rules_rust_wasm_bindgen__scopeguard-1.1.0", |
| 1483 | sha256 = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd", |
| 1484 | type = "tar.gz", |
| 1485 | urls = ["https://crates.io/api/v1/crates/scopeguard/1.1.0/download"], |
| 1486 | strip_prefix = "scopeguard-1.1.0", |
| 1487 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.scopeguard-1.1.0.bazel"), |
| 1488 | ) |
| 1489 | |
| 1490 | maybe( |
| 1491 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1492 | name = "rules_rust_wasm_bindgen__scratch-1.0.3", |
| 1493 | sha256 = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1494 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1495 | urls = ["https://crates.io/api/v1/crates/scratch/1.0.3/download"], |
| 1496 | strip_prefix = "scratch-1.0.3", |
| 1497 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.scratch-1.0.3.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1498 | ) |
| 1499 | |
| 1500 | maybe( |
| 1501 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1502 | name = "rules_rust_wasm_bindgen__serde-1.0.152", |
| 1503 | sha256 = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1504 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1505 | urls = ["https://crates.io/api/v1/crates/serde/1.0.152/download"], |
| 1506 | strip_prefix = "serde-1.0.152", |
| 1507 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.serde-1.0.152.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1508 | ) |
| 1509 | |
| 1510 | maybe( |
| 1511 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1512 | name = "rules_rust_wasm_bindgen__serde_derive-1.0.152", |
| 1513 | sha256 = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1514 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1515 | urls = ["https://crates.io/api/v1/crates/serde_derive/1.0.152/download"], |
| 1516 | strip_prefix = "serde_derive-1.0.152", |
| 1517 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.serde_derive-1.0.152.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1518 | ) |
| 1519 | |
| 1520 | maybe( |
| 1521 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1522 | name = "rules_rust_wasm_bindgen__serde_json-1.0.91", |
| 1523 | sha256 = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1524 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1525 | urls = ["https://crates.io/api/v1/crates/serde_json/1.0.91/download"], |
| 1526 | strip_prefix = "serde_json-1.0.91", |
| 1527 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.serde_json-1.0.91.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1528 | ) |
| 1529 | |
| 1530 | maybe( |
| 1531 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1532 | name = "rules_rust_wasm_bindgen__sha1-0.10.5", |
| 1533 | sha256 = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1534 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1535 | urls = ["https://crates.io/api/v1/crates/sha1/0.10.5/download"], |
| 1536 | strip_prefix = "sha1-0.10.5", |
| 1537 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.sha1-0.10.5.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1538 | ) |
| 1539 | |
| 1540 | maybe( |
| 1541 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1542 | name = "rules_rust_wasm_bindgen__socket2-0.4.7", |
| 1543 | sha256 = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1544 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1545 | urls = ["https://crates.io/api/v1/crates/socket2/0.4.7/download"], |
| 1546 | strip_prefix = "socket2-0.4.7", |
| 1547 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.socket2-0.4.7.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1548 | ) |
| 1549 | |
| 1550 | maybe( |
| 1551 | http_archive, |
| 1552 | name = "rules_rust_wasm_bindgen__strsim-0.10.0", |
| 1553 | sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623", |
| 1554 | type = "tar.gz", |
| 1555 | urls = ["https://crates.io/api/v1/crates/strsim/0.10.0/download"], |
| 1556 | strip_prefix = "strsim-0.10.0", |
| 1557 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.strsim-0.10.0.bazel"), |
| 1558 | ) |
| 1559 | |
| 1560 | maybe( |
| 1561 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1562 | name = "rules_rust_wasm_bindgen__syn-1.0.107", |
| 1563 | sha256 = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1564 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1565 | urls = ["https://crates.io/api/v1/crates/syn/1.0.107/download"], |
| 1566 | strip_prefix = "syn-1.0.107", |
| 1567 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.syn-1.0.107.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1568 | ) |
| 1569 | |
| 1570 | maybe( |
| 1571 | http_archive, |
| 1572 | name = "rules_rust_wasm_bindgen__tempfile-3.3.0", |
| 1573 | sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4", |
| 1574 | type = "tar.gz", |
| 1575 | urls = ["https://crates.io/api/v1/crates/tempfile/3.3.0/download"], |
| 1576 | strip_prefix = "tempfile-3.3.0", |
| 1577 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.tempfile-3.3.0.bazel"), |
| 1578 | ) |
| 1579 | |
| 1580 | maybe( |
| 1581 | http_archive, |
| 1582 | name = "rules_rust_wasm_bindgen__termcolor-1.1.3", |
| 1583 | sha256 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755", |
| 1584 | type = "tar.gz", |
| 1585 | urls = ["https://crates.io/api/v1/crates/termcolor/1.1.3/download"], |
| 1586 | strip_prefix = "termcolor-1.1.3", |
| 1587 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.termcolor-1.1.3.bazel"), |
| 1588 | ) |
| 1589 | |
| 1590 | maybe( |
| 1591 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1592 | name = "rules_rust_wasm_bindgen__termtree-0.4.0", |
| 1593 | sha256 = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1594 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1595 | urls = ["https://crates.io/api/v1/crates/termtree/0.4.0/download"], |
| 1596 | strip_prefix = "termtree-0.4.0", |
| 1597 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.termtree-0.4.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1598 | ) |
| 1599 | |
| 1600 | maybe( |
| 1601 | http_archive, |
| 1602 | name = "rules_rust_wasm_bindgen__threadpool-1.8.1", |
| 1603 | sha256 = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa", |
| 1604 | type = "tar.gz", |
| 1605 | urls = ["https://crates.io/api/v1/crates/threadpool/1.8.1/download"], |
| 1606 | strip_prefix = "threadpool-1.8.1", |
| 1607 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.threadpool-1.8.1.bazel"), |
| 1608 | ) |
| 1609 | |
| 1610 | maybe( |
| 1611 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1612 | name = "rules_rust_wasm_bindgen__time-0.3.17", |
| 1613 | sha256 = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1614 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1615 | urls = ["https://crates.io/api/v1/crates/time/0.3.17/download"], |
| 1616 | strip_prefix = "time-0.3.17", |
| 1617 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.time-0.3.17.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1618 | ) |
| 1619 | |
| 1620 | maybe( |
| 1621 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1622 | name = "rules_rust_wasm_bindgen__time-core-0.1.0", |
| 1623 | sha256 = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1624 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1625 | urls = ["https://crates.io/api/v1/crates/time-core/0.1.0/download"], |
| 1626 | strip_prefix = "time-core-0.1.0", |
| 1627 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.time-core-0.1.0.bazel"), |
| 1628 | ) |
| 1629 | |
| 1630 | maybe( |
| 1631 | http_archive, |
| 1632 | name = "rules_rust_wasm_bindgen__tiny_http-0.12.0", |
| 1633 | sha256 = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82", |
| 1634 | type = "tar.gz", |
| 1635 | urls = ["https://crates.io/api/v1/crates/tiny_http/0.12.0/download"], |
| 1636 | strip_prefix = "tiny_http-0.12.0", |
| 1637 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.tiny_http-0.12.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1638 | ) |
| 1639 | |
| 1640 | maybe( |
| 1641 | http_archive, |
| 1642 | name = "rules_rust_wasm_bindgen__tinyvec-1.6.0", |
| 1643 | sha256 = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50", |
| 1644 | type = "tar.gz", |
| 1645 | urls = ["https://crates.io/api/v1/crates/tinyvec/1.6.0/download"], |
| 1646 | strip_prefix = "tinyvec-1.6.0", |
| 1647 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.tinyvec-1.6.0.bazel"), |
| 1648 | ) |
| 1649 | |
| 1650 | maybe( |
| 1651 | http_archive, |
| 1652 | name = "rules_rust_wasm_bindgen__tinyvec_macros-0.1.0", |
| 1653 | sha256 = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c", |
| 1654 | type = "tar.gz", |
| 1655 | urls = ["https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download"], |
| 1656 | strip_prefix = "tinyvec_macros-0.1.0", |
| 1657 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.tinyvec_macros-0.1.0.bazel"), |
| 1658 | ) |
| 1659 | |
| 1660 | maybe( |
| 1661 | http_archive, |
| 1662 | name = "rules_rust_wasm_bindgen__twoway-0.1.8", |
| 1663 | sha256 = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1", |
| 1664 | type = "tar.gz", |
| 1665 | urls = ["https://crates.io/api/v1/crates/twoway/0.1.8/download"], |
| 1666 | strip_prefix = "twoway-0.1.8", |
| 1667 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.twoway-0.1.8.bazel"), |
| 1668 | ) |
| 1669 | |
| 1670 | maybe( |
| 1671 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1672 | name = "rules_rust_wasm_bindgen__typenum-1.16.0", |
| 1673 | sha256 = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba", |
| 1674 | type = "tar.gz", |
| 1675 | urls = ["https://crates.io/api/v1/crates/typenum/1.16.0/download"], |
| 1676 | strip_prefix = "typenum-1.16.0", |
| 1677 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.typenum-1.16.0.bazel"), |
| 1678 | ) |
| 1679 | |
| 1680 | maybe( |
| 1681 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1682 | name = "rules_rust_wasm_bindgen__unicase-2.6.0", |
| 1683 | sha256 = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6", |
| 1684 | type = "tar.gz", |
| 1685 | urls = ["https://crates.io/api/v1/crates/unicase/2.6.0/download"], |
| 1686 | strip_prefix = "unicase-2.6.0", |
| 1687 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.unicase-2.6.0.bazel"), |
| 1688 | ) |
| 1689 | |
| 1690 | maybe( |
| 1691 | http_archive, |
| 1692 | name = "rules_rust_wasm_bindgen__unicode-bidi-0.3.8", |
| 1693 | sha256 = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992", |
| 1694 | type = "tar.gz", |
| 1695 | urls = ["https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download"], |
| 1696 | strip_prefix = "unicode-bidi-0.3.8", |
| 1697 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.unicode-bidi-0.3.8.bazel"), |
| 1698 | ) |
| 1699 | |
| 1700 | maybe( |
| 1701 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1702 | name = "rules_rust_wasm_bindgen__unicode-ident-1.0.6", |
| 1703 | sha256 = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1704 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1705 | urls = ["https://crates.io/api/v1/crates/unicode-ident/1.0.6/download"], |
| 1706 | strip_prefix = "unicode-ident-1.0.6", |
| 1707 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.unicode-ident-1.0.6.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1708 | ) |
| 1709 | |
| 1710 | maybe( |
| 1711 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1712 | name = "rules_rust_wasm_bindgen__unicode-normalization-0.1.22", |
| 1713 | sha256 = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1714 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1715 | urls = ["https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download"], |
| 1716 | strip_prefix = "unicode-normalization-0.1.22", |
| 1717 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.unicode-normalization-0.1.22.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1718 | ) |
| 1719 | |
| 1720 | maybe( |
| 1721 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1722 | name = "rules_rust_wasm_bindgen__unicode-segmentation-1.10.0", |
| 1723 | sha256 = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1724 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1725 | urls = ["https://crates.io/api/v1/crates/unicode-segmentation/1.10.0/download"], |
| 1726 | strip_prefix = "unicode-segmentation-1.10.0", |
| 1727 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.unicode-segmentation-1.10.0.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1728 | ) |
| 1729 | |
| 1730 | maybe( |
| 1731 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1732 | name = "rules_rust_wasm_bindgen__unicode-width-0.1.10", |
| 1733 | sha256 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1734 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1735 | urls = ["https://crates.io/api/v1/crates/unicode-width/0.1.10/download"], |
| 1736 | strip_prefix = "unicode-width-0.1.10", |
| 1737 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.unicode-width-0.1.10.bazel"), |
| 1738 | ) |
| 1739 | |
| 1740 | maybe( |
| 1741 | http_archive, |
| 1742 | name = "rules_rust_wasm_bindgen__url-2.3.1", |
| 1743 | sha256 = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643", |
| 1744 | type = "tar.gz", |
| 1745 | urls = ["https://crates.io/api/v1/crates/url/2.3.1/download"], |
| 1746 | strip_prefix = "url-2.3.1", |
| 1747 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.url-2.3.1.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1748 | ) |
| 1749 | |
| 1750 | maybe( |
| 1751 | http_archive, |
| 1752 | name = "rules_rust_wasm_bindgen__vcpkg-0.2.15", |
| 1753 | sha256 = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426", |
| 1754 | type = "tar.gz", |
| 1755 | urls = ["https://crates.io/api/v1/crates/vcpkg/0.2.15/download"], |
| 1756 | strip_prefix = "vcpkg-0.2.15", |
| 1757 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.vcpkg-0.2.15.bazel"), |
| 1758 | ) |
| 1759 | |
| 1760 | maybe( |
| 1761 | http_archive, |
| 1762 | name = "rules_rust_wasm_bindgen__version_check-0.9.4", |
| 1763 | sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", |
| 1764 | type = "tar.gz", |
| 1765 | urls = ["https://crates.io/api/v1/crates/version_check/0.9.4/download"], |
| 1766 | strip_prefix = "version_check-0.9.4", |
| 1767 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.version_check-0.9.4.bazel"), |
| 1768 | ) |
| 1769 | |
| 1770 | maybe( |
| 1771 | http_archive, |
| 1772 | name = "rules_rust_wasm_bindgen__wait-timeout-0.2.0", |
| 1773 | sha256 = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6", |
| 1774 | type = "tar.gz", |
| 1775 | urls = ["https://crates.io/api/v1/crates/wait-timeout/0.2.0/download"], |
| 1776 | strip_prefix = "wait-timeout-0.2.0", |
| 1777 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wait-timeout-0.2.0.bazel"), |
| 1778 | ) |
| 1779 | |
| 1780 | maybe( |
| 1781 | http_archive, |
| 1782 | name = "rules_rust_wasm_bindgen__walrus-0.19.0", |
| 1783 | sha256 = "4eb08e48cde54c05f363d984bb54ce374f49e242def9468d2e1b6c2372d291f8", |
| 1784 | type = "tar.gz", |
| 1785 | urls = ["https://crates.io/api/v1/crates/walrus/0.19.0/download"], |
| 1786 | strip_prefix = "walrus-0.19.0", |
| 1787 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.walrus-0.19.0.bazel"), |
| 1788 | ) |
| 1789 | |
| 1790 | maybe( |
| 1791 | http_archive, |
| 1792 | name = "rules_rust_wasm_bindgen__walrus-macro-0.19.0", |
| 1793 | sha256 = "0a6e5bd22c71e77d60140b0bd5be56155a37e5bd14e24f5f87298040d0cc40d7", |
| 1794 | type = "tar.gz", |
| 1795 | urls = ["https://crates.io/api/v1/crates/walrus-macro/0.19.0/download"], |
| 1796 | strip_prefix = "walrus-macro-0.19.0", |
| 1797 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.walrus-macro-0.19.0.bazel"), |
| 1798 | ) |
| 1799 | |
| 1800 | maybe( |
| 1801 | http_archive, |
| 1802 | name = "rules_rust_wasm_bindgen__wasi-0.11.0-wasi-snapshot-preview1", |
| 1803 | sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", |
| 1804 | type = "tar.gz", |
| 1805 | urls = ["https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download"], |
| 1806 | strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1", |
| 1807 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"), |
| 1808 | ) |
| 1809 | |
| 1810 | maybe( |
| 1811 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1812 | name = "rules_rust_wasm_bindgen__wasm-bindgen-0.2.84", |
| 1813 | sha256 = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1814 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1815 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen/0.2.84/download"], |
| 1816 | strip_prefix = "wasm-bindgen-0.2.84", |
| 1817 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1818 | ) |
| 1819 | |
| 1820 | maybe( |
| 1821 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1822 | name = "rules_rust_wasm_bindgen__wasm-bindgen-backend-0.2.84", |
| 1823 | sha256 = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1824 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1825 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.84/download"], |
| 1826 | strip_prefix = "wasm-bindgen-backend-0.2.84", |
| 1827 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-backend-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1828 | ) |
| 1829 | |
| 1830 | maybe( |
| 1831 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1832 | name = "rules_rust_wasm_bindgen__wasm-bindgen-cli-support-0.2.84", |
| 1833 | sha256 = "9d4780c659b883a19ddb7ced365db19f7f45cd182d832ee14de2b7ef52e88a9f", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1834 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1835 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-cli-support/0.2.84/download"], |
| 1836 | strip_prefix = "wasm-bindgen-cli-support-0.2.84", |
| 1837 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-cli-support-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1838 | ) |
| 1839 | |
| 1840 | maybe( |
| 1841 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1842 | name = "rules_rust_wasm_bindgen__wasm-bindgen-externref-xform-0.2.84", |
| 1843 | sha256 = "1d154c3843bf3b635b602ad41b56f505f8f1a25f8a0133fca4bbd0918d74efdc", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1844 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1845 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-externref-xform/0.2.84/download"], |
| 1846 | strip_prefix = "wasm-bindgen-externref-xform-0.2.84", |
| 1847 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-externref-xform-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1848 | ) |
| 1849 | |
| 1850 | maybe( |
| 1851 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1852 | name = "rules_rust_wasm_bindgen__wasm-bindgen-macro-0.2.84", |
| 1853 | sha256 = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1854 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1855 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.84/download"], |
| 1856 | strip_prefix = "wasm-bindgen-macro-0.2.84", |
| 1857 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-macro-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1858 | ) |
| 1859 | |
| 1860 | maybe( |
| 1861 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1862 | name = "rules_rust_wasm_bindgen__wasm-bindgen-macro-support-0.2.84", |
| 1863 | sha256 = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1864 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1865 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.84/download"], |
| 1866 | strip_prefix = "wasm-bindgen-macro-support-0.2.84", |
| 1867 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-macro-support-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1868 | ) |
| 1869 | |
| 1870 | maybe( |
| 1871 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1872 | name = "rules_rust_wasm_bindgen__wasm-bindgen-multi-value-xform-0.2.84", |
| 1873 | sha256 = "c00a577fbd4be358ef8095432189b5c2e6b6e71f5081797c2032572f77d65d26", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1874 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1875 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-multi-value-xform/0.2.84/download"], |
| 1876 | strip_prefix = "wasm-bindgen-multi-value-xform-0.2.84", |
| 1877 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-multi-value-xform-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1878 | ) |
| 1879 | |
| 1880 | maybe( |
| 1881 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1882 | name = "rules_rust_wasm_bindgen__wasm-bindgen-shared-0.2.84", |
| 1883 | sha256 = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1884 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1885 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.84/download"], |
| 1886 | strip_prefix = "wasm-bindgen-shared-0.2.84", |
| 1887 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-shared-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1888 | ) |
| 1889 | |
| 1890 | maybe( |
| 1891 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1892 | name = "rules_rust_wasm_bindgen__wasm-bindgen-threads-xform-0.2.84", |
| 1893 | sha256 = "0aa93941bae037b7b4fac4ecfc132294b828036c5990a806d0e6fd9284297d94", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1894 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1895 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-threads-xform/0.2.84/download"], |
| 1896 | strip_prefix = "wasm-bindgen-threads-xform-0.2.84", |
| 1897 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-threads-xform-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1898 | ) |
| 1899 | |
| 1900 | maybe( |
| 1901 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1902 | name = "rules_rust_wasm_bindgen__wasm-bindgen-wasm-conventions-0.2.84", |
| 1903 | sha256 = "d8f5de325048d945c90600fdf66b13521f3340d85971287775c36aa99c04466b", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1904 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1905 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-wasm-conventions/0.2.84/download"], |
| 1906 | strip_prefix = "wasm-bindgen-wasm-conventions-0.2.84", |
| 1907 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-wasm-conventions-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1908 | ) |
| 1909 | |
| 1910 | maybe( |
| 1911 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1912 | name = "rules_rust_wasm_bindgen__wasm-bindgen-wasm-interpreter-0.2.84", |
| 1913 | sha256 = "f695df44962e3a107436282232a2daa185b8453c16be8ddfb637cd2601f31128", |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1914 | type = "tar.gz", |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1915 | urls = ["https://crates.io/api/v1/crates/wasm-bindgen-wasm-interpreter/0.2.84/download"], |
| 1916 | strip_prefix = "wasm-bindgen-wasm-interpreter-0.2.84", |
| 1917 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasm-bindgen-wasm-interpreter-0.2.84.bazel"), |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 1918 | ) |
| 1919 | |
| 1920 | maybe( |
| 1921 | http_archive, |
| 1922 | name = "rules_rust_wasm_bindgen__wasmparser-0.59.0", |
| 1923 | sha256 = "a950e6a618f62147fd514ff445b2a0b53120d382751960797f85f058c7eda9b9", |
| 1924 | type = "tar.gz", |
| 1925 | urls = ["https://crates.io/api/v1/crates/wasmparser/0.59.0/download"], |
| 1926 | strip_prefix = "wasmparser-0.59.0", |
| 1927 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasmparser-0.59.0.bazel"), |
| 1928 | ) |
| 1929 | |
| 1930 | maybe( |
| 1931 | http_archive, |
| 1932 | name = "rules_rust_wasm_bindgen__wasmparser-0.77.0", |
| 1933 | sha256 = "b35c86d22e720a07d954ebbed772d01180501afe7d03d464f413bb5f8914a8d6", |
| 1934 | type = "tar.gz", |
| 1935 | urls = ["https://crates.io/api/v1/crates/wasmparser/0.77.0/download"], |
| 1936 | strip_prefix = "wasmparser-0.77.0", |
| 1937 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasmparser-0.77.0.bazel"), |
| 1938 | ) |
| 1939 | |
| 1940 | maybe( |
| 1941 | http_archive, |
| 1942 | name = "rules_rust_wasm_bindgen__wasmparser-0.83.0", |
| 1943 | sha256 = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a", |
| 1944 | type = "tar.gz", |
| 1945 | urls = ["https://crates.io/api/v1/crates/wasmparser/0.83.0/download"], |
| 1946 | strip_prefix = "wasmparser-0.83.0", |
| 1947 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasmparser-0.83.0.bazel"), |
| 1948 | ) |
| 1949 | |
| 1950 | maybe( |
| 1951 | http_archive, |
| 1952 | name = "rules_rust_wasm_bindgen__wasmprinter-0.2.33", |
| 1953 | sha256 = "f973822fb3ca7e03ab421910274514b405df19a3d53acb131ae4df3a2fc4eb58", |
| 1954 | type = "tar.gz", |
| 1955 | urls = ["https://crates.io/api/v1/crates/wasmprinter/0.2.33/download"], |
| 1956 | strip_prefix = "wasmprinter-0.2.33", |
| 1957 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wasmprinter-0.2.33.bazel"), |
| 1958 | ) |
| 1959 | |
| 1960 | maybe( |
| 1961 | http_archive, |
| 1962 | name = "rules_rust_wasm_bindgen__wast-21.0.0", |
| 1963 | sha256 = "0b1844f66a2bc8526d71690104c0e78a8e59ffa1597b7245769d174ebb91deb5", |
| 1964 | type = "tar.gz", |
| 1965 | urls = ["https://crates.io/api/v1/crates/wast/21.0.0/download"], |
| 1966 | strip_prefix = "wast-21.0.0", |
| 1967 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wast-21.0.0.bazel"), |
| 1968 | ) |
| 1969 | |
| 1970 | maybe( |
| 1971 | http_archive, |
| 1972 | name = "rules_rust_wasm_bindgen__winapi-0.3.9", |
| 1973 | sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", |
| 1974 | type = "tar.gz", |
| 1975 | urls = ["https://crates.io/api/v1/crates/winapi/0.3.9/download"], |
| 1976 | strip_prefix = "winapi-0.3.9", |
| 1977 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.winapi-0.3.9.bazel"), |
| 1978 | ) |
| 1979 | |
| 1980 | maybe( |
| 1981 | http_archive, |
| 1982 | name = "rules_rust_wasm_bindgen__winapi-i686-pc-windows-gnu-0.4.0", |
| 1983 | sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", |
| 1984 | type = "tar.gz", |
| 1985 | urls = ["https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download"], |
| 1986 | strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0", |
| 1987 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"), |
| 1988 | ) |
| 1989 | |
| 1990 | maybe( |
| 1991 | http_archive, |
| 1992 | name = "rules_rust_wasm_bindgen__winapi-util-0.1.5", |
| 1993 | sha256 = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", |
| 1994 | type = "tar.gz", |
| 1995 | urls = ["https://crates.io/api/v1/crates/winapi-util/0.1.5/download"], |
| 1996 | strip_prefix = "winapi-util-0.1.5", |
| 1997 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.winapi-util-0.1.5.bazel"), |
| 1998 | ) |
| 1999 | |
| 2000 | maybe( |
| 2001 | http_archive, |
| 2002 | name = "rules_rust_wasm_bindgen__winapi-x86_64-pc-windows-gnu-0.4.0", |
| 2003 | sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", |
| 2004 | type = "tar.gz", |
| 2005 | urls = ["https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download"], |
| 2006 | strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0", |
| 2007 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"), |
| 2008 | ) |
| 2009 | |
| 2010 | maybe( |
| 2011 | http_archive, |
| 2012 | name = "rules_rust_wasm_bindgen__windows-sys-0.36.1", |
| 2013 | sha256 = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2", |
| 2014 | type = "tar.gz", |
| 2015 | urls = ["https://crates.io/api/v1/crates/windows-sys/0.36.1/download"], |
| 2016 | strip_prefix = "windows-sys-0.36.1", |
| 2017 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows-sys-0.36.1.bazel"), |
| 2018 | ) |
| 2019 | |
| 2020 | maybe( |
| 2021 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 2022 | name = "rules_rust_wasm_bindgen__windows-sys-0.42.0", |
| 2023 | sha256 = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7", |
| 2024 | type = "tar.gz", |
| 2025 | urls = ["https://crates.io/api/v1/crates/windows-sys/0.42.0/download"], |
| 2026 | strip_prefix = "windows-sys-0.42.0", |
| 2027 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows-sys-0.42.0.bazel"), |
| 2028 | ) |
| 2029 | |
| 2030 | maybe( |
| 2031 | http_archive, |
| 2032 | name = "rules_rust_wasm_bindgen__windows_aarch64_gnullvm-0.42.0", |
| 2033 | sha256 = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e", |
| 2034 | type = "tar.gz", |
| 2035 | urls = ["https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.0/download"], |
| 2036 | strip_prefix = "windows_aarch64_gnullvm-0.42.0", |
| 2037 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_aarch64_gnullvm-0.42.0.bazel"), |
| 2038 | ) |
| 2039 | |
| 2040 | maybe( |
| 2041 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 2042 | name = "rules_rust_wasm_bindgen__windows_aarch64_msvc-0.36.1", |
| 2043 | sha256 = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47", |
| 2044 | type = "tar.gz", |
| 2045 | urls = ["https://crates.io/api/v1/crates/windows_aarch64_msvc/0.36.1/download"], |
| 2046 | strip_prefix = "windows_aarch64_msvc-0.36.1", |
| 2047 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_aarch64_msvc-0.36.1.bazel"), |
| 2048 | ) |
| 2049 | |
| 2050 | maybe( |
| 2051 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 2052 | name = "rules_rust_wasm_bindgen__windows_aarch64_msvc-0.42.0", |
| 2053 | sha256 = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4", |
| 2054 | type = "tar.gz", |
| 2055 | urls = ["https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.0/download"], |
| 2056 | strip_prefix = "windows_aarch64_msvc-0.42.0", |
| 2057 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_aarch64_msvc-0.42.0.bazel"), |
| 2058 | ) |
| 2059 | |
| 2060 | maybe( |
| 2061 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 2062 | name = "rules_rust_wasm_bindgen__windows_i686_gnu-0.36.1", |
| 2063 | sha256 = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6", |
| 2064 | type = "tar.gz", |
| 2065 | urls = ["https://crates.io/api/v1/crates/windows_i686_gnu/0.36.1/download"], |
| 2066 | strip_prefix = "windows_i686_gnu-0.36.1", |
| 2067 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_i686_gnu-0.36.1.bazel"), |
| 2068 | ) |
| 2069 | |
| 2070 | maybe( |
| 2071 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 2072 | name = "rules_rust_wasm_bindgen__windows_i686_gnu-0.42.0", |
| 2073 | sha256 = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7", |
| 2074 | type = "tar.gz", |
| 2075 | urls = ["https://crates.io/api/v1/crates/windows_i686_gnu/0.42.0/download"], |
| 2076 | strip_prefix = "windows_i686_gnu-0.42.0", |
| 2077 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_i686_gnu-0.42.0.bazel"), |
| 2078 | ) |
| 2079 | |
| 2080 | maybe( |
| 2081 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 2082 | name = "rules_rust_wasm_bindgen__windows_i686_msvc-0.36.1", |
| 2083 | sha256 = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024", |
| 2084 | type = "tar.gz", |
| 2085 | urls = ["https://crates.io/api/v1/crates/windows_i686_msvc/0.36.1/download"], |
| 2086 | strip_prefix = "windows_i686_msvc-0.36.1", |
| 2087 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_i686_msvc-0.36.1.bazel"), |
| 2088 | ) |
| 2089 | |
| 2090 | maybe( |
| 2091 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 2092 | name = "rules_rust_wasm_bindgen__windows_i686_msvc-0.42.0", |
| 2093 | sha256 = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246", |
| 2094 | type = "tar.gz", |
| 2095 | urls = ["https://crates.io/api/v1/crates/windows_i686_msvc/0.42.0/download"], |
| 2096 | strip_prefix = "windows_i686_msvc-0.42.0", |
| 2097 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_i686_msvc-0.42.0.bazel"), |
| 2098 | ) |
| 2099 | |
| 2100 | maybe( |
| 2101 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 2102 | name = "rules_rust_wasm_bindgen__windows_x86_64_gnu-0.36.1", |
| 2103 | sha256 = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1", |
| 2104 | type = "tar.gz", |
| 2105 | urls = ["https://crates.io/api/v1/crates/windows_x86_64_gnu/0.36.1/download"], |
| 2106 | strip_prefix = "windows_x86_64_gnu-0.36.1", |
| 2107 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_x86_64_gnu-0.36.1.bazel"), |
| 2108 | ) |
| 2109 | |
| 2110 | maybe( |
| 2111 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 2112 | name = "rules_rust_wasm_bindgen__windows_x86_64_gnu-0.42.0", |
| 2113 | sha256 = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed", |
| 2114 | type = "tar.gz", |
| 2115 | urls = ["https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.0/download"], |
| 2116 | strip_prefix = "windows_x86_64_gnu-0.42.0", |
| 2117 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_x86_64_gnu-0.42.0.bazel"), |
| 2118 | ) |
| 2119 | |
| 2120 | maybe( |
| 2121 | http_archive, |
| 2122 | name = "rules_rust_wasm_bindgen__windows_x86_64_gnullvm-0.42.0", |
| 2123 | sha256 = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028", |
| 2124 | type = "tar.gz", |
| 2125 | urls = ["https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.0/download"], |
| 2126 | strip_prefix = "windows_x86_64_gnullvm-0.42.0", |
| 2127 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_x86_64_gnullvm-0.42.0.bazel"), |
| 2128 | ) |
| 2129 | |
| 2130 | maybe( |
| 2131 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 2132 | name = "rules_rust_wasm_bindgen__windows_x86_64_msvc-0.36.1", |
| 2133 | sha256 = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680", |
| 2134 | type = "tar.gz", |
| 2135 | urls = ["https://crates.io/api/v1/crates/windows_x86_64_msvc/0.36.1/download"], |
| 2136 | strip_prefix = "windows_x86_64_msvc-0.36.1", |
| 2137 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_x86_64_msvc-0.36.1.bazel"), |
| 2138 | ) |
| 2139 | |
| 2140 | maybe( |
| 2141 | http_archive, |
Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 2142 | name = "rules_rust_wasm_bindgen__windows_x86_64_msvc-0.42.0", |
| 2143 | sha256 = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5", |
| 2144 | type = "tar.gz", |
| 2145 | urls = ["https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.0/download"], |
| 2146 | strip_prefix = "windows_x86_64_msvc-0.42.0", |
| 2147 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.windows_x86_64_msvc-0.42.0.bazel"), |
| 2148 | ) |
| 2149 | |
| 2150 | maybe( |
| 2151 | http_archive, |
Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame] | 2152 | name = "rules_rust_wasm_bindgen__wit-parser-0.2.0", |
| 2153 | sha256 = "3f5fd97866f4b9c8e1ed57bcf9446f3d0d8ba37e2dd01c3c612c046c053b06f7", |
| 2154 | type = "tar.gz", |
| 2155 | urls = ["https://crates.io/api/v1/crates/wit-parser/0.2.0/download"], |
| 2156 | strip_prefix = "wit-parser-0.2.0", |
| 2157 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-parser-0.2.0.bazel"), |
| 2158 | ) |
| 2159 | |
| 2160 | maybe( |
| 2161 | http_archive, |
| 2162 | name = "rules_rust_wasm_bindgen__wit-printer-0.2.0", |
| 2163 | sha256 = "93f19ca44555a3c14d69acee6447a6e4f52771b0c6e5d8db3e42db3b90f6fce9", |
| 2164 | type = "tar.gz", |
| 2165 | urls = ["https://crates.io/api/v1/crates/wit-printer/0.2.0/download"], |
| 2166 | strip_prefix = "wit-printer-0.2.0", |
| 2167 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-printer-0.2.0.bazel"), |
| 2168 | ) |
| 2169 | |
| 2170 | maybe( |
| 2171 | http_archive, |
| 2172 | name = "rules_rust_wasm_bindgen__wit-schema-version-0.1.0", |
| 2173 | sha256 = "bfee4a6a4716eefa0682e7a3b836152e894a3e4f34a9d6c2c3e1c94429bfe36a", |
| 2174 | type = "tar.gz", |
| 2175 | urls = ["https://crates.io/api/v1/crates/wit-schema-version/0.1.0/download"], |
| 2176 | strip_prefix = "wit-schema-version-0.1.0", |
| 2177 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-schema-version-0.1.0.bazel"), |
| 2178 | ) |
| 2179 | |
| 2180 | maybe( |
| 2181 | http_archive, |
| 2182 | name = "rules_rust_wasm_bindgen__wit-text-0.8.0", |
| 2183 | sha256 = "33358e95c77d660f1c7c07f4a93c2bd89768965e844e3c50730bb4b42658df5f", |
| 2184 | type = "tar.gz", |
| 2185 | urls = ["https://crates.io/api/v1/crates/wit-text/0.8.0/download"], |
| 2186 | strip_prefix = "wit-text-0.8.0", |
| 2187 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-text-0.8.0.bazel"), |
| 2188 | ) |
| 2189 | |
| 2190 | maybe( |
| 2191 | http_archive, |
| 2192 | name = "rules_rust_wasm_bindgen__wit-validator-0.2.1", |
| 2193 | sha256 = "3c11d93d925420e7872b226c4161849c32be38385ccab026b88df99d8ddc6ba6", |
| 2194 | type = "tar.gz", |
| 2195 | urls = ["https://crates.io/api/v1/crates/wit-validator/0.2.1/download"], |
| 2196 | strip_prefix = "wit-validator-0.2.1", |
| 2197 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-validator-0.2.1.bazel"), |
| 2198 | ) |
| 2199 | |
| 2200 | maybe( |
| 2201 | http_archive, |
| 2202 | name = "rules_rust_wasm_bindgen__wit-walrus-0.6.0", |
| 2203 | sha256 = "ad559e3e4c6404b2a6a675d44129d62a3836e3b951b90112fa1c5feb852757cd", |
| 2204 | type = "tar.gz", |
| 2205 | urls = ["https://crates.io/api/v1/crates/wit-walrus/0.6.0/download"], |
| 2206 | strip_prefix = "wit-walrus-0.6.0", |
| 2207 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-walrus-0.6.0.bazel"), |
| 2208 | ) |
| 2209 | |
| 2210 | maybe( |
| 2211 | http_archive, |
| 2212 | name = "rules_rust_wasm_bindgen__wit-writer-0.2.0", |
| 2213 | sha256 = "c2ad01ba5e9cbcff799a0689e56a153776ea694cec777f605938cb9880d41a09", |
| 2214 | type = "tar.gz", |
| 2215 | urls = ["https://crates.io/api/v1/crates/wit-writer/0.2.0/download"], |
| 2216 | strip_prefix = "wit-writer-0.2.0", |
| 2217 | build_file = Label("@rules_rust//wasm_bindgen/3rdparty/crates:BUILD.wit-writer-0.2.0.bazel"), |
| 2218 | ) |