blob: 2de2b9ba550f05911dd369b7f5932c38b573eeb2 [file] [log] [blame]
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//vendor_remote_pkgs:crates_vendor
###############################################################################
"""
# `crates_repository` API
- [aliases](#aliases)
- [crate_deps](#crate_deps)
- [all_crate_deps](#all_crate_deps)
- [crate_repositories](#crate_repositories)
"""
load("@bazel_skylib//lib:selects.bzl", "selects")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
###############################################################################
# MACROS API
###############################################################################
# An identifier that represent common dependencies (unconditional).
_COMMON_CONDITION = ""
def _flatten_dependency_maps(all_dependency_maps):
"""Flatten a list of dependency maps into one dictionary.
Dependency maps have the following structure:
```python
DEPENDENCIES_MAP = {
# The first key in the map is a Bazel package
# name of the workspace this file is defined in.
"workspace_member_package": {
# Not all dependencies are supported for all platforms.
# the condition key is the condition required to be true
# on the host platform.
"condition": {
# An alias to a crate target. # The label of the crate target the
# Aliases are only crate names. # package name refers to.
"package_name": "@full//:label",
}
}
}
```
Args:
all_dependency_maps (list): A list of dicts as described above
Returns:
dict: A dictionary as described above
"""
dependencies = {}
for workspace_deps_map in all_dependency_maps:
for pkg_name, conditional_deps_map in workspace_deps_map.items():
if pkg_name not in dependencies:
non_frozen_map = dict()
for key, values in conditional_deps_map.items():
non_frozen_map.update({key: dict(values.items())})
dependencies.setdefault(pkg_name, non_frozen_map)
continue
for condition, deps_map in conditional_deps_map.items():
# If the condition has not been recorded, do so and continue
if condition not in dependencies[pkg_name]:
dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))
continue
# Alert on any miss-matched dependencies
inconsistent_entries = []
for crate_name, crate_label in deps_map.items():
existing = dependencies[pkg_name][condition].get(crate_name)
if existing and existing != crate_label:
inconsistent_entries.append((crate_name, existing, crate_label))
dependencies[pkg_name][condition].update({crate_name: crate_label})
return dependencies
def crate_deps(deps, package_name = None):
"""Finds the fully qualified label of the requested crates for the package where this macro is called.
Args:
deps (list): The desired list of crate targets.
package_name (str, optional): The package name of the set of dependencies to look up.
Defaults to `native.package_name()`.
Returns:
list: A list of labels to generated rust targets (str)
"""
if not deps:
return []
if package_name == None:
package_name = native.package_name()
# Join both sets of dependencies
dependencies = _flatten_dependency_maps([
_NORMAL_DEPENDENCIES,
_NORMAL_DEV_DEPENDENCIES,
_PROC_MACRO_DEPENDENCIES,
_PROC_MACRO_DEV_DEPENDENCIES,
_BUILD_DEPENDENCIES,
_BUILD_PROC_MACRO_DEPENDENCIES,
]).pop(package_name, {})
# Combine all conditional packages so we can easily index over a flat list
# TODO: Perhaps this should actually return select statements and maintain
# the conditionals of the dependencies
flat_deps = {}
for deps_set in dependencies.values():
for crate_name, crate_label in deps_set.items():
flat_deps.update({crate_name: crate_label})
missing_crates = []
crate_targets = []
for crate_target in deps:
if crate_target not in flat_deps:
missing_crates.append(crate_target)
else:
crate_targets.append(flat_deps[crate_target])
if missing_crates:
fail("Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`".format(
missing_crates,
package_name,
dependencies,
))
return crate_targets
def all_crate_deps(
normal = False,
normal_dev = False,
proc_macro = False,
proc_macro_dev = False,
build = False,
build_proc_macro = False,
package_name = None):
"""Finds the fully qualified label of all requested direct crate dependencies \
for the package where this macro is called.
If no parameters are set, all normal dependencies are returned. Setting any one flag will
otherwise impact the contents of the returned list.
Args:
normal (bool, optional): If True, normal dependencies are included in the
output list.
normal_dev (bool, optional): If True, normal dev dependencies will be
included in the output list..
proc_macro (bool, optional): If True, proc_macro dependencies are included
in the output list.
proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are
included in the output list.
build (bool, optional): If True, build dependencies are included
in the output list.
build_proc_macro (bool, optional): If True, build proc_macro dependencies are
included in the output list.
package_name (str, optional): The package name of the set of dependencies to look up.
Defaults to `native.package_name()` when unset.
Returns:
list: A list of labels to generated rust targets (str)
"""
if package_name == None:
package_name = native.package_name()
# Determine the relevant maps to use
all_dependency_maps = []
if normal:
all_dependency_maps.append(_NORMAL_DEPENDENCIES)
if normal_dev:
all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)
if proc_macro:
all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)
if proc_macro_dev:
all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)
if build:
all_dependency_maps.append(_BUILD_DEPENDENCIES)
if build_proc_macro:
all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)
# Default to always using normal dependencies
if not all_dependency_maps:
all_dependency_maps.append(_NORMAL_DEPENDENCIES)
dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)
if not dependencies:
if dependencies == None:
fail("Tried to get all_crate_deps for package " + package_name + " but that package had no Cargo.toml file")
else:
return []
crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())
for condition, deps in dependencies.items():
crate_deps += selects.with_or({
tuple(_CONDITIONS[condition]): deps.values(),
"//conditions:default": [],
})
return crate_deps
def aliases(
normal = False,
normal_dev = False,
proc_macro = False,
proc_macro_dev = False,
build = False,
build_proc_macro = False,
package_name = None):
"""Produces a map of Crate alias names to their original label
If no dependency kinds are specified, `normal` and `proc_macro` are used by default.
Setting any one flag will otherwise determine the contents of the returned dict.
Args:
normal (bool, optional): If True, normal dependencies are included in the
output list.
normal_dev (bool, optional): If True, normal dev dependencies will be
included in the output list..
proc_macro (bool, optional): If True, proc_macro dependencies are included
in the output list.
proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are
included in the output list.
build (bool, optional): If True, build dependencies are included
in the output list.
build_proc_macro (bool, optional): If True, build proc_macro dependencies are
included in the output list.
package_name (str, optional): The package name of the set of dependencies to look up.
Defaults to `native.package_name()` when unset.
Returns:
dict: The aliases of all associated packages
"""
if package_name == None:
package_name = native.package_name()
# Determine the relevant maps to use
all_aliases_maps = []
if normal:
all_aliases_maps.append(_NORMAL_ALIASES)
if normal_dev:
all_aliases_maps.append(_NORMAL_DEV_ALIASES)
if proc_macro:
all_aliases_maps.append(_PROC_MACRO_ALIASES)
if proc_macro_dev:
all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)
if build:
all_aliases_maps.append(_BUILD_ALIASES)
if build_proc_macro:
all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)
# Default to always using normal aliases
if not all_aliases_maps:
all_aliases_maps.append(_NORMAL_ALIASES)
all_aliases_maps.append(_PROC_MACRO_ALIASES)
aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)
if not aliases:
return dict()
common_items = aliases.pop(_COMMON_CONDITION, {}).items()
# If there are only common items in the dictionary, immediately return them
if not len(aliases.keys()) == 1:
return dict(common_items)
# Build a single select statement where each conditional has accounted for the
# common set of aliases.
crate_aliases = {"//conditions:default": dict(common_items)}
for condition, deps in aliases.items():
condition_triples = _CONDITIONS[condition]
for triple in condition_triples:
if triple in crate_aliases:
crate_aliases[triple].update(deps)
else:
crate_aliases.update({triple: dict(deps.items() + common_items)})
return select(crate_aliases)
###############################################################################
# WORKSPACE MEMBER DEPS AND ALIASES
###############################################################################
_NORMAL_DEPENDENCIES = {
"": {
_COMMON_CONDITION: {
"axum": Label("@crates_vendor_pkgs__axum-0.4.8//:axum"),
"hyper": Label("@crates_vendor_pkgs__hyper-0.14.28//:hyper"),
"mime": Label("@crates_vendor_pkgs__mime-0.3.17//:mime"),
"serde_json": Label("@crates_vendor_pkgs__serde_json-1.0.114//:serde_json"),
"socket2": Label("@crates_vendor_pkgs__socket2-0.4.10//:socket2"),
"tokio": Label("@crates_vendor_pkgs__tokio-1.36.0//:tokio"),
"tower": Label("@crates_vendor_pkgs__tower-0.4.13//:tower"),
"tower-http": Label("@crates_vendor_pkgs__tower-http-0.2.5//:tower_http"),
"tracing": Label("@crates_vendor_pkgs__tracing-0.1.40//:tracing"),
"tracing-subscriber": Label("@crates_vendor_pkgs__tracing-subscriber-0.3.18//:tracing_subscriber"),
},
},
}
_NORMAL_ALIASES = {
"": {
_COMMON_CONDITION: {
},
},
}
_NORMAL_DEV_DEPENDENCIES = {
"": {
},
}
_NORMAL_DEV_ALIASES = {
"": {
},
}
_PROC_MACRO_DEPENDENCIES = {
"": {
},
}
_PROC_MACRO_ALIASES = {
"": {
},
}
_PROC_MACRO_DEV_DEPENDENCIES = {
"": {
},
}
_PROC_MACRO_DEV_ALIASES = {
"": {
},
}
_BUILD_DEPENDENCIES = {
"": {
},
}
_BUILD_ALIASES = {
"": {
},
}
_BUILD_PROC_MACRO_DEPENDENCIES = {
"": {
},
}
_BUILD_PROC_MACRO_ALIASES = {
"": {
},
}
_CONDITIONS = {
"aarch64-apple-darwin": ["@rules_rust//rust/platform:aarch64-apple-darwin"],
"aarch64-apple-ios": ["@rules_rust//rust/platform:aarch64-apple-ios"],
"aarch64-apple-ios-sim": ["@rules_rust//rust/platform:aarch64-apple-ios-sim"],
"aarch64-fuchsia": ["@rules_rust//rust/platform:aarch64-fuchsia"],
"aarch64-linux-android": ["@rules_rust//rust/platform:aarch64-linux-android"],
"aarch64-pc-windows-gnullvm": [],
"aarch64-pc-windows-msvc": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc"],
"aarch64-unknown-linux-gnu": ["@rules_rust//rust/platform:aarch64-unknown-linux-gnu"],
"aarch64-unknown-nixos-gnu": ["@rules_rust//rust/platform:aarch64-unknown-nixos-gnu"],
"aarch64-unknown-nto-qnx710": ["@rules_rust//rust/platform:aarch64-unknown-nto-qnx710"],
"arm-unknown-linux-gnueabi": ["@rules_rust//rust/platform:arm-unknown-linux-gnueabi"],
"armv7-linux-androideabi": ["@rules_rust//rust/platform:armv7-linux-androideabi"],
"armv7-unknown-linux-gnueabi": ["@rules_rust//rust/platform:armv7-unknown-linux-gnueabi"],
"cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc"],
"cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:i686-unknown-linux-gnu"],
"cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:i686-pc-windows-msvc"],
"cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": ["@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"],
"cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": ["@rules_rust//rust/platform:x86_64-pc-windows-msvc"],
"cfg(any())": [],
"cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:riscv32imc-unknown-none-elf", "@rules_rust//rust/platform:riscv64gc-unknown-none-elf", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:thumbv7em-none-eabi", "@rules_rust//rust/platform:thumbv8m.main-none-eabi", "@rules_rust//rust/platform:wasm32-unknown-unknown", "@rules_rust//rust/platform:wasm32-wasi", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu", "@rules_rust//rust/platform:x86_64-unknown-none"],
"cfg(not(target_family = \"wasm\"))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:riscv32imc-unknown-none-elf", "@rules_rust//rust/platform:riscv64gc-unknown-none-elf", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:thumbv7em-none-eabi", "@rules_rust//rust/platform:thumbv8m.main-none-eabi", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu", "@rules_rust//rust/platform:x86_64-unknown-none"],
"cfg(not(windows))": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:riscv32imc-unknown-none-elf", "@rules_rust//rust/platform:riscv64gc-unknown-none-elf", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:thumbv7em-none-eabi", "@rules_rust//rust/platform:thumbv8m.main-none-eabi", "@rules_rust//rust/platform:wasm32-unknown-unknown", "@rules_rust//rust/platform:wasm32-wasi", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu", "@rules_rust//rust/platform:x86_64-unknown-none"],
"cfg(target_os = \"hermit\")": [],
"cfg(target_os = \"redox\")": [],
"cfg(target_os = \"wasi\")": ["@rules_rust//rust/platform:wasm32-wasi"],
"cfg(target_os = \"windows\")": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"],
"cfg(tokio_taskdump)": [],
"cfg(tracing_unstable)": [],
"cfg(unix)": ["@rules_rust//rust/platform:aarch64-apple-darwin", "@rules_rust//rust/platform:aarch64-apple-ios", "@rules_rust//rust/platform:aarch64-apple-ios-sim", "@rules_rust//rust/platform:aarch64-fuchsia", "@rules_rust//rust/platform:aarch64-linux-android", "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu", "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710", "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", "@rules_rust//rust/platform:armv7-linux-androideabi", "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi", "@rules_rust//rust/platform:i686-apple-darwin", "@rules_rust//rust/platform:i686-linux-android", "@rules_rust//rust/platform:i686-unknown-freebsd", "@rules_rust//rust/platform:i686-unknown-linux-gnu", "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", "@rules_rust//rust/platform:s390x-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-apple-darwin", "@rules_rust//rust/platform:x86_64-apple-ios", "@rules_rust//rust/platform:x86_64-fuchsia", "@rules_rust//rust/platform:x86_64-linux-android", "@rules_rust//rust/platform:x86_64-unknown-freebsd", "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"],
"cfg(windows)": ["@rules_rust//rust/platform:aarch64-pc-windows-msvc", "@rules_rust//rust/platform:i686-pc-windows-msvc", "@rules_rust//rust/platform:x86_64-pc-windows-msvc"],
"i686-apple-darwin": ["@rules_rust//rust/platform:i686-apple-darwin"],
"i686-linux-android": ["@rules_rust//rust/platform:i686-linux-android"],
"i686-pc-windows-gnu": [],
"i686-pc-windows-msvc": ["@rules_rust//rust/platform:i686-pc-windows-msvc"],
"i686-unknown-freebsd": ["@rules_rust//rust/platform:i686-unknown-freebsd"],
"i686-unknown-linux-gnu": ["@rules_rust//rust/platform:i686-unknown-linux-gnu"],
"powerpc-unknown-linux-gnu": ["@rules_rust//rust/platform:powerpc-unknown-linux-gnu"],
"riscv32imc-unknown-none-elf": ["@rules_rust//rust/platform:riscv32imc-unknown-none-elf"],
"riscv64gc-unknown-none-elf": ["@rules_rust//rust/platform:riscv64gc-unknown-none-elf"],
"s390x-unknown-linux-gnu": ["@rules_rust//rust/platform:s390x-unknown-linux-gnu"],
"thumbv7em-none-eabi": ["@rules_rust//rust/platform:thumbv7em-none-eabi"],
"thumbv8m.main-none-eabi": ["@rules_rust//rust/platform:thumbv8m.main-none-eabi"],
"wasm32-unknown-unknown": ["@rules_rust//rust/platform:wasm32-unknown-unknown"],
"wasm32-wasi": ["@rules_rust//rust/platform:wasm32-wasi"],
"x86_64-apple-darwin": ["@rules_rust//rust/platform:x86_64-apple-darwin"],
"x86_64-apple-ios": ["@rules_rust//rust/platform:x86_64-apple-ios"],
"x86_64-fuchsia": ["@rules_rust//rust/platform:x86_64-fuchsia"],
"x86_64-linux-android": ["@rules_rust//rust/platform:x86_64-linux-android"],
"x86_64-pc-windows-gnu": [],
"x86_64-pc-windows-gnullvm": [],
"x86_64-pc-windows-msvc": ["@rules_rust//rust/platform:x86_64-pc-windows-msvc"],
"x86_64-unknown-freebsd": ["@rules_rust//rust/platform:x86_64-unknown-freebsd"],
"x86_64-unknown-linux-gnu": ["@rules_rust//rust/platform:x86_64-unknown-linux-gnu"],
"x86_64-unknown-nixos-gnu": ["@rules_rust//rust/platform:x86_64-unknown-nixos-gnu"],
"x86_64-unknown-none": ["@rules_rust//rust/platform:x86_64-unknown-none"],
}
###############################################################################
def crate_repositories():
"""A macro for defining repositories for all generated crates.
Returns:
A list of repos visible to the module through the module extension.
"""
maybe(
http_archive,
name = "crates_vendor_pkgs__addr2line-0.21.0",
sha256 = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/addr2line/0.21.0/download"],
strip_prefix = "addr2line-0.21.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.addr2line-0.21.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__adler-1.0.2",
sha256 = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/adler/1.0.2/download"],
strip_prefix = "adler-1.0.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.adler-1.0.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__async-trait-0.1.77",
sha256 = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/async-trait/0.1.77/download"],
strip_prefix = "async-trait-0.1.77",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.async-trait-0.1.77.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__autocfg-1.1.0",
sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/autocfg/1.1.0/download"],
strip_prefix = "autocfg-1.1.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.autocfg-1.1.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__axum-0.4.8",
sha256 = "c9f346c92c1e9a71d14fe4aaf7c2a5d9932cc4e5e48d8fb6641524416eb79ddd",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/axum/0.4.8/download"],
strip_prefix = "axum-0.4.8",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.axum-0.4.8.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__axum-core-0.1.2",
sha256 = "6dbcda393bef9c87572779cb8ef916f12d77750b27535dd6819fa86591627a51",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/axum-core/0.1.2/download"],
strip_prefix = "axum-core-0.1.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.axum-core-0.1.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__backtrace-0.3.69",
sha256 = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/backtrace/0.3.69/download"],
strip_prefix = "backtrace-0.3.69",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.backtrace-0.3.69.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__bitflags-1.3.2",
sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/bitflags/1.3.2/download"],
strip_prefix = "bitflags-1.3.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.bitflags-1.3.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__bytes-1.5.0",
sha256 = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/bytes/1.5.0/download"],
strip_prefix = "bytes-1.5.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.bytes-1.5.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__cc-1.0.86",
sha256 = "7f9fa1897e4325be0d68d48df6aa1a71ac2ed4d27723887e7754192705350730",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/cc/1.0.86/download"],
strip_prefix = "cc-1.0.86",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.cc-1.0.86.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__cfg-if-1.0.0",
sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/cfg-if/1.0.0/download"],
strip_prefix = "cfg-if-1.0.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.cfg-if-1.0.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__equivalent-1.0.1",
sha256 = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/equivalent/1.0.1/download"],
strip_prefix = "equivalent-1.0.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.equivalent-1.0.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__fnv-1.0.7",
sha256 = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/fnv/1.0.7/download"],
strip_prefix = "fnv-1.0.7",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.fnv-1.0.7.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__form_urlencoded-1.2.1",
sha256 = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/form_urlencoded/1.2.1/download"],
strip_prefix = "form_urlencoded-1.2.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.form_urlencoded-1.2.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__futures-channel-0.3.30",
sha256 = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/futures-channel/0.3.30/download"],
strip_prefix = "futures-channel-0.3.30",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.futures-channel-0.3.30.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__futures-core-0.3.30",
sha256 = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/futures-core/0.3.30/download"],
strip_prefix = "futures-core-0.3.30",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.futures-core-0.3.30.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__futures-sink-0.3.30",
sha256 = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/futures-sink/0.3.30/download"],
strip_prefix = "futures-sink-0.3.30",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.futures-sink-0.3.30.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__futures-task-0.3.30",
sha256 = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/futures-task/0.3.30/download"],
strip_prefix = "futures-task-0.3.30",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.futures-task-0.3.30.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__futures-util-0.3.30",
sha256 = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/futures-util/0.3.30/download"],
strip_prefix = "futures-util-0.3.30",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.futures-util-0.3.30.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__gimli-0.28.1",
sha256 = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/gimli/0.28.1/download"],
strip_prefix = "gimli-0.28.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.gimli-0.28.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__h2-0.3.24",
sha256 = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/h2/0.3.24/download"],
strip_prefix = "h2-0.3.24",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.h2-0.3.24.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__hashbrown-0.14.3",
sha256 = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/hashbrown/0.14.3/download"],
strip_prefix = "hashbrown-0.14.3",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.hashbrown-0.14.3.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__hermit-abi-0.3.6",
sha256 = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/hermit-abi/0.3.6/download"],
strip_prefix = "hermit-abi-0.3.6",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.hermit-abi-0.3.6.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__http-0.2.11",
sha256 = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/http/0.2.11/download"],
strip_prefix = "http-0.2.11",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.http-0.2.11.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__http-body-0.4.6",
sha256 = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/http-body/0.4.6/download"],
strip_prefix = "http-body-0.4.6",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.http-body-0.4.6.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__http-range-header-0.3.1",
sha256 = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/http-range-header/0.3.1/download"],
strip_prefix = "http-range-header-0.3.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.http-range-header-0.3.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__httparse-1.8.0",
sha256 = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/httparse/1.8.0/download"],
strip_prefix = "httparse-1.8.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.httparse-1.8.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__httpdate-1.0.3",
sha256 = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/httpdate/1.0.3/download"],
strip_prefix = "httpdate-1.0.3",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.httpdate-1.0.3.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__hyper-0.14.28",
sha256 = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/hyper/0.14.28/download"],
strip_prefix = "hyper-0.14.28",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.hyper-0.14.28.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__indexmap-2.2.3",
sha256 = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/indexmap/2.2.3/download"],
strip_prefix = "indexmap-2.2.3",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.indexmap-2.2.3.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__itoa-1.0.10",
sha256 = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/itoa/1.0.10/download"],
strip_prefix = "itoa-1.0.10",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.itoa-1.0.10.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__lazy_static-1.4.0",
sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/lazy_static/1.4.0/download"],
strip_prefix = "lazy_static-1.4.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.lazy_static-1.4.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__libc-0.2.153",
sha256 = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/libc/0.2.153/download"],
strip_prefix = "libc-0.2.153",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.libc-0.2.153.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__lock_api-0.4.11",
sha256 = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/lock_api/0.4.11/download"],
strip_prefix = "lock_api-0.4.11",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.lock_api-0.4.11.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__log-0.4.20",
sha256 = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/log/0.4.20/download"],
strip_prefix = "log-0.4.20",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.log-0.4.20.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__matchit-0.4.6",
sha256 = "9376a4f0340565ad675d11fc1419227faf5f60cd7ac9cb2e7185a471f30af833",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/matchit/0.4.6/download"],
strip_prefix = "matchit-0.4.6",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.matchit-0.4.6.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__memchr-2.7.1",
sha256 = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/memchr/2.7.1/download"],
strip_prefix = "memchr-2.7.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.memchr-2.7.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__mime-0.3.17",
sha256 = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/mime/0.3.17/download"],
strip_prefix = "mime-0.3.17",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.mime-0.3.17.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__miniz_oxide-0.7.2",
sha256 = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/miniz_oxide/0.7.2/download"],
strip_prefix = "miniz_oxide-0.7.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.miniz_oxide-0.7.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__mio-0.8.10",
sha256 = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/mio/0.8.10/download"],
strip_prefix = "mio-0.8.10",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.mio-0.8.10.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__nu-ansi-term-0.46.0",
sha256 = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/nu-ansi-term/0.46.0/download"],
strip_prefix = "nu-ansi-term-0.46.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.nu-ansi-term-0.46.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__num_cpus-1.16.0",
sha256 = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/num_cpus/1.16.0/download"],
strip_prefix = "num_cpus-1.16.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.num_cpus-1.16.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__object-0.32.2",
sha256 = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/object/0.32.2/download"],
strip_prefix = "object-0.32.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.object-0.32.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__once_cell-1.19.0",
sha256 = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/once_cell/1.19.0/download"],
strip_prefix = "once_cell-1.19.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.once_cell-1.19.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__overload-0.1.1",
sha256 = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/overload/0.1.1/download"],
strip_prefix = "overload-0.1.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.overload-0.1.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__parking_lot-0.12.1",
sha256 = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/parking_lot/0.12.1/download"],
strip_prefix = "parking_lot-0.12.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.parking_lot-0.12.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__parking_lot_core-0.9.9",
sha256 = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/parking_lot_core/0.9.9/download"],
strip_prefix = "parking_lot_core-0.9.9",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.parking_lot_core-0.9.9.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__percent-encoding-2.3.1",
sha256 = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/percent-encoding/2.3.1/download"],
strip_prefix = "percent-encoding-2.3.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.percent-encoding-2.3.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__pin-project-1.1.4",
sha256 = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/pin-project/1.1.4/download"],
strip_prefix = "pin-project-1.1.4",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.pin-project-1.1.4.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__pin-project-internal-1.1.4",
sha256 = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/pin-project-internal/1.1.4/download"],
strip_prefix = "pin-project-internal-1.1.4",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.pin-project-internal-1.1.4.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__pin-project-lite-0.2.13",
sha256 = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download"],
strip_prefix = "pin-project-lite-0.2.13",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.pin-project-lite-0.2.13.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__pin-utils-0.1.0",
sha256 = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/pin-utils/0.1.0/download"],
strip_prefix = "pin-utils-0.1.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.pin-utils-0.1.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__proc-macro2-1.0.78",
sha256 = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/proc-macro2/1.0.78/download"],
strip_prefix = "proc-macro2-1.0.78",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.proc-macro2-1.0.78.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__quote-1.0.35",
sha256 = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/quote/1.0.35/download"],
strip_prefix = "quote-1.0.35",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.quote-1.0.35.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__redox_syscall-0.4.1",
sha256 = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/redox_syscall/0.4.1/download"],
strip_prefix = "redox_syscall-0.4.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.redox_syscall-0.4.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__rustc-demangle-0.1.23",
sha256 = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/rustc-demangle/0.1.23/download"],
strip_prefix = "rustc-demangle-0.1.23",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.rustc-demangle-0.1.23.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__ryu-1.0.17",
sha256 = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/ryu/1.0.17/download"],
strip_prefix = "ryu-1.0.17",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.ryu-1.0.17.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__scopeguard-1.2.0",
sha256 = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/scopeguard/1.2.0/download"],
strip_prefix = "scopeguard-1.2.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.scopeguard-1.2.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__serde-1.0.197",
sha256 = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/serde/1.0.197/download"],
strip_prefix = "serde-1.0.197",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.serde-1.0.197.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__serde_derive-1.0.197",
sha256 = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/serde_derive/1.0.197/download"],
strip_prefix = "serde_derive-1.0.197",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.serde_derive-1.0.197.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__serde_json-1.0.114",
sha256 = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/serde_json/1.0.114/download"],
strip_prefix = "serde_json-1.0.114",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.serde_json-1.0.114.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__serde_urlencoded-0.7.1",
sha256 = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download"],
strip_prefix = "serde_urlencoded-0.7.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.serde_urlencoded-0.7.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__sharded-slab-0.1.7",
sha256 = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/sharded-slab/0.1.7/download"],
strip_prefix = "sharded-slab-0.1.7",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.sharded-slab-0.1.7.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__signal-hook-registry-1.4.1",
sha256 = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/signal-hook-registry/1.4.1/download"],
strip_prefix = "signal-hook-registry-1.4.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.signal-hook-registry-1.4.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__slab-0.4.9",
sha256 = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/slab/0.4.9/download"],
strip_prefix = "slab-0.4.9",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.slab-0.4.9.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__smallvec-1.13.1",
sha256 = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/smallvec/1.13.1/download"],
strip_prefix = "smallvec-1.13.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.smallvec-1.13.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__socket2-0.4.10",
sha256 = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/socket2/0.4.10/download"],
strip_prefix = "socket2-0.4.10",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.socket2-0.4.10.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__socket2-0.5.5",
sha256 = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/socket2/0.5.5/download"],
strip_prefix = "socket2-0.5.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.socket2-0.5.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__syn-2.0.50",
sha256 = "74f1bdc9872430ce9b75da68329d1c1746faf50ffac5f19e02b71e37ff881ffb",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/syn/2.0.50/download"],
strip_prefix = "syn-2.0.50",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.syn-2.0.50.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__sync_wrapper-0.1.2",
sha256 = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/sync_wrapper/0.1.2/download"],
strip_prefix = "sync_wrapper-0.1.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.sync_wrapper-0.1.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__thread_local-1.1.8",
sha256 = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/thread_local/1.1.8/download"],
strip_prefix = "thread_local-1.1.8",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.thread_local-1.1.8.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tokio-1.36.0",
sha256 = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tokio/1.36.0/download"],
strip_prefix = "tokio-1.36.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tokio-1.36.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tokio-macros-2.2.0",
sha256 = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tokio-macros/2.2.0/download"],
strip_prefix = "tokio-macros-2.2.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tokio-macros-2.2.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tokio-util-0.7.10",
sha256 = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tokio-util/0.7.10/download"],
strip_prefix = "tokio-util-0.7.10",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tokio-util-0.7.10.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tower-0.4.13",
sha256 = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tower/0.4.13/download"],
strip_prefix = "tower-0.4.13",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tower-0.4.13.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tower-http-0.2.5",
sha256 = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tower-http/0.2.5/download"],
strip_prefix = "tower-http-0.2.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tower-http-0.2.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tower-layer-0.3.2",
sha256 = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tower-layer/0.3.2/download"],
strip_prefix = "tower-layer-0.3.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tower-layer-0.3.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tower-service-0.3.2",
sha256 = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tower-service/0.3.2/download"],
strip_prefix = "tower-service-0.3.2",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tower-service-0.3.2.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tracing-0.1.40",
sha256 = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tracing/0.1.40/download"],
strip_prefix = "tracing-0.1.40",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tracing-0.1.40.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tracing-attributes-0.1.27",
sha256 = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tracing-attributes/0.1.27/download"],
strip_prefix = "tracing-attributes-0.1.27",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tracing-attributes-0.1.27.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tracing-core-0.1.32",
sha256 = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tracing-core/0.1.32/download"],
strip_prefix = "tracing-core-0.1.32",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tracing-core-0.1.32.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tracing-log-0.2.0",
sha256 = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tracing-log/0.2.0/download"],
strip_prefix = "tracing-log-0.2.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tracing-log-0.2.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__tracing-subscriber-0.3.18",
sha256 = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/tracing-subscriber/0.3.18/download"],
strip_prefix = "tracing-subscriber-0.3.18",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.tracing-subscriber-0.3.18.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__try-lock-0.2.5",
sha256 = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/try-lock/0.2.5/download"],
strip_prefix = "try-lock-0.2.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.try-lock-0.2.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__unicode-ident-1.0.12",
sha256 = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/unicode-ident/1.0.12/download"],
strip_prefix = "unicode-ident-1.0.12",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.unicode-ident-1.0.12.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__valuable-0.1.0",
sha256 = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/valuable/0.1.0/download"],
strip_prefix = "valuable-0.1.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.valuable-0.1.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__want-0.3.1",
sha256 = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/want/0.3.1/download"],
strip_prefix = "want-0.3.1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.want-0.3.1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__wasi-0.11.0-wasi-snapshot-preview1",
sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download"],
strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__winapi-0.3.9",
sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/winapi/0.3.9/download"],
strip_prefix = "winapi-0.3.9",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.winapi-0.3.9.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__winapi-i686-pc-windows-gnu-0.4.0",
sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download"],
strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__winapi-x86_64-pc-windows-gnu-0.4.0",
sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download"],
strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows-sys-0.48.0",
sha256 = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows-sys/0.48.0/download"],
strip_prefix = "windows-sys-0.48.0",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows-sys-0.48.0.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows-targets-0.48.5",
sha256 = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows-targets/0.48.5/download"],
strip_prefix = "windows-targets-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows-targets-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_aarch64_gnullvm-0.48.5",
sha256 = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download"],
strip_prefix = "windows_aarch64_gnullvm-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_aarch64_gnullvm-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_aarch64_msvc-0.48.5",
sha256 = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download"],
strip_prefix = "windows_aarch64_msvc-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_aarch64_msvc-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_i686_gnu-0.48.5",
sha256 = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download"],
strip_prefix = "windows_i686_gnu-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_i686_gnu-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_i686_msvc-0.48.5",
sha256 = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download"],
strip_prefix = "windows_i686_msvc-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_i686_msvc-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_x86_64_gnu-0.48.5",
sha256 = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download"],
strip_prefix = "windows_x86_64_gnu-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_x86_64_gnu-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_x86_64_gnullvm-0.48.5",
sha256 = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download"],
strip_prefix = "windows_x86_64_gnullvm-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_x86_64_gnullvm-0.48.5.bazel"),
)
maybe(
http_archive,
name = "crates_vendor_pkgs__windows_x86_64_msvc-0.48.5",
sha256 = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538",
type = "tar.gz",
urls = ["https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download"],
strip_prefix = "windows_x86_64_msvc-0.48.5",
build_file = Label("@//vendor_remote_pkgs/crates:BUILD.windows_x86_64_msvc-0.48.5.bazel"),
)
return [
struct(repo = "crates_vendor_pkgs__axum-0.4.8", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__hyper-0.14.28", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__mime-0.3.17", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__serde_json-1.0.114", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__socket2-0.4.10", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__tokio-1.36.0", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__tower-0.4.13", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__tower-http-0.2.5", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__tracing-0.1.40", is_dev_dep = False),
struct(repo = "crates_vendor_pkgs__tracing-subscriber-0.3.18", is_dev_dep = False),
]