blob: f2cc5653431bac5d9fedee6aaa0986b1720cc2d1 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001###############################################################################
2# @generated
Brian Silverman5f6f2762022-08-13 19:30:05 -07003# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
Brian Silvermancc09f182022-03-09 15:40:20 -08005#
Brian Silverman5f6f2762022-08-13 19:30:05 -07006# bazel run //crate_universe/3rdparty:crates_vendor
Brian Silvermancc09f182022-03-09 15:40:20 -08007###############################################################################
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
18load("@bazel_skylib//lib:selects.bzl", "selects")
19load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
20load("@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
29def _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
40 # Not all dependnecies are supported for all platforms.
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
86def 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
139def 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.
156 normal_dev (bool, optional): If True, normla dev dependencies will be
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:
Brian Silverman5f6f2762022-08-13 19:30:05 -0700198 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 []
Brian Silvermancc09f182022-03-09 15:40:20 -0800202
203 crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())
204 for condition, deps in dependencies.items():
205 crate_deps += selects.with_or({_CONDITIONS[condition]: deps.values()})
206
207 return crate_deps
208
209def aliases(
210 normal = False,
211 normal_dev = False,
212 proc_macro = False,
213 proc_macro_dev = False,
214 build = False,
215 build_proc_macro = False,
216 package_name = None):
217 """Produces a map of Crate alias names to their original label
218
219 If no dependency kinds are specified, `normal` and `proc_macro` are used by default.
220 Setting any one flag will otherwise determine the contents of the returned dict.
221
222 Args:
223 normal (bool, optional): If True, normal dependencies are included in the
224 output list.
225 normal_dev (bool, optional): If True, normla dev dependencies will be
226 included in the output list..
227 proc_macro (bool, optional): If True, proc_macro dependencies are included
228 in the output list.
229 proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are
230 included in the output list.
231 build (bool, optional): If True, build dependencies are included
232 in the output list.
233 build_proc_macro (bool, optional): If True, build proc_macro dependencies are
234 included in the output list.
235 package_name (str, optional): The package name of the set of dependencies to look up.
236 Defaults to `native.package_name()` when unset.
237
238 Returns:
239 dict: The aliases of all associated packages
240 """
241 if package_name == None:
242 package_name = native.package_name()
243
244 # Determine the relevant maps to use
245 all_aliases_maps = []
246 if normal:
247 all_aliases_maps.append(_NORMAL_ALIASES)
248 if normal_dev:
249 all_aliases_maps.append(_NORMAL_DEV_ALIASES)
250 if proc_macro:
251 all_aliases_maps.append(_PROC_MACRO_ALIASES)
252 if proc_macro_dev:
253 all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)
254 if build:
255 all_aliases_maps.append(_BUILD_ALIASES)
256 if build_proc_macro:
257 all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)
258
259 # Default to always using normal aliases
260 if not all_aliases_maps:
261 all_aliases_maps.append(_NORMAL_ALIASES)
262 all_aliases_maps.append(_PROC_MACRO_ALIASES)
263
264 aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)
265
266 if not aliases:
267 return dict()
268
269 common_items = aliases.pop(_COMMON_CONDITION, {}).items()
270
271 # If there are only common items in the dictionary, immediately return them
272 if not len(aliases.keys()) == 1:
273 return dict(common_items)
274
275 # Build a single select statement where each conditional has accounted for the
276 # common set of aliases.
277 crate_aliases = {"//conditions:default": common_items}
278 for condition, deps in aliases.items():
279 condition_triples = _CONDITIONS[condition]
280 if condition_triples in crate_aliases:
281 crate_aliases[condition_triples].update(deps)
282 else:
283 crate_aliases.update({_CONDITIONS[condition]: dict(deps.items() + common_items)})
284
285 return selects.with_or(crate_aliases)
286
287###############################################################################
288# WORKSPACE MEMBER DEPS AND ALIASES
289###############################################################################
290
291_NORMAL_DEPENDENCIES = {
292 "crate_universe": {
293 _COMMON_CONDITION: {
Brian Silverman5f6f2762022-08-13 19:30:05 -0700294 "anyhow": "@cui__anyhow-1.0.58//:anyhow",
295 "cargo-lock": "@cui__cargo-lock-8.0.2//:cargo_lock",
296 "cargo-platform": "@cui__cargo-platform-0.1.2//:cargo_platform",
297 "cargo_metadata": "@cui__cargo_metadata-0.14.2//:cargo_metadata",
298 "cargo_toml": "@cui__cargo_toml-0.11.5//:cargo_toml",
299 "cfg-expr": "@cui__cfg-expr-0.10.3//:cfg_expr",
300 "clap": "@cui__clap-3.2.8//:clap",
301 "crates-index": "@cui__crates-index-0.18.8//:crates_index",
302 "hex": "@cui__hex-0.4.3//:hex",
303 "normpath": "@cui__normpath-0.3.2//:normpath",
304 "pathdiff": "@cui__pathdiff-0.2.1//:pathdiff",
305 "regex": "@cui__regex-1.6.0//:regex",
306 "semver": "@cui__semver-1.0.12//:semver",
307 "serde": "@cui__serde-1.0.138//:serde",
308 "serde_json": "@cui__serde_json-1.0.82//:serde_json",
309 "sha2": "@cui__sha2-0.10.2//:sha2",
310 "tempfile": "@cui__tempfile-3.3.0//:tempfile",
311 "tera": "@cui__tera-1.16.0//:tera",
312 "textwrap": "@cui__textwrap-0.15.0//:textwrap",
313 "toml": "@cui__toml-0.5.9//:toml",
Brian Silvermancc09f182022-03-09 15:40:20 -0800314 },
315 },
316 "crate_universe/tools/cross_installer": {
317 _COMMON_CONDITION: {
Brian Silverman5f6f2762022-08-13 19:30:05 -0700318 "clap": "@cui__clap-3.2.8//:clap",
Brian Silvermancc09f182022-03-09 15:40:20 -0800319 },
320 },
321 "crate_universe/tools/urls_generator": {
322 _COMMON_CONDITION: {
Brian Silverman5f6f2762022-08-13 19:30:05 -0700323 "clap": "@cui__clap-3.2.8//:clap",
324 "hex": "@cui__hex-0.4.3//:hex",
325 "serde_json": "@cui__serde_json-1.0.82//:serde_json",
326 "sha2": "@cui__sha2-0.10.2//:sha2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800327 },
328 },
329}
330
331_NORMAL_ALIASES = {
332 "crate_universe": {
333 _COMMON_CONDITION: {
334 },
335 },
336 "crate_universe/tools/cross_installer": {
337 _COMMON_CONDITION: {
338 },
339 },
340 "crate_universe/tools/urls_generator": {
341 _COMMON_CONDITION: {
342 },
343 },
344}
345
346_NORMAL_DEV_DEPENDENCIES = {
347 "crate_universe": {
348 _COMMON_CONDITION: {
Brian Silverman5f6f2762022-08-13 19:30:05 -0700349 "maplit": "@cui__maplit-1.0.2//:maplit",
350 "spectral": "@cui__spectral-0.6.0//:spectral",
Brian Silvermancc09f182022-03-09 15:40:20 -0800351 },
352 },
353 "crate_universe/tools/cross_installer": {
354 },
355 "crate_universe/tools/urls_generator": {
356 },
357}
358
359_NORMAL_DEV_ALIASES = {
360 "crate_universe": {
361 _COMMON_CONDITION: {
362 },
363 },
364 "crate_universe/tools/cross_installer": {
365 },
366 "crate_universe/tools/urls_generator": {
367 },
368}
369
370_PROC_MACRO_DEPENDENCIES = {
371 "crate_universe": {
372 },
373 "crate_universe/tools/cross_installer": {
374 },
375 "crate_universe/tools/urls_generator": {
376 },
377}
378
379_PROC_MACRO_ALIASES = {
380 "crate_universe": {
381 },
382 "crate_universe/tools/cross_installer": {
383 },
384 "crate_universe/tools/urls_generator": {
385 },
386}
387
388_PROC_MACRO_DEV_DEPENDENCIES = {
389 "crate_universe": {
390 },
391 "crate_universe/tools/cross_installer": {
392 },
393 "crate_universe/tools/urls_generator": {
394 },
395}
396
397_PROC_MACRO_DEV_ALIASES = {
398 "crate_universe": {
399 _COMMON_CONDITION: {
400 },
401 },
402 "crate_universe/tools/cross_installer": {
403 },
404 "crate_universe/tools/urls_generator": {
405 },
406}
407
408_BUILD_DEPENDENCIES = {
409 "crate_universe": {
410 },
411 "crate_universe/tools/cross_installer": {
412 },
413 "crate_universe/tools/urls_generator": {
414 },
415}
416
417_BUILD_ALIASES = {
418 "crate_universe": {
419 },
420 "crate_universe/tools/cross_installer": {
421 },
422 "crate_universe/tools/urls_generator": {
423 },
424}
425
426_BUILD_PROC_MACRO_DEPENDENCIES = {
427 "crate_universe": {
428 },
429 "crate_universe/tools/cross_installer": {
430 },
431 "crate_universe/tools/urls_generator": {
432 },
433}
434
435_BUILD_PROC_MACRO_ALIASES = {
436 "crate_universe": {
437 },
438 "crate_universe/tools/cross_installer": {
439 },
440 "crate_universe/tools/urls_generator": {
441 },
442}
443
444_CONDITIONS = {
445 "aarch64-apple-darwin": ["aarch64-apple-darwin"],
Brian Silverman5f6f2762022-08-13 19:30:05 -0700446 "aarch64-linux-android": ["aarch64-linux-android"],
Brian Silvermancc09f182022-03-09 15:40:20 -0800447 "cfg(all(any(target_arch = \"x86_64\", target_arch = \"aarch64\"), target_os = \"hermit\"))": [],
448 "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": ["aarch64-unknown-linux-gnu"],
Brian Silverman5f6f2762022-08-13 19:30:05 -0700449 "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": ["aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", "aarch64-unknown-linux-gnu", "i686-apple-darwin", "i686-linux-android", "i686-pc-windows-msvc", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", "x86_64-pc-windows-msvc", "x86_64-unknown-freebsd", "x86_64-unknown-linux-gnu"],
450 "cfg(any(unix, target_os = \"wasi\"))": ["aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", "aarch64-unknown-linux-gnu", "arm-unknown-linux-gnueabi", "armv7-linux-androideabi", "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "s390x-unknown-linux-gnu", "wasm32-wasi", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", "x86_64-unknown-freebsd", "x86_64-unknown-linux-gnu"],
451 "cfg(not(windows))": ["aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", "aarch64-unknown-linux-gnu", "arm-unknown-linux-gnueabi", "armv7-linux-androideabi", "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "riscv32imc-unknown-none-elf", "s390x-unknown-linux-gnu", "wasm32-unknown-unknown", "wasm32-wasi", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", "x86_64-unknown-freebsd", "x86_64-unknown-linux-gnu"],
Brian Silvermancc09f182022-03-09 15:40:20 -0800452 "cfg(target_arch = \"wasm32\")": ["wasm32-unknown-unknown", "wasm32-wasi"],
453 "cfg(target_env = \"sgx\")": [],
454 "cfg(target_os = \"fuchsia\")": [],
455 "cfg(target_os = \"hermit\")": [],
456 "cfg(target_os = \"redox\")": [],
457 "cfg(target_os = \"wasi\")": ["wasm32-wasi"],
Brian Silverman5f6f2762022-08-13 19:30:05 -0700458 "cfg(unix)": ["aarch64-apple-darwin", "aarch64-apple-ios", "aarch64-apple-ios-sim", "aarch64-linux-android", "aarch64-unknown-linux-gnu", "arm-unknown-linux-gnueabi", "armv7-linux-androideabi", "armv7-unknown-linux-gnueabi", "i686-apple-darwin", "i686-linux-android", "i686-unknown-freebsd", "i686-unknown-linux-gnu", "powerpc-unknown-linux-gnu", "s390x-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-apple-ios", "x86_64-linux-android", "x86_64-unknown-freebsd", "x86_64-unknown-linux-gnu"],
Brian Silvermancc09f182022-03-09 15:40:20 -0800459 "cfg(windows)": ["i686-pc-windows-msvc", "x86_64-pc-windows-msvc"],
460 "i686-pc-windows-gnu": [],
461 "x86_64-pc-windows-gnu": [],
462}
463
464###############################################################################
465
466def crate_repositories():
467 """A macro for defining repositories for all generated crates"""
468 maybe(
469 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700470 name = "cui__aho-corasick-0.7.18",
Brian Silvermancc09f182022-03-09 15:40:20 -0800471 sha256 = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f",
472 type = "tar.gz",
473 urls = ["https://crates.io/api/v1/crates/aho-corasick/0.7.18/download"],
474 strip_prefix = "aho-corasick-0.7.18",
475 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.aho-corasick-0.7.18.bazel"),
476 )
477
478 maybe(
479 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700480 name = "cui__anyhow-1.0.58",
481 sha256 = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704",
Brian Silvermancc09f182022-03-09 15:40:20 -0800482 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700483 urls = ["https://crates.io/api/v1/crates/anyhow/1.0.58/download"],
484 strip_prefix = "anyhow-1.0.58",
485 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.anyhow-1.0.58.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800486 )
487
488 maybe(
489 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700490 name = "cui__atty-0.2.14",
Brian Silvermancc09f182022-03-09 15:40:20 -0800491 sha256 = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8",
492 type = "tar.gz",
493 urls = ["https://crates.io/api/v1/crates/atty/0.2.14/download"],
494 strip_prefix = "atty-0.2.14",
495 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.atty-0.2.14.bazel"),
496 )
497
498 maybe(
499 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700500 name = "cui__autocfg-1.1.0",
Brian Silvermancc09f182022-03-09 15:40:20 -0800501 sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
502 type = "tar.gz",
503 urls = ["https://crates.io/api/v1/crates/autocfg/1.1.0/download"],
504 strip_prefix = "autocfg-1.1.0",
505 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.autocfg-1.1.0.bazel"),
506 )
507
508 maybe(
509 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700510 name = "cui__bitflags-1.3.2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800511 sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
512 type = "tar.gz",
513 urls = ["https://crates.io/api/v1/crates/bitflags/1.3.2/download"],
514 strip_prefix = "bitflags-1.3.2",
515 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.bitflags-1.3.2.bazel"),
516 )
517
518 maybe(
519 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700520 name = "cui__block-buffer-0.10.2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800521 sha256 = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324",
522 type = "tar.gz",
523 urls = ["https://crates.io/api/v1/crates/block-buffer/0.10.2/download"],
524 strip_prefix = "block-buffer-0.10.2",
525 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.block-buffer-0.10.2.bazel"),
526 )
527
528 maybe(
529 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700530 name = "cui__block-buffer-0.7.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800531 sha256 = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b",
532 type = "tar.gz",
533 urls = ["https://crates.io/api/v1/crates/block-buffer/0.7.3/download"],
534 strip_prefix = "block-buffer-0.7.3",
535 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.block-buffer-0.7.3.bazel"),
536 )
537
538 maybe(
539 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700540 name = "cui__block-padding-0.1.5",
Brian Silvermancc09f182022-03-09 15:40:20 -0800541 sha256 = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5",
542 type = "tar.gz",
543 urls = ["https://crates.io/api/v1/crates/block-padding/0.1.5/download"],
544 strip_prefix = "block-padding-0.1.5",
545 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.block-padding-0.1.5.bazel"),
546 )
547
548 maybe(
549 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700550 name = "cui__bstr-0.2.17",
Brian Silvermancc09f182022-03-09 15:40:20 -0800551 sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223",
552 type = "tar.gz",
553 urls = ["https://crates.io/api/v1/crates/bstr/0.2.17/download"],
554 strip_prefix = "bstr-0.2.17",
555 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.bstr-0.2.17.bazel"),
556 )
557
558 maybe(
559 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700560 name = "cui__byte-tools-0.3.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800561 sha256 = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7",
562 type = "tar.gz",
563 urls = ["https://crates.io/api/v1/crates/byte-tools/0.3.1/download"],
564 strip_prefix = "byte-tools-0.3.1",
565 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.byte-tools-0.3.1.bazel"),
566 )
567
568 maybe(
569 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700570 name = "cui__byteorder-1.4.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800571 sha256 = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610",
572 type = "tar.gz",
573 urls = ["https://crates.io/api/v1/crates/byteorder/1.4.3/download"],
574 strip_prefix = "byteorder-1.4.3",
575 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.byteorder-1.4.3.bazel"),
576 )
577
578 maybe(
579 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700580 name = "cui__camino-1.0.9",
581 sha256 = "869119e97797867fd90f5e22af7d0bd274bd4635ebb9eb68c04f3f513ae6c412",
Brian Silvermancc09f182022-03-09 15:40:20 -0800582 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700583 urls = ["https://crates.io/api/v1/crates/camino/1.0.9/download"],
584 strip_prefix = "camino-1.0.9",
585 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.camino-1.0.9.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800586 )
587
588 maybe(
589 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700590 name = "cui__cargo-lock-8.0.2",
591 sha256 = "3c4c54d47a4532db3494ef7332c257ab57b02750daae3250d49e01ee55201ce8",
Brian Silvermancc09f182022-03-09 15:40:20 -0800592 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700593 urls = ["https://crates.io/api/v1/crates/cargo-lock/8.0.2/download"],
594 strip_prefix = "cargo-lock-8.0.2",
595 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cargo-lock-8.0.2.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800596 )
597
598 maybe(
599 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700600 name = "cui__cargo-platform-0.1.2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800601 sha256 = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27",
602 type = "tar.gz",
603 urls = ["https://crates.io/api/v1/crates/cargo-platform/0.1.2/download"],
604 strip_prefix = "cargo-platform-0.1.2",
605 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cargo-platform-0.1.2.bazel"),
606 )
607
608 maybe(
609 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700610 name = "cui__cargo_metadata-0.14.2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800611 sha256 = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa",
612 type = "tar.gz",
613 urls = ["https://crates.io/api/v1/crates/cargo_metadata/0.14.2/download"],
614 strip_prefix = "cargo_metadata-0.14.2",
615 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cargo_metadata-0.14.2.bazel"),
616 )
617
618 maybe(
619 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700620 name = "cui__cargo_toml-0.11.5",
621 sha256 = "5809dd3e6444651fd1cdd3dbec71eca438c439a0fcc8081674a14da0afe50185",
Brian Silvermancc09f182022-03-09 15:40:20 -0800622 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700623 urls = ["https://crates.io/api/v1/crates/cargo_toml/0.11.5/download"],
624 strip_prefix = "cargo_toml-0.11.5",
625 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cargo_toml-0.11.5.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800626 )
627
628 maybe(
629 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700630 name = "cui__cc-1.0.73",
Brian Silvermancc09f182022-03-09 15:40:20 -0800631 sha256 = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11",
632 type = "tar.gz",
633 urls = ["https://crates.io/api/v1/crates/cc/1.0.73/download"],
634 strip_prefix = "cc-1.0.73",
635 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cc-1.0.73.bazel"),
636 )
637
638 maybe(
639 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700640 name = "cui__cfg-expr-0.10.3",
641 sha256 = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db",
Brian Silvermancc09f182022-03-09 15:40:20 -0800642 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700643 urls = ["https://crates.io/api/v1/crates/cfg-expr/0.10.3/download"],
644 strip_prefix = "cfg-expr-0.10.3",
645 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cfg-expr-0.10.3.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800646 )
647
648 maybe(
649 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700650 name = "cui__cfg-if-1.0.0",
Brian Silvermancc09f182022-03-09 15:40:20 -0800651 sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
652 type = "tar.gz",
653 urls = ["https://crates.io/api/v1/crates/cfg-if/1.0.0/download"],
654 strip_prefix = "cfg-if-1.0.0",
655 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cfg-if-1.0.0.bazel"),
656 )
657
658 maybe(
659 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700660 name = "cui__chrono-0.4.19",
Brian Silvermancc09f182022-03-09 15:40:20 -0800661 sha256 = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73",
662 type = "tar.gz",
663 urls = ["https://crates.io/api/v1/crates/chrono/0.4.19/download"],
664 strip_prefix = "chrono-0.4.19",
665 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.chrono-0.4.19.bazel"),
666 )
667
668 maybe(
669 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700670 name = "cui__chrono-tz-0.6.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800671 sha256 = "58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552",
672 type = "tar.gz",
673 urls = ["https://crates.io/api/v1/crates/chrono-tz/0.6.1/download"],
674 strip_prefix = "chrono-tz-0.6.1",
675 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.chrono-tz-0.6.1.bazel"),
676 )
677
678 maybe(
679 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700680 name = "cui__chrono-tz-build-0.0.2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800681 sha256 = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069",
682 type = "tar.gz",
683 urls = ["https://crates.io/api/v1/crates/chrono-tz-build/0.0.2/download"],
684 strip_prefix = "chrono-tz-build-0.0.2",
685 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.chrono-tz-build-0.0.2.bazel"),
686 )
687
688 maybe(
689 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700690 name = "cui__clap-3.2.8",
691 sha256 = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83",
Brian Silvermancc09f182022-03-09 15:40:20 -0800692 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700693 urls = ["https://crates.io/api/v1/crates/clap/3.2.8/download"],
694 strip_prefix = "clap-3.2.8",
695 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.clap-3.2.8.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800696 )
697
698 maybe(
699 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700700 name = "cui__clap_derive-3.2.7",
701 sha256 = "759bf187376e1afa7b85b959e6a664a3e7a95203415dba952ad19139e798f902",
Brian Silvermancc09f182022-03-09 15:40:20 -0800702 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700703 urls = ["https://crates.io/api/v1/crates/clap_derive/3.2.7/download"],
704 strip_prefix = "clap_derive-3.2.7",
705 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.clap_derive-3.2.7.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800706 )
707
708 maybe(
709 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700710 name = "cui__clap_lex-0.2.4",
711 sha256 = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5",
Brian Silvermancc09f182022-03-09 15:40:20 -0800712 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700713 urls = ["https://crates.io/api/v1/crates/clap_lex/0.2.4/download"],
714 strip_prefix = "clap_lex-0.2.4",
715 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.clap_lex-0.2.4.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800716 )
717
718 maybe(
719 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700720 name = "cui__cpufeatures-0.2.2",
721 sha256 = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b",
Brian Silvermancc09f182022-03-09 15:40:20 -0800722 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700723 urls = ["https://crates.io/api/v1/crates/cpufeatures/0.2.2/download"],
724 strip_prefix = "cpufeatures-0.2.2",
725 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.cpufeatures-0.2.2.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800726 )
727
728 maybe(
729 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700730 name = "cui__crates-index-0.18.8",
731 sha256 = "2519c91ad7a6e3250a64fb71162d2db1afe7bcf826a465f84d2052fd69639b7a",
Brian Silvermancc09f182022-03-09 15:40:20 -0800732 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700733 urls = ["https://crates.io/api/v1/crates/crates-index/0.18.8/download"],
734 strip_prefix = "crates-index-0.18.8",
735 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.crates-index-0.18.8.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800736 )
737
738 maybe(
739 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700740 name = "cui__crossbeam-utils-0.8.10",
741 sha256 = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83",
Brian Silvermancc09f182022-03-09 15:40:20 -0800742 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700743 urls = ["https://crates.io/api/v1/crates/crossbeam-utils/0.8.10/download"],
744 strip_prefix = "crossbeam-utils-0.8.10",
745 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.crossbeam-utils-0.8.10.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800746 )
747
748 maybe(
749 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700750 name = "cui__crypto-common-0.1.4",
751 sha256 = "5999502d32b9c48d492abe66392408144895020ec4709e549e840799f3bb74c0",
752 type = "tar.gz",
753 urls = ["https://crates.io/api/v1/crates/crypto-common/0.1.4/download"],
754 strip_prefix = "crypto-common-0.1.4",
755 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.crypto-common-0.1.4.bazel"),
756 )
757
758 maybe(
759 http_archive,
760 name = "cui__deunicode-0.4.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800761 sha256 = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690",
762 type = "tar.gz",
763 urls = ["https://crates.io/api/v1/crates/deunicode/0.4.3/download"],
764 strip_prefix = "deunicode-0.4.3",
765 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.deunicode-0.4.3.bazel"),
766 )
767
768 maybe(
769 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700770 name = "cui__digest-0.10.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800771 sha256 = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506",
772 type = "tar.gz",
773 urls = ["https://crates.io/api/v1/crates/digest/0.10.3/download"],
774 strip_prefix = "digest-0.10.3",
775 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.digest-0.10.3.bazel"),
776 )
777
778 maybe(
779 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700780 name = "cui__digest-0.8.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800781 sha256 = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5",
782 type = "tar.gz",
783 urls = ["https://crates.io/api/v1/crates/digest/0.8.1/download"],
784 strip_prefix = "digest-0.8.1",
785 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.digest-0.8.1.bazel"),
786 )
787
788 maybe(
789 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700790 name = "cui__fake-simd-0.1.2",
Brian Silvermancc09f182022-03-09 15:40:20 -0800791 sha256 = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed",
792 type = "tar.gz",
793 urls = ["https://crates.io/api/v1/crates/fake-simd/0.1.2/download"],
794 strip_prefix = "fake-simd-0.1.2",
795 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.fake-simd-0.1.2.bazel"),
796 )
797
798 maybe(
799 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700800 name = "cui__fastrand-1.7.0",
Brian Silvermancc09f182022-03-09 15:40:20 -0800801 sha256 = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf",
802 type = "tar.gz",
803 urls = ["https://crates.io/api/v1/crates/fastrand/1.7.0/download"],
804 strip_prefix = "fastrand-1.7.0",
805 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.fastrand-1.7.0.bazel"),
806 )
807
808 maybe(
809 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700810 name = "cui__fnv-1.0.7",
Brian Silvermancc09f182022-03-09 15:40:20 -0800811 sha256 = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1",
812 type = "tar.gz",
813 urls = ["https://crates.io/api/v1/crates/fnv/1.0.7/download"],
814 strip_prefix = "fnv-1.0.7",
815 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.fnv-1.0.7.bazel"),
816 )
817
818 maybe(
819 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700820 name = "cui__form_urlencoded-1.0.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800821 sha256 = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191",
822 type = "tar.gz",
823 urls = ["https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download"],
824 strip_prefix = "form_urlencoded-1.0.1",
825 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.form_urlencoded-1.0.1.bazel"),
826 )
827
828 maybe(
829 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700830 name = "cui__fuchsia-cprng-0.1.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800831 sha256 = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba",
832 type = "tar.gz",
833 urls = ["https://crates.io/api/v1/crates/fuchsia-cprng/0.1.1/download"],
834 strip_prefix = "fuchsia-cprng-0.1.1",
835 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.fuchsia-cprng-0.1.1.bazel"),
836 )
837
838 maybe(
839 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700840 name = "cui__generic-array-0.12.4",
Brian Silvermancc09f182022-03-09 15:40:20 -0800841 sha256 = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd",
842 type = "tar.gz",
843 urls = ["https://crates.io/api/v1/crates/generic-array/0.12.4/download"],
844 strip_prefix = "generic-array-0.12.4",
845 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.generic-array-0.12.4.bazel"),
846 )
847
848 maybe(
849 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700850 name = "cui__generic-array-0.14.5",
Brian Silvermancc09f182022-03-09 15:40:20 -0800851 sha256 = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803",
852 type = "tar.gz",
853 urls = ["https://crates.io/api/v1/crates/generic-array/0.14.5/download"],
854 strip_prefix = "generic-array-0.14.5",
855 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.generic-array-0.14.5.bazel"),
856 )
857
858 maybe(
859 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700860 name = "cui__getrandom-0.2.7",
861 sha256 = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6",
Brian Silvermancc09f182022-03-09 15:40:20 -0800862 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700863 urls = ["https://crates.io/api/v1/crates/getrandom/0.2.7/download"],
864 strip_prefix = "getrandom-0.2.7",
865 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.getrandom-0.2.7.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800866 )
867
868 maybe(
869 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700870 name = "cui__git2-0.14.4",
871 sha256 = "d0155506aab710a86160ddb504a480d2964d7ab5b9e62419be69e0032bc5931c",
Brian Silvermancc09f182022-03-09 15:40:20 -0800872 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700873 urls = ["https://crates.io/api/v1/crates/git2/0.14.4/download"],
874 strip_prefix = "git2-0.14.4",
875 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.git2-0.14.4.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800876 )
877
878 maybe(
879 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700880 name = "cui__globset-0.4.9",
881 sha256 = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a",
Brian Silvermancc09f182022-03-09 15:40:20 -0800882 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700883 urls = ["https://crates.io/api/v1/crates/globset/0.4.9/download"],
884 strip_prefix = "globset-0.4.9",
885 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.globset-0.4.9.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800886 )
887
888 maybe(
889 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700890 name = "cui__globwalk-0.8.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800891 sha256 = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc",
892 type = "tar.gz",
893 urls = ["https://crates.io/api/v1/crates/globwalk/0.8.1/download"],
894 strip_prefix = "globwalk-0.8.1",
895 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.globwalk-0.8.1.bazel"),
896 )
897
898 maybe(
899 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700900 name = "cui__hashbrown-0.12.1",
901 sha256 = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800902 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700903 urls = ["https://crates.io/api/v1/crates/hashbrown/0.12.1/download"],
904 strip_prefix = "hashbrown-0.12.1",
905 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.hashbrown-0.12.1.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800906 )
907
908 maybe(
909 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700910 name = "cui__heck-0.4.0",
Brian Silvermancc09f182022-03-09 15:40:20 -0800911 sha256 = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9",
912 type = "tar.gz",
913 urls = ["https://crates.io/api/v1/crates/heck/0.4.0/download"],
914 strip_prefix = "heck-0.4.0",
915 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.heck-0.4.0.bazel"),
916 )
917
918 maybe(
919 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700920 name = "cui__hermit-abi-0.1.19",
Brian Silvermancc09f182022-03-09 15:40:20 -0800921 sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33",
922 type = "tar.gz",
923 urls = ["https://crates.io/api/v1/crates/hermit-abi/0.1.19/download"],
924 strip_prefix = "hermit-abi-0.1.19",
925 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.hermit-abi-0.1.19.bazel"),
926 )
927
928 maybe(
929 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700930 name = "cui__hex-0.4.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800931 sha256 = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70",
932 type = "tar.gz",
933 urls = ["https://crates.io/api/v1/crates/hex/0.4.3/download"],
934 strip_prefix = "hex-0.4.3",
935 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.hex-0.4.3.bazel"),
936 )
937
938 maybe(
939 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700940 name = "cui__home-0.5.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800941 sha256 = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654",
942 type = "tar.gz",
943 urls = ["https://crates.io/api/v1/crates/home/0.5.3/download"],
944 strip_prefix = "home-0.5.3",
945 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.home-0.5.3.bazel"),
946 )
947
948 maybe(
949 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700950 name = "cui__humansize-1.1.1",
Brian Silvermancc09f182022-03-09 15:40:20 -0800951 sha256 = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026",
952 type = "tar.gz",
953 urls = ["https://crates.io/api/v1/crates/humansize/1.1.1/download"],
954 strip_prefix = "humansize-1.1.1",
955 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.humansize-1.1.1.bazel"),
956 )
957
958 maybe(
959 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700960 name = "cui__idna-0.2.3",
Brian Silvermancc09f182022-03-09 15:40:20 -0800961 sha256 = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8",
962 type = "tar.gz",
963 urls = ["https://crates.io/api/v1/crates/idna/0.2.3/download"],
964 strip_prefix = "idna-0.2.3",
965 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.idna-0.2.3.bazel"),
966 )
967
968 maybe(
969 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700970 name = "cui__ignore-0.4.18",
Brian Silvermancc09f182022-03-09 15:40:20 -0800971 sha256 = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d",
972 type = "tar.gz",
973 urls = ["https://crates.io/api/v1/crates/ignore/0.4.18/download"],
974 strip_prefix = "ignore-0.4.18",
975 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.ignore-0.4.18.bazel"),
976 )
977
978 maybe(
979 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700980 name = "cui__indexmap-1.9.1",
981 sha256 = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e",
Brian Silvermancc09f182022-03-09 15:40:20 -0800982 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -0700983 urls = ["https://crates.io/api/v1/crates/indexmap/1.9.1/download"],
984 strip_prefix = "indexmap-1.9.1",
985 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.indexmap-1.9.1.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -0800986 )
987
988 maybe(
989 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -0700990 name = "cui__instant-0.1.12",
Brian Silvermancc09f182022-03-09 15:40:20 -0800991 sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c",
992 type = "tar.gz",
993 urls = ["https://crates.io/api/v1/crates/instant/0.1.12/download"],
994 strip_prefix = "instant-0.1.12",
995 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.instant-0.1.12.bazel"),
996 )
997
998 maybe(
999 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001000 name = "cui__itoa-1.0.2",
1001 sha256 = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d",
Brian Silvermancc09f182022-03-09 15:40:20 -08001002 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001003 urls = ["https://crates.io/api/v1/crates/itoa/1.0.2/download"],
1004 strip_prefix = "itoa-1.0.2",
1005 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.itoa-1.0.2.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001006 )
1007
1008 maybe(
1009 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001010 name = "cui__jobserver-0.1.24",
Brian Silvermancc09f182022-03-09 15:40:20 -08001011 sha256 = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa",
1012 type = "tar.gz",
1013 urls = ["https://crates.io/api/v1/crates/jobserver/0.1.24/download"],
1014 strip_prefix = "jobserver-0.1.24",
1015 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.jobserver-0.1.24.bazel"),
1016 )
1017
1018 maybe(
1019 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001020 name = "cui__lazy_static-1.4.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001021 sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
1022 type = "tar.gz",
1023 urls = ["https://crates.io/api/v1/crates/lazy_static/1.4.0/download"],
1024 strip_prefix = "lazy_static-1.4.0",
1025 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.lazy_static-1.4.0.bazel"),
1026 )
1027
1028 maybe(
1029 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001030 name = "cui__libc-0.2.126",
1031 sha256 = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836",
Brian Silvermancc09f182022-03-09 15:40:20 -08001032 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001033 urls = ["https://crates.io/api/v1/crates/libc/0.2.126/download"],
1034 strip_prefix = "libc-0.2.126",
1035 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.libc-0.2.126.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001036 )
1037
1038 maybe(
1039 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001040 name = "cui__libgit2-sys-0.13.4-1.4.2",
1041 sha256 = "d0fa6563431ede25f5cc7f6d803c6afbc1c5d3ad3d4925d12c882bf2b526f5d1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001042 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001043 urls = ["https://crates.io/api/v1/crates/libgit2-sys/0.13.4+1.4.2/download"],
1044 strip_prefix = "libgit2-sys-0.13.4+1.4.2",
1045 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.libgit2-sys-0.13.4+1.4.2.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001046 )
1047
1048 maybe(
1049 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001050 name = "cui__libz-sys-1.1.8",
1051 sha256 = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf",
Brian Silvermancc09f182022-03-09 15:40:20 -08001052 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001053 urls = ["https://crates.io/api/v1/crates/libz-sys/1.1.8/download"],
1054 strip_prefix = "libz-sys-1.1.8",
1055 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.libz-sys-1.1.8.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001056 )
1057
1058 maybe(
1059 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001060 name = "cui__log-0.4.17",
1061 sha256 = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e",
Brian Silvermancc09f182022-03-09 15:40:20 -08001062 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001063 urls = ["https://crates.io/api/v1/crates/log/0.4.17/download"],
1064 strip_prefix = "log-0.4.17",
1065 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.log-0.4.17.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001066 )
1067
1068 maybe(
1069 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001070 name = "cui__maplit-1.0.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001071 sha256 = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d",
1072 type = "tar.gz",
1073 urls = ["https://crates.io/api/v1/crates/maplit/1.0.2/download"],
1074 strip_prefix = "maplit-1.0.2",
1075 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.maplit-1.0.2.bazel"),
1076 )
1077
1078 maybe(
1079 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001080 name = "cui__matches-0.1.9",
Brian Silvermancc09f182022-03-09 15:40:20 -08001081 sha256 = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f",
1082 type = "tar.gz",
1083 urls = ["https://crates.io/api/v1/crates/matches/0.1.9/download"],
1084 strip_prefix = "matches-0.1.9",
1085 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.matches-0.1.9.bazel"),
1086 )
1087
1088 maybe(
1089 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001090 name = "cui__memchr-2.5.0",
1091 sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d",
Brian Silvermancc09f182022-03-09 15:40:20 -08001092 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001093 urls = ["https://crates.io/api/v1/crates/memchr/2.5.0/download"],
1094 strip_prefix = "memchr-2.5.0",
1095 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.memchr-2.5.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001096 )
1097
1098 maybe(
1099 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001100 name = "cui__normpath-0.3.2",
1101 sha256 = "04aaf5e9cb0fbf883cc0423159eacdf96a9878022084b35c462c428cab73bcaf",
1102 type = "tar.gz",
1103 urls = ["https://crates.io/api/v1/crates/normpath/0.3.2/download"],
1104 strip_prefix = "normpath-0.3.2",
1105 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.normpath-0.3.2.bazel"),
1106 )
1107
1108 maybe(
1109 http_archive,
1110 name = "cui__num-0.1.42",
Brian Silvermancc09f182022-03-09 15:40:20 -08001111 sha256 = "4703ad64153382334aa8db57c637364c322d3372e097840c72000dabdcf6156e",
1112 type = "tar.gz",
1113 urls = ["https://crates.io/api/v1/crates/num/0.1.42/download"],
1114 strip_prefix = "num-0.1.42",
1115 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-0.1.42.bazel"),
1116 )
1117
1118 maybe(
1119 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001120 name = "cui__num-bigint-0.1.44",
Brian Silvermancc09f182022-03-09 15:40:20 -08001121 sha256 = "e63899ad0da84ce718c14936262a41cee2c79c981fc0a0e7c7beb47d5a07e8c1",
1122 type = "tar.gz",
1123 urls = ["https://crates.io/api/v1/crates/num-bigint/0.1.44/download"],
1124 strip_prefix = "num-bigint-0.1.44",
1125 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-bigint-0.1.44.bazel"),
1126 )
1127
1128 maybe(
1129 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001130 name = "cui__num-complex-0.1.43",
Brian Silvermancc09f182022-03-09 15:40:20 -08001131 sha256 = "b288631d7878aaf59442cffd36910ea604ecd7745c36054328595114001c9656",
1132 type = "tar.gz",
1133 urls = ["https://crates.io/api/v1/crates/num-complex/0.1.43/download"],
1134 strip_prefix = "num-complex-0.1.43",
1135 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-complex-0.1.43.bazel"),
1136 )
1137
1138 maybe(
1139 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001140 name = "cui__num-integer-0.1.45",
1141 sha256 = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9",
Brian Silvermancc09f182022-03-09 15:40:20 -08001142 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001143 urls = ["https://crates.io/api/v1/crates/num-integer/0.1.45/download"],
1144 strip_prefix = "num-integer-0.1.45",
1145 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-integer-0.1.45.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001146 )
1147
1148 maybe(
1149 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001150 name = "cui__num-iter-0.1.43",
1151 sha256 = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252",
Brian Silvermancc09f182022-03-09 15:40:20 -08001152 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001153 urls = ["https://crates.io/api/v1/crates/num-iter/0.1.43/download"],
1154 strip_prefix = "num-iter-0.1.43",
1155 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-iter-0.1.43.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001156 )
1157
1158 maybe(
1159 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001160 name = "cui__num-rational-0.1.42",
Brian Silvermancc09f182022-03-09 15:40:20 -08001161 sha256 = "ee314c74bd753fc86b4780aa9475da469155f3848473a261d2d18e35245a784e",
1162 type = "tar.gz",
1163 urls = ["https://crates.io/api/v1/crates/num-rational/0.1.42/download"],
1164 strip_prefix = "num-rational-0.1.42",
1165 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-rational-0.1.42.bazel"),
1166 )
1167
1168 maybe(
1169 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001170 name = "cui__num-traits-0.2.15",
1171 sha256 = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd",
Brian Silvermancc09f182022-03-09 15:40:20 -08001172 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001173 urls = ["https://crates.io/api/v1/crates/num-traits/0.2.15/download"],
1174 strip_prefix = "num-traits-0.2.15",
1175 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num-traits-0.2.15.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001176 )
1177
1178 maybe(
1179 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001180 name = "cui__num_cpus-1.13.1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001181 sha256 = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1",
1182 type = "tar.gz",
1183 urls = ["https://crates.io/api/v1/crates/num_cpus/1.13.1/download"],
1184 strip_prefix = "num_cpus-1.13.1",
1185 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.num_cpus-1.13.1.bazel"),
1186 )
1187
1188 maybe(
1189 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001190 name = "cui__once_cell-1.13.0",
1191 sha256 = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001192 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001193 urls = ["https://crates.io/api/v1/crates/once_cell/1.13.0/download"],
1194 strip_prefix = "once_cell-1.13.0",
1195 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.once_cell-1.13.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001196 )
1197
1198 maybe(
1199 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001200 name = "cui__opaque-debug-0.2.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001201 sha256 = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c",
1202 type = "tar.gz",
1203 urls = ["https://crates.io/api/v1/crates/opaque-debug/0.2.3/download"],
1204 strip_prefix = "opaque-debug-0.2.3",
1205 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.opaque-debug-0.2.3.bazel"),
1206 )
1207
1208 maybe(
1209 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001210 name = "cui__os_str_bytes-6.1.0",
1211 sha256 = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa",
Brian Silvermancc09f182022-03-09 15:40:20 -08001212 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001213 urls = ["https://crates.io/api/v1/crates/os_str_bytes/6.1.0/download"],
1214 strip_prefix = "os_str_bytes-6.1.0",
1215 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.os_str_bytes-6.1.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001216 )
1217
1218 maybe(
1219 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001220 name = "cui__parse-zoneinfo-0.3.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001221 sha256 = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41",
1222 type = "tar.gz",
1223 urls = ["https://crates.io/api/v1/crates/parse-zoneinfo/0.3.0/download"],
1224 strip_prefix = "parse-zoneinfo-0.3.0",
1225 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.parse-zoneinfo-0.3.0.bazel"),
1226 )
1227
1228 maybe(
1229 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001230 name = "cui__pathdiff-0.2.1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001231 sha256 = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd",
1232 type = "tar.gz",
1233 urls = ["https://crates.io/api/v1/crates/pathdiff/0.2.1/download"],
1234 strip_prefix = "pathdiff-0.2.1",
1235 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.pathdiff-0.2.1.bazel"),
1236 )
1237
1238 maybe(
1239 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001240 name = "cui__percent-encoding-2.1.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001241 sha256 = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e",
1242 type = "tar.gz",
1243 urls = ["https://crates.io/api/v1/crates/percent-encoding/2.1.0/download"],
1244 strip_prefix = "percent-encoding-2.1.0",
1245 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.percent-encoding-2.1.0.bazel"),
1246 )
1247
1248 maybe(
1249 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001250 name = "cui__pest-2.1.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001251 sha256 = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53",
1252 type = "tar.gz",
1253 urls = ["https://crates.io/api/v1/crates/pest/2.1.3/download"],
1254 strip_prefix = "pest-2.1.3",
1255 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.pest-2.1.3.bazel"),
1256 )
1257
1258 maybe(
1259 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001260 name = "cui__pest_derive-2.1.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001261 sha256 = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0",
1262 type = "tar.gz",
1263 urls = ["https://crates.io/api/v1/crates/pest_derive/2.1.0/download"],
1264 strip_prefix = "pest_derive-2.1.0",
1265 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.pest_derive-2.1.0.bazel"),
1266 )
1267
1268 maybe(
1269 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001270 name = "cui__pest_generator-2.1.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001271 sha256 = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55",
1272 type = "tar.gz",
1273 urls = ["https://crates.io/api/v1/crates/pest_generator/2.1.3/download"],
1274 strip_prefix = "pest_generator-2.1.3",
1275 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.pest_generator-2.1.3.bazel"),
1276 )
1277
1278 maybe(
1279 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001280 name = "cui__pest_meta-2.1.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001281 sha256 = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d",
1282 type = "tar.gz",
1283 urls = ["https://crates.io/api/v1/crates/pest_meta/2.1.3/download"],
1284 strip_prefix = "pest_meta-2.1.3",
1285 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.pest_meta-2.1.3.bazel"),
1286 )
1287
1288 maybe(
1289 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001290 name = "cui__phf-0.10.1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001291 sha256 = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259",
1292 type = "tar.gz",
1293 urls = ["https://crates.io/api/v1/crates/phf/0.10.1/download"],
1294 strip_prefix = "phf-0.10.1",
1295 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.phf-0.10.1.bazel"),
1296 )
1297
1298 maybe(
1299 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001300 name = "cui__phf_codegen-0.10.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001301 sha256 = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd",
1302 type = "tar.gz",
1303 urls = ["https://crates.io/api/v1/crates/phf_codegen/0.10.0/download"],
1304 strip_prefix = "phf_codegen-0.10.0",
1305 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.phf_codegen-0.10.0.bazel"),
1306 )
1307
1308 maybe(
1309 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001310 name = "cui__phf_generator-0.10.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001311 sha256 = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6",
1312 type = "tar.gz",
1313 urls = ["https://crates.io/api/v1/crates/phf_generator/0.10.0/download"],
1314 strip_prefix = "phf_generator-0.10.0",
1315 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.phf_generator-0.10.0.bazel"),
1316 )
1317
1318 maybe(
1319 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001320 name = "cui__phf_shared-0.10.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001321 sha256 = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096",
1322 type = "tar.gz",
1323 urls = ["https://crates.io/api/v1/crates/phf_shared/0.10.0/download"],
1324 strip_prefix = "phf_shared-0.10.0",
1325 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.phf_shared-0.10.0.bazel"),
1326 )
1327
1328 maybe(
1329 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001330 name = "cui__pkg-config-0.3.25",
1331 sha256 = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae",
Brian Silvermancc09f182022-03-09 15:40:20 -08001332 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001333 urls = ["https://crates.io/api/v1/crates/pkg-config/0.3.25/download"],
1334 strip_prefix = "pkg-config-0.3.25",
1335 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.pkg-config-0.3.25.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001336 )
1337
1338 maybe(
1339 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001340 name = "cui__ppv-lite86-0.2.16",
Brian Silvermancc09f182022-03-09 15:40:20 -08001341 sha256 = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872",
1342 type = "tar.gz",
1343 urls = ["https://crates.io/api/v1/crates/ppv-lite86/0.2.16/download"],
1344 strip_prefix = "ppv-lite86-0.2.16",
1345 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.ppv-lite86-0.2.16.bazel"),
1346 )
1347
1348 maybe(
1349 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001350 name = "cui__proc-macro-error-1.0.4",
Brian Silvermancc09f182022-03-09 15:40:20 -08001351 sha256 = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c",
1352 type = "tar.gz",
1353 urls = ["https://crates.io/api/v1/crates/proc-macro-error/1.0.4/download"],
1354 strip_prefix = "proc-macro-error-1.0.4",
1355 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.proc-macro-error-1.0.4.bazel"),
1356 )
1357
1358 maybe(
1359 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001360 name = "cui__proc-macro-error-attr-1.0.4",
Brian Silvermancc09f182022-03-09 15:40:20 -08001361 sha256 = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869",
1362 type = "tar.gz",
1363 urls = ["https://crates.io/api/v1/crates/proc-macro-error-attr/1.0.4/download"],
1364 strip_prefix = "proc-macro-error-attr-1.0.4",
1365 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.proc-macro-error-attr-1.0.4.bazel"),
1366 )
1367
1368 maybe(
1369 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001370 name = "cui__proc-macro2-1.0.40",
1371 sha256 = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7",
Brian Silvermancc09f182022-03-09 15:40:20 -08001372 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001373 urls = ["https://crates.io/api/v1/crates/proc-macro2/1.0.40/download"],
1374 strip_prefix = "proc-macro2-1.0.40",
1375 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.proc-macro2-1.0.40.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001376 )
1377
1378 maybe(
1379 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001380 name = "cui__quote-1.0.20",
1381 sha256 = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804",
Brian Silvermancc09f182022-03-09 15:40:20 -08001382 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001383 urls = ["https://crates.io/api/v1/crates/quote/1.0.20/download"],
1384 strip_prefix = "quote-1.0.20",
1385 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.quote-1.0.20.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001386 )
1387
1388 maybe(
1389 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001390 name = "cui__rand-0.4.6",
Brian Silvermancc09f182022-03-09 15:40:20 -08001391 sha256 = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293",
1392 type = "tar.gz",
1393 urls = ["https://crates.io/api/v1/crates/rand/0.4.6/download"],
1394 strip_prefix = "rand-0.4.6",
1395 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rand-0.4.6.bazel"),
1396 )
1397
1398 maybe(
1399 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001400 name = "cui__rand-0.8.5",
Brian Silvermancc09f182022-03-09 15:40:20 -08001401 sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404",
1402 type = "tar.gz",
1403 urls = ["https://crates.io/api/v1/crates/rand/0.8.5/download"],
1404 strip_prefix = "rand-0.8.5",
1405 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rand-0.8.5.bazel"),
1406 )
1407
1408 maybe(
1409 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001410 name = "cui__rand_chacha-0.3.1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001411 sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88",
1412 type = "tar.gz",
1413 urls = ["https://crates.io/api/v1/crates/rand_chacha/0.3.1/download"],
1414 strip_prefix = "rand_chacha-0.3.1",
1415 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rand_chacha-0.3.1.bazel"),
1416 )
1417
1418 maybe(
1419 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001420 name = "cui__rand_core-0.3.1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001421 sha256 = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b",
1422 type = "tar.gz",
1423 urls = ["https://crates.io/api/v1/crates/rand_core/0.3.1/download"],
1424 strip_prefix = "rand_core-0.3.1",
1425 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rand_core-0.3.1.bazel"),
1426 )
1427
1428 maybe(
1429 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001430 name = "cui__rand_core-0.4.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001431 sha256 = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc",
1432 type = "tar.gz",
1433 urls = ["https://crates.io/api/v1/crates/rand_core/0.4.2/download"],
1434 strip_prefix = "rand_core-0.4.2",
1435 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rand_core-0.4.2.bazel"),
1436 )
1437
1438 maybe(
1439 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001440 name = "cui__rand_core-0.6.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001441 sha256 = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7",
1442 type = "tar.gz",
1443 urls = ["https://crates.io/api/v1/crates/rand_core/0.6.3/download"],
1444 strip_prefix = "rand_core-0.6.3",
1445 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rand_core-0.6.3.bazel"),
1446 )
1447
1448 maybe(
1449 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001450 name = "cui__rdrand-0.4.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001451 sha256 = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2",
1452 type = "tar.gz",
1453 urls = ["https://crates.io/api/v1/crates/rdrand/0.4.0/download"],
1454 strip_prefix = "rdrand-0.4.0",
1455 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rdrand-0.4.0.bazel"),
1456 )
1457
1458 maybe(
1459 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001460 name = "cui__redox_syscall-0.2.13",
1461 sha256 = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42",
Brian Silvermancc09f182022-03-09 15:40:20 -08001462 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001463 urls = ["https://crates.io/api/v1/crates/redox_syscall/0.2.13/download"],
1464 strip_prefix = "redox_syscall-0.2.13",
1465 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.redox_syscall-0.2.13.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001466 )
1467
1468 maybe(
1469 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001470 name = "cui__regex-1.6.0",
1471 sha256 = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b",
Brian Silvermancc09f182022-03-09 15:40:20 -08001472 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001473 urls = ["https://crates.io/api/v1/crates/regex/1.6.0/download"],
1474 strip_prefix = "regex-1.6.0",
1475 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.regex-1.6.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001476 )
1477
1478 maybe(
1479 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001480 name = "cui__regex-syntax-0.6.27",
1481 sha256 = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244",
Brian Silvermancc09f182022-03-09 15:40:20 -08001482 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001483 urls = ["https://crates.io/api/v1/crates/regex-syntax/0.6.27/download"],
1484 strip_prefix = "regex-syntax-0.6.27",
1485 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.regex-syntax-0.6.27.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001486 )
1487
1488 maybe(
1489 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001490 name = "cui__remove_dir_all-0.5.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001491 sha256 = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7",
1492 type = "tar.gz",
1493 urls = ["https://crates.io/api/v1/crates/remove_dir_all/0.5.3/download"],
1494 strip_prefix = "remove_dir_all-0.5.3",
1495 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.remove_dir_all-0.5.3.bazel"),
1496 )
1497
1498 maybe(
1499 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001500 name = "cui__rustc-hash-1.1.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001501 sha256 = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2",
1502 type = "tar.gz",
1503 urls = ["https://crates.io/api/v1/crates/rustc-hash/1.1.0/download"],
1504 strip_prefix = "rustc-hash-1.1.0",
1505 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rustc-hash-1.1.0.bazel"),
1506 )
1507
1508 maybe(
1509 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001510 name = "cui__rustc-serialize-0.3.24",
Brian Silvermancc09f182022-03-09 15:40:20 -08001511 sha256 = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda",
1512 type = "tar.gz",
1513 urls = ["https://crates.io/api/v1/crates/rustc-serialize/0.3.24/download"],
1514 strip_prefix = "rustc-serialize-0.3.24",
1515 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.rustc-serialize-0.3.24.bazel"),
1516 )
1517
1518 maybe(
1519 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001520 name = "cui__ryu-1.0.10",
1521 sha256 = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695",
Brian Silvermancc09f182022-03-09 15:40:20 -08001522 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001523 urls = ["https://crates.io/api/v1/crates/ryu/1.0.10/download"],
1524 strip_prefix = "ryu-1.0.10",
1525 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.ryu-1.0.10.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001526 )
1527
1528 maybe(
1529 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001530 name = "cui__same-file-1.0.6",
Brian Silvermancc09f182022-03-09 15:40:20 -08001531 sha256 = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502",
1532 type = "tar.gz",
1533 urls = ["https://crates.io/api/v1/crates/same-file/1.0.6/download"],
1534 strip_prefix = "same-file-1.0.6",
1535 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.same-file-1.0.6.bazel"),
1536 )
1537
1538 maybe(
1539 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001540 name = "cui__semver-1.0.12",
1541 sha256 = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001542 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001543 urls = ["https://crates.io/api/v1/crates/semver/1.0.12/download"],
1544 strip_prefix = "semver-1.0.12",
1545 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.semver-1.0.12.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001546 )
1547
1548 maybe(
1549 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001550 name = "cui__serde-1.0.138",
1551 sha256 = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47",
Brian Silvermancc09f182022-03-09 15:40:20 -08001552 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001553 urls = ["https://crates.io/api/v1/crates/serde/1.0.138/download"],
1554 strip_prefix = "serde-1.0.138",
1555 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.serde-1.0.138.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001556 )
1557
1558 maybe(
1559 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001560 name = "cui__serde_derive-1.0.138",
1561 sha256 = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c",
Brian Silvermancc09f182022-03-09 15:40:20 -08001562 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001563 urls = ["https://crates.io/api/v1/crates/serde_derive/1.0.138/download"],
1564 strip_prefix = "serde_derive-1.0.138",
1565 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.serde_derive-1.0.138.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001566 )
1567
1568 maybe(
1569 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001570 name = "cui__serde_json-1.0.82",
1571 sha256 = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7",
Brian Silvermancc09f182022-03-09 15:40:20 -08001572 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001573 urls = ["https://crates.io/api/v1/crates/serde_json/1.0.82/download"],
1574 strip_prefix = "serde_json-1.0.82",
1575 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.serde_json-1.0.82.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001576 )
1577
1578 maybe(
1579 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001580 name = "cui__sha-1-0.8.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001581 sha256 = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df",
1582 type = "tar.gz",
1583 urls = ["https://crates.io/api/v1/crates/sha-1/0.8.2/download"],
1584 strip_prefix = "sha-1-0.8.2",
1585 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.sha-1-0.8.2.bazel"),
1586 )
1587
1588 maybe(
1589 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001590 name = "cui__sha2-0.10.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001591 sha256 = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676",
1592 type = "tar.gz",
1593 urls = ["https://crates.io/api/v1/crates/sha2/0.10.2/download"],
1594 strip_prefix = "sha2-0.10.2",
1595 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.sha2-0.10.2.bazel"),
1596 )
1597
1598 maybe(
1599 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001600 name = "cui__siphasher-0.3.10",
1601 sha256 = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de",
Brian Silvermancc09f182022-03-09 15:40:20 -08001602 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001603 urls = ["https://crates.io/api/v1/crates/siphasher/0.3.10/download"],
1604 strip_prefix = "siphasher-0.3.10",
1605 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.siphasher-0.3.10.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001606 )
1607
1608 maybe(
1609 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001610 name = "cui__slug-0.1.4",
Brian Silvermancc09f182022-03-09 15:40:20 -08001611 sha256 = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373",
1612 type = "tar.gz",
1613 urls = ["https://crates.io/api/v1/crates/slug/0.1.4/download"],
1614 strip_prefix = "slug-0.1.4",
1615 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.slug-0.1.4.bazel"),
1616 )
1617
1618 maybe(
1619 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001620 name = "cui__smallvec-1.9.0",
1621 sha256 = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001622 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001623 urls = ["https://crates.io/api/v1/crates/smallvec/1.9.0/download"],
1624 strip_prefix = "smallvec-1.9.0",
1625 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.smallvec-1.9.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001626 )
1627
1628 maybe(
1629 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001630 name = "cui__smartstring-1.0.1",
1631 sha256 = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29",
Brian Silvermancc09f182022-03-09 15:40:20 -08001632 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001633 urls = ["https://crates.io/api/v1/crates/smartstring/1.0.1/download"],
1634 strip_prefix = "smartstring-1.0.1",
1635 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.smartstring-1.0.1.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001636 )
1637
1638 maybe(
1639 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001640 name = "cui__smawk-0.3.1",
Brian Silvermancc09f182022-03-09 15:40:20 -08001641 sha256 = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043",
1642 type = "tar.gz",
1643 urls = ["https://crates.io/api/v1/crates/smawk/0.3.1/download"],
1644 strip_prefix = "smawk-0.3.1",
1645 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.smawk-0.3.1.bazel"),
1646 )
1647
1648 maybe(
1649 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001650 name = "cui__spectral-0.6.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001651 sha256 = "ae3c15181f4b14e52eeaac3efaeec4d2764716ce9c86da0c934c3e318649c5ba",
1652 type = "tar.gz",
1653 urls = ["https://crates.io/api/v1/crates/spectral/0.6.0/download"],
1654 strip_prefix = "spectral-0.6.0",
1655 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.spectral-0.6.0.bazel"),
1656 )
1657
1658 maybe(
1659 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001660 name = "cui__static_assertions-1.1.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001661 sha256 = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f",
1662 type = "tar.gz",
1663 urls = ["https://crates.io/api/v1/crates/static_assertions/1.1.0/download"],
1664 strip_prefix = "static_assertions-1.1.0",
1665 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.static_assertions-1.1.0.bazel"),
1666 )
1667
1668 maybe(
1669 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001670 name = "cui__strsim-0.10.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001671 sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623",
1672 type = "tar.gz",
1673 urls = ["https://crates.io/api/v1/crates/strsim/0.10.0/download"],
1674 strip_prefix = "strsim-0.10.0",
1675 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.strsim-0.10.0.bazel"),
1676 )
1677
1678 maybe(
1679 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001680 name = "cui__syn-1.0.98",
1681 sha256 = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd",
Brian Silvermancc09f182022-03-09 15:40:20 -08001682 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001683 urls = ["https://crates.io/api/v1/crates/syn/1.0.98/download"],
1684 strip_prefix = "syn-1.0.98",
1685 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.syn-1.0.98.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001686 )
1687
1688 maybe(
1689 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001690 name = "cui__tempfile-3.3.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001691 sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4",
1692 type = "tar.gz",
1693 urls = ["https://crates.io/api/v1/crates/tempfile/3.3.0/download"],
1694 strip_prefix = "tempfile-3.3.0",
1695 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.tempfile-3.3.0.bazel"),
1696 )
1697
1698 maybe(
1699 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001700 name = "cui__tera-1.16.0",
1701 sha256 = "7c9783d6ff395ae80cf17ed9a25360e7ba37742a79fa8fddabb073c5c7c8856d",
Brian Silvermancc09f182022-03-09 15:40:20 -08001702 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001703 urls = ["https://crates.io/api/v1/crates/tera/1.16.0/download"],
1704 strip_prefix = "tera-1.16.0",
1705 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.tera-1.16.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001706 )
1707
1708 maybe(
1709 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001710 name = "cui__termcolor-1.1.3",
Brian Silvermancc09f182022-03-09 15:40:20 -08001711 sha256 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755",
1712 type = "tar.gz",
1713 urls = ["https://crates.io/api/v1/crates/termcolor/1.1.3/download"],
1714 strip_prefix = "termcolor-1.1.3",
1715 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.termcolor-1.1.3.bazel"),
1716 )
1717
1718 maybe(
1719 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001720 name = "cui__textwrap-0.15.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001721 sha256 = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb",
1722 type = "tar.gz",
1723 urls = ["https://crates.io/api/v1/crates/textwrap/0.15.0/download"],
1724 strip_prefix = "textwrap-0.15.0",
1725 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.textwrap-0.15.0.bazel"),
1726 )
1727
1728 maybe(
1729 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001730 name = "cui__thread_local-1.1.4",
Brian Silvermancc09f182022-03-09 15:40:20 -08001731 sha256 = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180",
1732 type = "tar.gz",
1733 urls = ["https://crates.io/api/v1/crates/thread_local/1.1.4/download"],
1734 strip_prefix = "thread_local-1.1.4",
1735 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.thread_local-1.1.4.bazel"),
1736 )
1737
1738 maybe(
1739 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001740 name = "cui__tinyvec-1.6.0",
1741 sha256 = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50",
Brian Silvermancc09f182022-03-09 15:40:20 -08001742 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001743 urls = ["https://crates.io/api/v1/crates/tinyvec/1.6.0/download"],
1744 strip_prefix = "tinyvec-1.6.0",
1745 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.tinyvec-1.6.0.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001746 )
1747
1748 maybe(
1749 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001750 name = "cui__tinyvec_macros-0.1.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001751 sha256 = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c",
1752 type = "tar.gz",
1753 urls = ["https://crates.io/api/v1/crates/tinyvec_macros/0.1.0/download"],
1754 strip_prefix = "tinyvec_macros-0.1.0",
1755 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.tinyvec_macros-0.1.0.bazel"),
1756 )
1757
1758 maybe(
1759 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001760 name = "cui__toml-0.5.9",
1761 sha256 = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7",
Brian Silvermancc09f182022-03-09 15:40:20 -08001762 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001763 urls = ["https://crates.io/api/v1/crates/toml/0.5.9/download"],
1764 strip_prefix = "toml-0.5.9",
1765 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.toml-0.5.9.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001766 )
1767
1768 maybe(
1769 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001770 name = "cui__typenum-1.15.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001771 sha256 = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987",
1772 type = "tar.gz",
1773 urls = ["https://crates.io/api/v1/crates/typenum/1.15.0/download"],
1774 strip_prefix = "typenum-1.15.0",
1775 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.typenum-1.15.0.bazel"),
1776 )
1777
1778 maybe(
1779 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001780 name = "cui__ucd-trie-0.1.4",
1781 sha256 = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c",
Brian Silvermancc09f182022-03-09 15:40:20 -08001782 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001783 urls = ["https://crates.io/api/v1/crates/ucd-trie/0.1.4/download"],
1784 strip_prefix = "ucd-trie-0.1.4",
1785 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.ucd-trie-0.1.4.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001786 )
1787
1788 maybe(
1789 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001790 name = "cui__uncased-0.9.7",
1791 sha256 = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622",
Brian Silvermancc09f182022-03-09 15:40:20 -08001792 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001793 urls = ["https://crates.io/api/v1/crates/uncased/0.9.7/download"],
1794 strip_prefix = "uncased-0.9.7",
1795 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.uncased-0.9.7.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001796 )
1797
1798 maybe(
1799 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001800 name = "cui__unic-char-property-0.9.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001801 sha256 = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221",
1802 type = "tar.gz",
1803 urls = ["https://crates.io/api/v1/crates/unic-char-property/0.9.0/download"],
1804 strip_prefix = "unic-char-property-0.9.0",
1805 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unic-char-property-0.9.0.bazel"),
1806 )
1807
1808 maybe(
1809 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001810 name = "cui__unic-char-range-0.9.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001811 sha256 = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc",
1812 type = "tar.gz",
1813 urls = ["https://crates.io/api/v1/crates/unic-char-range/0.9.0/download"],
1814 strip_prefix = "unic-char-range-0.9.0",
1815 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unic-char-range-0.9.0.bazel"),
1816 )
1817
1818 maybe(
1819 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001820 name = "cui__unic-common-0.9.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001821 sha256 = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc",
1822 type = "tar.gz",
1823 urls = ["https://crates.io/api/v1/crates/unic-common/0.9.0/download"],
1824 strip_prefix = "unic-common-0.9.0",
1825 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unic-common-0.9.0.bazel"),
1826 )
1827
1828 maybe(
1829 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001830 name = "cui__unic-segment-0.9.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001831 sha256 = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23",
1832 type = "tar.gz",
1833 urls = ["https://crates.io/api/v1/crates/unic-segment/0.9.0/download"],
1834 strip_prefix = "unic-segment-0.9.0",
1835 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unic-segment-0.9.0.bazel"),
1836 )
1837
1838 maybe(
1839 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001840 name = "cui__unic-ucd-segment-0.9.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001841 sha256 = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700",
1842 type = "tar.gz",
1843 urls = ["https://crates.io/api/v1/crates/unic-ucd-segment/0.9.0/download"],
1844 strip_prefix = "unic-ucd-segment-0.9.0",
1845 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unic-ucd-segment-0.9.0.bazel"),
1846 )
1847
1848 maybe(
1849 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001850 name = "cui__unic-ucd-version-0.9.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001851 sha256 = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4",
1852 type = "tar.gz",
1853 urls = ["https://crates.io/api/v1/crates/unic-ucd-version/0.9.0/download"],
1854 strip_prefix = "unic-ucd-version-0.9.0",
1855 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unic-ucd-version-0.9.0.bazel"),
1856 )
1857
1858 maybe(
1859 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001860 name = "cui__unicode-bidi-0.3.8",
1861 sha256 = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992",
Brian Silvermancc09f182022-03-09 15:40:20 -08001862 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001863 urls = ["https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download"],
1864 strip_prefix = "unicode-bidi-0.3.8",
1865 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unicode-bidi-0.3.8.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001866 )
1867
1868 maybe(
1869 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001870 name = "cui__unicode-ident-1.0.1",
1871 sha256 = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c",
1872 type = "tar.gz",
1873 urls = ["https://crates.io/api/v1/crates/unicode-ident/1.0.1/download"],
1874 strip_prefix = "unicode-ident-1.0.1",
1875 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unicode-ident-1.0.1.bazel"),
1876 )
1877
1878 maybe(
1879 http_archive,
1880 name = "cui__unicode-linebreak-0.1.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001881 sha256 = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f",
1882 type = "tar.gz",
1883 urls = ["https://crates.io/api/v1/crates/unicode-linebreak/0.1.2/download"],
1884 strip_prefix = "unicode-linebreak-0.1.2",
1885 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unicode-linebreak-0.1.2.bazel"),
1886 )
1887
1888 maybe(
1889 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001890 name = "cui__unicode-normalization-0.1.21",
1891 sha256 = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6",
Brian Silvermancc09f182022-03-09 15:40:20 -08001892 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001893 urls = ["https://crates.io/api/v1/crates/unicode-normalization/0.1.21/download"],
1894 strip_prefix = "unicode-normalization-0.1.21",
1895 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unicode-normalization-0.1.21.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001896 )
1897
1898 maybe(
1899 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001900 name = "cui__unicode-width-0.1.9",
Brian Silvermancc09f182022-03-09 15:40:20 -08001901 sha256 = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973",
1902 type = "tar.gz",
1903 urls = ["https://crates.io/api/v1/crates/unicode-width/0.1.9/download"],
1904 strip_prefix = "unicode-width-0.1.9",
1905 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.unicode-width-0.1.9.bazel"),
1906 )
1907
1908 maybe(
1909 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001910 name = "cui__url-2.2.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001911 sha256 = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c",
1912 type = "tar.gz",
1913 urls = ["https://crates.io/api/v1/crates/url/2.2.2/download"],
1914 strip_prefix = "url-2.2.2",
1915 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.url-2.2.2.bazel"),
1916 )
1917
1918 maybe(
1919 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001920 name = "cui__vcpkg-0.2.15",
Brian Silvermancc09f182022-03-09 15:40:20 -08001921 sha256 = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426",
1922 type = "tar.gz",
1923 urls = ["https://crates.io/api/v1/crates/vcpkg/0.2.15/download"],
1924 strip_prefix = "vcpkg-0.2.15",
1925 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.vcpkg-0.2.15.bazel"),
1926 )
1927
1928 maybe(
1929 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001930 name = "cui__version_check-0.9.4",
Brian Silvermancc09f182022-03-09 15:40:20 -08001931 sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f",
1932 type = "tar.gz",
1933 urls = ["https://crates.io/api/v1/crates/version_check/0.9.4/download"],
1934 strip_prefix = "version_check-0.9.4",
1935 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.version_check-0.9.4.bazel"),
1936 )
1937
1938 maybe(
1939 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001940 name = "cui__walkdir-2.3.2",
Brian Silvermancc09f182022-03-09 15:40:20 -08001941 sha256 = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56",
1942 type = "tar.gz",
1943 urls = ["https://crates.io/api/v1/crates/walkdir/2.3.2/download"],
1944 strip_prefix = "walkdir-2.3.2",
1945 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.walkdir-2.3.2.bazel"),
1946 )
1947
1948 maybe(
1949 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001950 name = "cui__wasi-0.11.0-wasi-snapshot-preview1",
1951 sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423",
Brian Silvermancc09f182022-03-09 15:40:20 -08001952 type = "tar.gz",
Brian Silverman5f6f2762022-08-13 19:30:05 -07001953 urls = ["https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download"],
1954 strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1",
1955 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"),
Brian Silvermancc09f182022-03-09 15:40:20 -08001956 )
1957
1958 maybe(
1959 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001960 name = "cui__winapi-0.3.9",
Brian Silvermancc09f182022-03-09 15:40:20 -08001961 sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419",
1962 type = "tar.gz",
1963 urls = ["https://crates.io/api/v1/crates/winapi/0.3.9/download"],
1964 strip_prefix = "winapi-0.3.9",
1965 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.winapi-0.3.9.bazel"),
1966 )
1967
1968 maybe(
1969 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001970 name = "cui__winapi-i686-pc-windows-gnu-0.4.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001971 sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6",
1972 type = "tar.gz",
1973 urls = ["https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download"],
1974 strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0",
1975 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"),
1976 )
1977
1978 maybe(
1979 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001980 name = "cui__winapi-util-0.1.5",
Brian Silvermancc09f182022-03-09 15:40:20 -08001981 sha256 = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178",
1982 type = "tar.gz",
1983 urls = ["https://crates.io/api/v1/crates/winapi-util/0.1.5/download"],
1984 strip_prefix = "winapi-util-0.1.5",
1985 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.winapi-util-0.1.5.bazel"),
1986 )
1987
1988 maybe(
1989 http_archive,
Brian Silverman5f6f2762022-08-13 19:30:05 -07001990 name = "cui__winapi-x86_64-pc-windows-gnu-0.4.0",
Brian Silvermancc09f182022-03-09 15:40:20 -08001991 sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f",
1992 type = "tar.gz",
1993 urls = ["https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download"],
1994 strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0",
1995 build_file = Label("@rules_rust//crate_universe/3rdparty/crates:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"),
1996 )