From 88e0cd7622509be7d5bd6d528f70a765c174dcb6 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 19:59:24 +0000 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=A7=B9=20Fix=20code=20health=20issue:?= =?UTF-8?q?=20Generate=20view=20id=20if=20not=20provided?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added `uuid` dependency to `oak_private_memory`'s `MODULE.bazel` and `database/BUILD`. Used `uuid::Uuid::new_v4()` to generate a UUID string in `add_memory` in `icing.rs` if an `LlmView` has an empty `id`. Co-authored-by: tiziano88 <387628+tiziano88@users.noreply.github.com> --- oak_private_memory/MODULE.bazel | 5 + oak_private_memory/MODULE.bazel.lock | 662 +++++++++++++++++++++++++-- oak_private_memory/database/BUILD | 1 + oak_private_memory/database/icing.rs | 7 +- 4 files changed, 630 insertions(+), 45 deletions(-) diff --git a/oak_private_memory/MODULE.bazel b/oak_private_memory/MODULE.bazel index 09dceba170..cb79ccec40 100644 --- a/oak_private_memory/MODULE.bazel +++ b/oak_private_memory/MODULE.bazel @@ -145,6 +145,11 @@ crate.spec( package = "rand", version = "0.9.1", ) +crate.spec( + package = "uuid", + version = "1.12.1", + features = ["v4"], +) crate.from_specs( name = "pm_crates", ) diff --git a/oak_private_memory/MODULE.bazel.lock b/oak_private_memory/MODULE.bazel.lock index a9e6613688..46629892b6 100644 --- a/oak_private_memory/MODULE.bazel.lock +++ b/oak_private_memory/MODULE.bazel.lock @@ -2838,7 +2838,7 @@ "@@rules_rust+//crate_universe:extensions.bzl%crate": { "general": { "bzlTransitiveDigest": "R599cxxDkC/ZLrUDOgMQEP6Kuwa9jjqxQMRGEDpzKFE=", - "usagesDigest": "PgupUBNFipT5Yy4x9XOF9ipsXNwelVc3EUxehFnwdCM=", + "usagesDigest": "4tDEltzedUwIYBEFCWqNqoZTXfON+/AxITyAG2zqvcI=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": { @@ -2856,9 +2856,9 @@ "repoRuleId": "@@rules_rust+//crate_universe:extensions.bzl%_generate_repo", "attributes": { "contents": { - "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"aes-gcm-siv-0.11.1\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-siv\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx-1.0.194\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx_cc\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx_cc\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n", + "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"aes-gcm-siv-0.11.1\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-siv\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx-1.0.194\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx_cc\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx_cc\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uuid-1.23.1\",\n actual = \"@pm_crates__uuid-1.23.1//:uuid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uuid\",\n actual = \"@pm_crates__uuid-1.23.1//:uuid\",\n tags = [\"manual\"],\n)\n", "alias_rules.bzl": "\"\"\"Alias that transitions its target to `compilation_mode=opt`. Use `transition_alias=\"opt\"` to enable.\"\"\"\n\nload(\"@rules_cc//cc:defs.bzl\", \"CcInfo\")\nload(\"@rules_rust//rust:rust_common.bzl\", \"COMMON_PROVIDERS\")\n\ndef _transition_alias_impl(ctx):\n # `ctx.attr.actual` is a list of 1 item due to the transition\n providers = [ctx.attr.actual[0][provider] for provider in COMMON_PROVIDERS]\n if CcInfo in ctx.attr.actual[0]:\n providers.append(ctx.attr.actual[0][CcInfo])\n return providers\n\ndef _change_compilation_mode(compilation_mode):\n def _change_compilation_mode_impl(_settings, _attr):\n return {\n \"//command_line_option:compilation_mode\": compilation_mode,\n }\n\n return transition(\n implementation = _change_compilation_mode_impl,\n inputs = [],\n outputs = [\n \"//command_line_option:compilation_mode\",\n ],\n )\n\ndef _transition_alias_rule(compilation_mode):\n return rule(\n implementation = _transition_alias_impl,\n provides = COMMON_PROVIDERS,\n attrs = {\n \"actual\": attr.label(\n mandatory = True,\n doc = \"`rust_library()` target to transition to `compilation_mode=opt`.\",\n providers = COMMON_PROVIDERS,\n cfg = _change_compilation_mode(compilation_mode),\n ),\n \"_allowlist_function_transition\": attr.label(\n default = \"@bazel_tools//tools/allowlists/function_transition_allowlist\",\n ),\n },\n doc = \"Transitions a Rust library crate to the `compilation_mode=opt`.\",\n )\n\ntransition_alias_dbg = _transition_alias_rule(\"dbg\")\ntransition_alias_fastbuild = _transition_alias_rule(\"fastbuild\")\ntransition_alias_opt = _transition_alias_rule(\"opt\")\n", - "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"aes-gcm-siv\": Label(\"@pm_crates//:aes-gcm-siv-0.11.1\"),\n \"cxx\": Label(\"@pm_crates//:cxx-1.0.194\"),\n \"rand\": Label(\"@pm_crates//:rand-0.9.4\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(windows)\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip1\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"x86_64-pc-windows-msvc\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"x86_64-unknown-nixos-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"pm_crates__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-gcm-siv-0.11.1\",\n sha256 = \"ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm-siv/0.11.1/download\"],\n strip_prefix = \"aes-gcm-siv-0.11.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-gcm-siv-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__codespan-reporting-0.13.1\",\n sha256 = \"af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/codespan-reporting/0.13.1/download\"],\n strip_prefix = \"codespan-reporting-0.13.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.codespan-reporting-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-1.0.194\",\n sha256 = \"747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx/1.0.194/download\"],\n strip_prefix = \"cxx-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-build-1.0.194\",\n sha256 = \"b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx-build/1.0.194/download\"],\n strip_prefix = \"cxx-build-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-build-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-flags-1.0.194\",\n sha256 = \"23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-flags/1.0.194/download\"],\n strip_prefix = \"cxxbridge-flags-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-flags-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-macro-1.0.194\",\n sha256 = \"e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-macro/1.0.194/download\"],\n strip_prefix = \"cxxbridge-macro-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-macro-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__foldhash-0.2.0\",\n sha256 = \"77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.2.0/download\"],\n strip_prefix = \"foldhash-0.2.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.foldhash-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__link-cplusplus-1.0.12\",\n sha256 = \"7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/link-cplusplus/1.0.12/download\"],\n strip_prefix = \"link-cplusplus-1.0.12\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.link-cplusplus-1.0.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__scratch-1.0.9\",\n sha256 = \"d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scratch/1.0.9/download\"],\n strip_prefix = \"scratch-1.0.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.scratch-1.0.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n return [\n struct(repo=\"pm_crates__aes-gcm-siv-0.11.1\", is_dev_dep = False),\n struct(repo=\"pm_crates__cxx-1.0.194\", is_dev_dep = False),\n struct(repo=\"pm_crates__rand-0.9.4\", is_dev_dep = False),\n ]\n" + "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"aes-gcm-siv\": Label(\"@pm_crates//:aes-gcm-siv-0.11.1\"),\n \"cxx\": Label(\"@pm_crates//:cxx-1.0.194\"),\n \"rand\": Label(\"@pm_crates//:rand-0.9.4\"),\n \"uuid\": Label(\"@pm_crates//:uuid-1.23.1\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p3\\\"))\": [],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(windows)\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip1\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"x86_64-pc-windows-msvc\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"x86_64-unknown-nixos-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"pm_crates__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-gcm-siv-0.11.1\",\n sha256 = \"ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm-siv/0.11.1/download\"],\n strip_prefix = \"aes-gcm-siv-0.11.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-gcm-siv-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__anyhow-1.0.102\",\n sha256 = \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anyhow/1.0.102/download\"],\n strip_prefix = \"anyhow-1.0.102\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.anyhow-1.0.102.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__bitflags-2.11.1\",\n sha256 = \"c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/2.11.1/download\"],\n strip_prefix = \"bitflags-2.11.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.bitflags-2.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__bumpalo-3.20.2\",\n sha256 = \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bumpalo/3.20.2/download\"],\n strip_prefix = \"bumpalo-3.20.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.bumpalo-3.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__codespan-reporting-0.13.1\",\n sha256 = \"af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/codespan-reporting/0.13.1/download\"],\n strip_prefix = \"codespan-reporting-0.13.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.codespan-reporting-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-1.0.194\",\n sha256 = \"747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx/1.0.194/download\"],\n strip_prefix = \"cxx-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-build-1.0.194\",\n sha256 = \"b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx-build/1.0.194/download\"],\n strip_prefix = \"cxx-build-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-build-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-flags-1.0.194\",\n sha256 = \"23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-flags/1.0.194/download\"],\n strip_prefix = \"cxxbridge-flags-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-flags-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-macro-1.0.194\",\n sha256 = \"e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-macro/1.0.194/download\"],\n strip_prefix = \"cxxbridge-macro-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-macro-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__foldhash-0.1.5\",\n sha256 = \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.1.5/download\"],\n strip_prefix = \"foldhash-0.1.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.foldhash-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__foldhash-0.2.0\",\n sha256 = \"77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.2.0/download\"],\n strip_prefix = \"foldhash-0.2.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.foldhash-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.4.2\",\n sha256 = \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.4.2/download\"],\n strip_prefix = \"getrandom-0.4.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__hashbrown-0.15.5\",\n sha256 = \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.15.5/download\"],\n strip_prefix = \"hashbrown-0.15.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.hashbrown-0.15.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__heck-0.5.0\",\n sha256 = \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.5.0/download\"],\n strip_prefix = \"heck-0.5.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.heck-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__id-arena-2.3.0\",\n sha256 = \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/id-arena/2.3.0/download\"],\n strip_prefix = \"id-arena-2.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.id-arena-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__itoa-1.0.18\",\n sha256 = \"8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itoa/1.0.18/download\"],\n strip_prefix = \"itoa-1.0.18\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.itoa-1.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__js-sys-0.3.95\",\n sha256 = \"2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/js-sys/0.3.95/download\"],\n strip_prefix = \"js-sys-0.3.95\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.js-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__leb128fmt-0.1.0\",\n sha256 = \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128fmt/0.1.0/download\"],\n strip_prefix = \"leb128fmt-0.1.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.leb128fmt-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__link-cplusplus-1.0.12\",\n sha256 = \"7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/link-cplusplus/1.0.12/download\"],\n strip_prefix = \"link-cplusplus-1.0.12\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.link-cplusplus-1.0.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__log-0.4.29\",\n sha256 = \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/log/0.4.29/download\"],\n strip_prefix = \"log-0.4.29\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.log-0.4.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__memchr-2.8.0\",\n sha256 = \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memchr/2.8.0/download\"],\n strip_prefix = \"memchr-2.8.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.memchr-2.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__once_cell-1.21.4\",\n sha256 = \"9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell/1.21.4/download\"],\n strip_prefix = \"once_cell-1.21.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.once_cell-1.21.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__prettyplease-0.2.37\",\n sha256 = \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prettyplease/0.2.37/download\"],\n strip_prefix = \"prettyplease-0.2.37\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.prettyplease-0.2.37.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__r-efi-6.0.0\",\n sha256 = \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/6.0.0/download\"],\n strip_prefix = \"r-efi-6.0.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.r-efi-6.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rustversion-1.0.22\",\n sha256 = \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustversion/1.0.22/download\"],\n strip_prefix = \"rustversion-1.0.22\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rustversion-1.0.22.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__scratch-1.0.9\",\n sha256 = \"d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scratch/1.0.9/download\"],\n strip_prefix = \"scratch-1.0.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.scratch-1.0.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__semver-1.0.28\",\n sha256 = \"8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/semver/1.0.28/download\"],\n strip_prefix = \"semver-1.0.28\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.semver-1.0.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_json-1.0.149\",\n sha256 = \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_json/1.0.149/download\"],\n strip_prefix = \"serde_json-1.0.149\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_json-1.0.149.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-xid-0.2.6\",\n sha256 = \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-xid/0.2.6/download\"],\n strip_prefix = \"unicode-xid-0.2.6\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-xid-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__uuid-1.23.1\",\n sha256 = \"ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uuid/1.23.1/download\"],\n strip_prefix = \"uuid-1.23.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.uuid-1.23.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06\",\n sha256 = \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download\"],\n strip_prefix = \"wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-0.2.118\",\n sha256 = \"0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-macro-0.2.118\",\n sha256 = \"eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-macro-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-macro-support-0.2.118\",\n sha256 = \"9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-support-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-macro-support-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-shared-0.2.118\",\n sha256 = \"5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-shared-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-shared-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-encoder-0.244.0\",\n sha256 = \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.244.0/download\"],\n strip_prefix = \"wasm-encoder-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-encoder-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-metadata-0.244.0\",\n sha256 = \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.244.0/download\"],\n strip_prefix = \"wasm-metadata-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-metadata-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasmparser-0.244.0\",\n sha256 = \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.244.0/download\"],\n strip_prefix = \"wasmparser-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasmparser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-0.51.0\",\n sha256 = \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-core-0.51.0\",\n sha256 = \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-core-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-rust-0.51.0\",\n sha256 = \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-rust-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-rust-macro-0.51.0\",\n sha256 = \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-rust-macro-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-component-0.244.0\",\n sha256 = \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.244.0/download\"],\n strip_prefix = \"wit-component-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-component-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-parser-0.244.0\",\n sha256 = \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.244.0/download\"],\n strip_prefix = \"wit-parser-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-parser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zmij-1.0.21\",\n sha256 = \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zmij/1.0.21/download\"],\n strip_prefix = \"zmij-1.0.21\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zmij-1.0.21.bazel\"),\n )\n\n return [\n struct(repo=\"pm_crates__aes-gcm-siv-0.11.1\", is_dev_dep = False),\n struct(repo=\"pm_crates__cxx-1.0.194\", is_dev_dep = False),\n struct(repo=\"pm_crates__rand-0.9.4\", is_dev_dep = False),\n struct(repo=\"pm_crates__uuid-1.23.1\", is_dev_dep = False),\n ]\n" } } }, @@ -2910,6 +2910,54 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"aes_gcm_siv\",\n deps = [\n \"@pm_crates__aead-0.5.2//:aead\",\n \"@pm_crates__aes-0.8.4//:aes\",\n \"@pm_crates__cipher-0.4.4//:cipher\",\n \"@pm_crates__ctr-0.9.2//:ctr\",\n \"@pm_crates__polyval-0.6.2//:polyval\",\n \"@pm_crates__subtle-2.6.1//:subtle\",\n \"@pm_crates__zeroize-1.8.2//:zeroize\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"aes\",\n \"alloc\",\n \"default\",\n \"getrandom\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=aes-gcm-siv\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.11.1\",\n)\n" } }, + "pm_crates__anyhow-1.0.102": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/anyhow/1.0.102/download" + ], + "strip_prefix": "anyhow-1.0.102", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"anyhow\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=anyhow\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.102\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"anyhow\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=anyhow\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.102\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, + "pm_crates__bitflags-2.11.1": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/bitflags/2.11.1/download" + ], + "strip_prefix": "bitflags-2.11.1", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"bitflags\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=bitflags\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.11.1\",\n)\n" + } + }, + "pm_crates__bumpalo-3.20.2": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/bumpalo/3.20.2/download" + ], + "strip_prefix": "bumpalo-3.20.2", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"bumpalo\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=bumpalo\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"3.20.2\",\n)\n" + } + }, "pm_crates__cc-1.2.60": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3118,6 +3166,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"find_msvc_tools\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=find-msvc-tools\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.9\",\n)\n" } }, + "pm_crates__foldhash-0.1.5": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/foldhash/0.1.5/download" + ], + "strip_prefix": "foldhash-0.1.5", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"foldhash\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=foldhash\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.5\",\n)\n" + } + }, "pm_crates__foldhash-0.2.0": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3182,6 +3246,38 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"getrandom\",\n deps = [\n \"@pm_crates__cfg-if-1.0.4//:cfg_if\",\n \"@pm_crates__getrandom-0.3.4//:build_script_build\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))\n ],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.3.4\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"getrandom\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.3.4\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, + "pm_crates__getrandom-0.4.2": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/getrandom/0.4.2/download" + ], + "strip_prefix": "getrandom-0.4.2", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"getrandom\",\n deps = [\n \"@pm_crates__cfg-if-1.0.4//:cfg_if\",\n \"@pm_crates__getrandom-0.4.2//:build_script_build\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))\n ],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.4.2\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2024\",\n pkg_name = \"getrandom\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.4.2\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, + "pm_crates__hashbrown-0.15.5": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/hashbrown/0.15.5/download" + ], + "strip_prefix": "hashbrown-0.15.5", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hashbrown\",\n deps = [\n \"@pm_crates__foldhash-0.1.5//:foldhash\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default-hasher\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hashbrown\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.15.5\",\n)\n" + } + }, "pm_crates__hashbrown-0.17.0": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3198,6 +3294,38 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hashbrown\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hashbrown\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.17.0\",\n)\n" } }, + "pm_crates__heck-0.5.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/heck/0.5.0/download" + ], + "strip_prefix": "heck-0.5.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"heck\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=heck\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.5.0\",\n)\n" + } + }, + "pm_crates__id-arena-2.3.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/id-arena/2.3.0/download" + ], + "strip_prefix": "id-arena-2.3.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"id_arena\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=id-arena\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.3.0\",\n)\n" + } + }, "pm_crates__indexmap-2.14.0": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3211,7 +3339,7 @@ "https://static.crates.io/crates/indexmap/2.14.0/download" ], "strip_prefix": "indexmap-2.14.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"indexmap\",\n deps = [\n \"@pm_crates__equivalent-1.0.2//:equivalent\",\n \"@pm_crates__hashbrown-0.17.0//:hashbrown\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=indexmap\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.14.0\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"indexmap\",\n deps = [\n \"@pm_crates__equivalent-1.0.2//:equivalent\",\n \"@pm_crates__hashbrown-0.17.0//:hashbrown\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"serde\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=indexmap\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.14.0\",\n)\n" } }, "pm_crates__inout-0.1.4": { @@ -3230,6 +3358,54 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"inout\",\n deps = [\n \"@pm_crates__generic-array-0.14.7//:generic_array\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=inout\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.4\",\n)\n" } }, + "pm_crates__itoa-1.0.18": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/itoa/1.0.18/download" + ], + "strip_prefix": "itoa-1.0.18", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"itoa\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=itoa\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.18\",\n)\n" + } + }, + "pm_crates__js-sys-0.3.95": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/js-sys/0.3.95/download" + ], + "strip_prefix": "js-sys-0.3.95", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"js_sys\",\n deps = [\n \"@pm_crates__once_cell-1.21.4//:once_cell\",\n \"@pm_crates__wasm-bindgen-0.2.118//:wasm_bindgen\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=js-sys\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.3.95\",\n)\n" + } + }, + "pm_crates__leb128fmt-0.1.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/leb128fmt/0.1.0/download" + ], + "strip_prefix": "leb128fmt-0.1.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"leb128fmt\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=leb128fmt\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.0\",\n)\n" + } + }, "pm_crates__libc-0.2.185": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3262,6 +3438,54 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"link_cplusplus\",\n deps = [\n \"@pm_crates__link-cplusplus-1.0.12//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=link-cplusplus\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.12\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n deps = [\n \"@pm_crates__cc-1.2.60//:cc\",\n ],\n edition = \"2018\",\n links = \"cplusplus\",\n pkg_name = \"link-cplusplus\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=link-cplusplus\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.12\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, + "pm_crates__log-0.4.29": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/log/0.4.29/download" + ], + "strip_prefix": "log-0.4.29", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"log\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=log\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.4.29\",\n)\n" + } + }, + "pm_crates__memchr-2.8.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/memchr/2.8.0/download" + ], + "strip_prefix": "memchr-2.8.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"memchr\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=memchr\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.8.0\",\n)\n" + } + }, + "pm_crates__once_cell-1.21.4": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/once_cell/1.21.4/download" + ], + "strip_prefix": "once_cell-1.21.4", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"once_cell\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=once_cell\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.21.4\",\n)\n" + } + }, "pm_crates__opaque-debug-0.3.1": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3310,6 +3534,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"ppv_lite86\",\n deps = [\n \"@pm_crates__zerocopy-0.8.48//:zerocopy\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"simd\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=ppv-lite86\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.21\",\n)\n" } }, + "pm_crates__prettyplease-0.2.37": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/prettyplease/0.2.37/download" + ], + "strip_prefix": "prettyplease-0.2.37", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"prettyplease\",\n deps = [\n \"@pm_crates__prettyplease-0.2.37//:build_script_build\",\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=prettyplease\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.37\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n links = \"prettyplease02\",\n pkg_name = \"prettyplease\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=prettyplease\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.2.37\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, "pm_crates__proc-macro2-1.0.106": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3358,6 +3598,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"r_efi\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=r-efi\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"5.3.0\",\n)\n" } }, + "pm_crates__r-efi-6.0.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/r-efi/6.0.0/download" + ], + "strip_prefix": "r-efi-6.0.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"r_efi\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=r-efi\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"6.0.0\",\n)\n" + } + }, "pm_crates__rand-0.9.4": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3422,6 +3678,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rand_core\",\n deps = [\n \"@pm_crates__getrandom-0.3.4//:getrandom\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"os_rng\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rand_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.9.5\",\n)\n" } }, + "pm_crates__rustversion-1.0.22": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/rustversion/1.0.22/download" + ], + "strip_prefix": "rustversion-1.0.22", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"rustversion\",\n deps = [\n \"@pm_crates__rustversion-1.0.22//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustversion\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.22\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build/build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2018\",\n pkg_name = \"rustversion\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustversion\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.22\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, "pm_crates__scratch-1.0.9": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3438,6 +3710,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"scratch\",\n deps = [\n \"@pm_crates__scratch-1.0.9//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2015\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=scratch\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.9\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2015\",\n pkg_name = \"scratch\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=scratch\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.9\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, + "pm_crates__semver-1.0.28": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/semver/1.0.28/download" + ], + "strip_prefix": "semver-1.0.28", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"semver\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=semver\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.28\",\n)\n" + } + }, "pm_crates__serde-1.0.228": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3451,7 +3739,7 @@ "https://static.crates.io/crates/serde/1.0.228/download" ], "strip_prefix": "serde-1.0.228", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde\",\n deps = [\n \"@pm_crates__serde-1.0.228//:build_script_build\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde\",\n deps = [\n \"@pm_crates__serde-1.0.228//:build_script_build\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "pm_crates__serde_core-1.0.228": { @@ -3467,7 +3755,7 @@ "https://static.crates.io/crates/serde_core/1.0.228/download" ], "strip_prefix": "serde_core-1.0.228", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde_core\",\n deps = [\n \"@pm_crates__serde_core-1.0.228//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde_core\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde_core\",\n deps = [\n \"@pm_crates__serde_core-1.0.228//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"result\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"result\",\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde_core\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "pm_crates__serde_derive-1.0.228": { @@ -3483,7 +3771,23 @@ "https://static.crates.io/crates/serde_derive/1.0.228/download" ], "strip_prefix": "serde_derive-1.0.228", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"serde_derive\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_derive\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"serde_derive\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_derive\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n" + } + }, + "pm_crates__serde_json-1.0.149": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/serde_json/1.0.149/download" + ], + "strip_prefix": "serde_json-1.0.149", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde_json\",\n deps = [\n \"@pm_crates__itoa-1.0.18//:itoa\",\n \"@pm_crates__memchr-2.8.0//:memchr\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n \"@pm_crates__serde_json-1.0.149//:build_script_build\",\n \"@pm_crates__zmij-1.0.21//:zmij\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_json\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.149\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde_json\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_json\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.149\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "pm_crates__shlex-1.3.0": { @@ -3531,7 +3835,7 @@ "https://static.crates.io/crates/syn/2.0.117/download" ], "strip_prefix": "syn-2.0.117", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"syn\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__unicode-ident-1.0.24//:unicode_ident\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"clone-impls\",\n \"default\",\n \"derive\",\n \"full\",\n \"parsing\",\n \"printing\",\n \"proc-macro\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=syn\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.0.117\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"syn\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__unicode-ident-1.0.24//:unicode_ident\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"clone-impls\",\n \"default\",\n \"derive\",\n \"extra-traits\",\n \"full\",\n \"parsing\",\n \"printing\",\n \"proc-macro\",\n \"visit\",\n \"visit-mut\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=syn\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.0.117\",\n)\n" } }, "pm_crates__termcolor-1.4.1": { @@ -3598,6 +3902,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"unicode_width\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=unicode-width\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.2\",\n)\n" } }, + "pm_crates__unicode-xid-0.2.6": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/unicode-xid/0.2.6/download" + ], + "strip_prefix": "unicode-xid-0.2.6", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"unicode_xid\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2015\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=unicode-xid\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.6\",\n)\n" + } + }, "pm_crates__universal-hash-0.5.1": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3614,6 +3934,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"universal_hash\",\n deps = [\n \"@pm_crates__crypto-common-0.1.7//:crypto_common\",\n \"@pm_crates__subtle-2.6.1//:subtle\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=universal-hash\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.5.1\",\n)\n" } }, + "pm_crates__uuid-1.23.1": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/uuid/1.23.1/download" + ], + "strip_prefix": "uuid-1.23.1", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"uuid\",\n deps = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # aarch64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # wasm32-wasip1\n ],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # x86_64-pc-windows-msvc\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"rng\",\n \"std\",\n \"v4\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=uuid\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.23.1\",\n)\n" + } + }, "pm_crates__version_check-0.9.5": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3662,6 +3998,134 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasip2\",\n deps = [\n \"@pm_crates__wit-bindgen-0.57.1//:wit_bindgen\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasip2\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.3+wasi-0.2.9\",\n)\n" } }, + "pm_crates__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download" + ], + "strip_prefix": "wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasip3\",\n deps = [\n \"@pm_crates__wit-bindgen-0.51.0//:wit_bindgen\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasip3\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.4.0+wasi-0.3.0-rc-2026-01-06\",\n)\n" + } + }, + "pm_crates__wasm-bindgen-0.2.118": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasm-bindgen/0.2.118/download" + ], + "strip_prefix": "wasm-bindgen-0.2.118", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_bindgen\",\n deps = [\n \"@pm_crates__cfg-if-1.0.4//:cfg_if\",\n \"@pm_crates__once_cell-1.21.4//:once_cell\",\n \"@pm_crates__wasm-bindgen-0.2.118//:build_script_build\",\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:wasm_bindgen_shared\",\n ],\n proc_macro_deps = [\n \"@pm_crates__wasm-bindgen-macro-0.2.118//:wasm_bindgen_macro\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n aliases = {\n \"@pm_crates__rustversion-1.0.22//:rustversion\": \"rustversion_compat\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:wasm_bindgen_shared\",\n ],\n edition = \"2021\",\n pkg_name = \"wasm-bindgen\",\n proc_macro_deps = [\n \"@pm_crates__rustversion-1.0.22//:rustversion\",\n ],\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.2.118\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, + "pm_crates__wasm-bindgen-macro-0.2.118": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download" + ], + "strip_prefix": "wasm-bindgen-macro-0.2.118", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"wasm_bindgen_macro\",\n deps = [\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__wasm-bindgen-macro-support-0.2.118//:wasm_bindgen_macro_support\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-macro\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n" + } + }, + "pm_crates__wasm-bindgen-macro-support-0.2.118": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download" + ], + "strip_prefix": "wasm-bindgen-macro-support-0.2.118", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_bindgen_macro_support\",\n deps = [\n \"@pm_crates__bumpalo-3.20.2//:bumpalo\",\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:wasm_bindgen_shared\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-macro-support\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n" + } + }, + "pm_crates__wasm-bindgen-shared-0.2.118": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download" + ], + "strip_prefix": "wasm-bindgen-shared-0.2.118", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_bindgen_shared\",\n deps = [\n \"@pm_crates__unicode-ident-1.0.24//:unicode_ident\",\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-shared\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n links = \"wasm_bindgen\",\n pkg_name = \"wasm-bindgen-shared\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-shared\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.2.118\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, + "pm_crates__wasm-encoder-0.244.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasm-encoder/0.244.0/download" + ], + "strip_prefix": "wasm-encoder-0.244.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_encoder\",\n deps = [\n \"@pm_crates__leb128fmt-0.1.0//:leb128fmt\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"component-model\",\n \"std\",\n \"wasmparser\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-encoder\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" + } + }, + "pm_crates__wasm-metadata-0.244.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasm-metadata/0.244.0/download" + ], + "strip_prefix": "wasm-metadata-0.244.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_metadata\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__wasm-encoder-0.244.0//:wasm_encoder\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-metadata\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" + } + }, + "pm_crates__wasmparser-0.244.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wasmparser/0.244.0/download" + ], + "strip_prefix": "wasmparser-0.244.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasmparser\",\n deps = [\n \"@pm_crates__bitflags-2.11.1//:bitflags\",\n \"@pm_crates__hashbrown-0.15.5//:hashbrown\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__semver-1.0.28//:semver\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"component-model\",\n \"features\",\n \"hash-collections\",\n \"simd\",\n \"std\",\n \"validate\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasmparser\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" + } + }, "pm_crates__winapi-util-0.1.11": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3710,6 +4174,22 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"windows_sys\",\n deps = [\n \"@pm_crates__windows-link-0.2.1//:windows_link\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=windows-sys\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.61.2\",\n)\n" } }, + "pm_crates__wit-bindgen-0.51.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wit-bindgen/0.51.0/download" + ], + "strip_prefix": "wit-bindgen-0.51.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen\",\n deps = [\n \"@pm_crates__wit-bindgen-0.51.0//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2024\",\n pkg_name = \"wit-bindgen\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.51.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, "pm_crates__wit-bindgen-0.57.1": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3726,6 +4206,86 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen\",\n deps = [\n \"@pm_crates__wit-bindgen-0.57.1//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.57.1\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2024\",\n pkg_name = \"wit-bindgen\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.57.1\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, + "pm_crates__wit-bindgen-core-0.51.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wit-bindgen-core/0.51.0/download" + ], + "strip_prefix": "wit-bindgen-core-0.51.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen_core\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__heck-0.5.0//:heck\",\n \"@pm_crates__wit-parser-0.244.0//:wit_parser\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n" + } + }, + "pm_crates__wit-bindgen-rust-0.51.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download" + ], + "strip_prefix": "wit-bindgen-rust-0.51.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen_rust\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__heck-0.5.0//:heck\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n \"@pm_crates__syn-2.0.117//:syn\",\n \"@pm_crates__wasm-metadata-0.244.0//:wasm_metadata\",\n \"@pm_crates__wit-bindgen-core-0.51.0//:wit_bindgen_core\",\n \"@pm_crates__wit-bindgen-rust-0.51.0//:build_script_build\",\n \"@pm_crates__wit-component-0.244.0//:wit_component\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n ],\n edition = \"2024\",\n pkg_name = \"wit-bindgen-rust\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.51.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, + "pm_crates__wit-bindgen-rust-macro-0.51.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download" + ], + "strip_prefix": "wit-bindgen-rust-macro-0.51.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"wit_bindgen_rust_macro\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n \"@pm_crates__wit-bindgen-core-0.51.0//:wit_bindgen_core\",\n \"@pm_crates__wit-bindgen-rust-0.51.0//:wit_bindgen_rust\",\n \"@pm_crates__wit-bindgen-rust-macro-0.51.0//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust-macro\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n ],\n edition = \"2024\",\n pkg_name = \"wit-bindgen-rust-macro\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust-macro\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.51.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, + "pm_crates__wit-component-0.244.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wit-component/0.244.0/download" + ], + "strip_prefix": "wit-component-0.244.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_component\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__bitflags-2.11.1//:bitflags\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__log-0.4.29//:log\",\n \"@pm_crates__serde-1.0.228//:serde\",\n \"@pm_crates__serde_json-1.0.149//:serde_json\",\n \"@pm_crates__wasm-encoder-0.244.0//:wasm_encoder\",\n \"@pm_crates__wasm-metadata-0.244.0//:wasm_metadata\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n \"@pm_crates__wit-parser-0.244.0//:wit_parser\",\n ],\n proc_macro_deps = [\n \"@pm_crates__serde_derive-1.0.228//:serde_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-component\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" + } + }, + "pm_crates__wit-parser-0.244.0": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/wit-parser/0.244.0/download" + ], + "strip_prefix": "wit-parser-0.244.0", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_parser\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__id-arena-2.3.0//:id_arena\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__log-0.4.29//:log\",\n \"@pm_crates__semver-1.0.28//:semver\",\n \"@pm_crates__serde-1.0.228//:serde\",\n \"@pm_crates__serde_json-1.0.149//:serde_json\",\n \"@pm_crates__unicode-xid-0.2.6//:unicode_xid\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n ],\n proc_macro_deps = [\n \"@pm_crates__serde_derive-1.0.228//:serde_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"decoding\",\n \"default\",\n \"serde\",\n \"serde_json\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-parser\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" + } + }, "pm_crates__zerocopy-0.8.48": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3774,13 +4334,29 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"zeroize\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=zeroize\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.8.2\",\n)\n" } }, + "pm_crates__zmij-1.0.21": { + "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", + "attributes": { + "patch_args": [], + "patch_tool": "", + "patches": [], + "remote_patch_strip": 1, + "sha256": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa", + "type": "tar.gz", + "urls": [ + "https://static.crates.io/crates/zmij/1.0.21/download" + ], + "strip_prefix": "zmij-1.0.21", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"zmij\",\n deps = [\n \"@pm_crates__zmij-1.0.21//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=zmij\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.21\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"zmij\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=zmij\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.21\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + } + }, "oak_std_crates_index": { "repoRuleId": "@@rules_rust+//crate_universe:extensions.bzl%_generate_repo", "attributes": { "contents": { - "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"acpi-5.2.0\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"acpi\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead-0.5.2\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-0.10.3\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml-0.16.4\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow-1.0.102\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec-0.7.6\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables-7.0.1\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream-0.3.6\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait-0.1.89\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell-0.1.14\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum-0.7.9\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64-0.21.7\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode-1.3.3\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags-2.11.1\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec-1.0.1\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes-1.11.1\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono-0.4.44\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium-0.2.2\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap-4.6.1\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored-2.2.0\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds-0.3.3\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group-5.0.1\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid-0.9.6\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset-0.3.8\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-0.5.1\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro-0.4.0\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder-0.20.2\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa-0.16.9\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek-2.2.0\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf-0.7.4\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger-0.11.10\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2-1.1.9\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-0.3.32\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util-0.3.32\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom-0.2.17\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin-0.8.2\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest-0.14.2\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown-0.14.5\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex-0.4.3\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf-0.12.4\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac-0.12.1\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke-0.11.0\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-1.4.0\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util-0.1.3\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde-1.1.1\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-1.9.0\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util-0.1.20\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif-0.17.11\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools-0.13.0\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni-0.21.1\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt-0.16.0\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static-1.5.0\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm-0.2.16\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator-0.10.5\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api-0.4.14\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log-0.4.29\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit-1.0.2\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall-0.13.1\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix-0.27.1\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom-8.0.0\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client-0.15.0\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec-0.8.4\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell-1.21.4\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl-0.10.78\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe-1.2.3\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros-0.18.5\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256-0.13.2\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384-0.13.1\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot-0.12.5\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem-3.0.6\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8-0.10.2\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check-0.1.5\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker-0.1.1\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof-0.15.0\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder-0.13.6\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs-0.16.0\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest-1.11.0\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-0.14.3\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build-0.14.3\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive-0.14.3\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types-0.14.3\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote-1.0.45\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha-0.3.1\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core-0.6.4\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen-0.13.2\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-1.12.3\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite-0.1.9\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest-0.12.28\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf-0.2.2\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword-7.4.0\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle-1.5.0\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa-0.9.10\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink-0.14.1\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-0.23.38\",\n actual = \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls\",\n actual = \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile-2.2.0\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types-1.14.0\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell-1.2.2\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde-1.0.228\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json-1.0.149\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2-0.10.9\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3-0.10.9\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-0.3.18\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio-0.3.1\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top-0.3.0\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions-1.1.0\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum-0.27.2\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn-2.0.117\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog-6.1.1\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar-0.4.45\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile-3.27.0\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror-2.0.18\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator-0.5.4\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros-0.2.18\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-1.52.1\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream-0.1.18\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util-0.7.18\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock-0.7.2\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml-0.8.23\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-0.4.13\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http-0.6.8\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-0.1.44\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber-0.3.23\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550-0.3.2\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte-0.10.4\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq-2.12.1\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url-2.5.8\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki-0.5.1\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir-2.5.0\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi-0.31.2\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which-5.0.0\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen-0.33.0\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert-0.2.5\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify-0.4.8\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64-0.15.4\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2-0.1.7\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde-0.10.4\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy-0.8.48\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize-1.8.2\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n", + "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"acpi-5.2.0\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"acpi\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead-0.5.2\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-0.10.3\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml-0.16.4\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow-1.0.102\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec-0.7.6\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables-7.0.1\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream-0.3.6\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait-0.1.89\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell-0.1.14\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum-0.7.9\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64-0.21.7\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode-1.3.3\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags-2.11.1\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec-1.0.1\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes-1.11.1\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono-0.4.44\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium-0.2.2\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap-4.6.1\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored-2.2.0\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds-0.3.3\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group-5.0.1\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid-0.9.6\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset-0.3.8\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-0.5.1\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro-0.4.0\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder-0.20.2\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa-0.16.9\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek-2.2.0\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf-0.7.4\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger-0.11.10\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2-1.1.9\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-0.3.32\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util-0.3.32\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom-0.2.17\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin-0.8.2\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest-0.14.2\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown-0.14.5\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex-0.4.3\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf-0.12.4\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac-0.12.1\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke-0.11.0\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-1.4.0\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util-0.1.3\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde-1.1.1\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-1.9.0\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util-0.1.20\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif-0.17.11\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools-0.13.0\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni-0.21.1\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt-0.16.0\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static-1.5.0\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm-0.2.16\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator-0.10.5\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api-0.4.14\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log-0.4.29\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit-1.0.2\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall-0.13.1\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix-0.27.1\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom-8.0.0\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client-0.15.0\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec-0.8.4\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell-1.21.4\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl-0.10.78\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe-1.2.3\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros-0.18.5\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256-0.13.2\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384-0.13.1\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot-0.12.5\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem-3.0.6\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8-0.10.2\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check-0.1.5\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker-0.1.1\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof-0.15.0\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder-0.13.6\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs-0.16.0\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest-1.11.0\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-0.14.3\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build-0.14.3\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive-0.14.3\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types-0.14.3\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote-1.0.45\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha-0.3.1\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core-0.6.4\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen-0.13.2\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-1.12.3\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite-0.1.9\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest-0.12.28\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf-0.2.2\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword-7.4.0\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle-1.5.0\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa-0.9.10\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink-0.14.1\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-0.23.39\",\n actual = \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls\",\n actual = \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile-2.2.0\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types-1.14.0\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell-1.2.2\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde-1.0.228\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json-1.0.149\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2-0.10.9\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3-0.10.9\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-0.3.18\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio-0.3.1\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top-0.3.0\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions-1.1.0\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum-0.27.2\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn-2.0.117\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog-6.1.1\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar-0.4.45\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile-3.27.0\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror-2.0.18\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator-0.5.4\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros-0.2.18\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-1.52.1\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream-0.1.18\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util-0.7.18\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock-0.7.2\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml-0.8.23\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-0.4.13\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http-0.6.8\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-0.1.44\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber-0.3.23\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550-0.3.2\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte-0.10.4\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq-2.12.1\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url-2.5.8\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki-0.5.1\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir-2.5.0\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi-0.31.2\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which-5.0.0\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen-0.33.0\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert-0.2.5\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify-0.4.8\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64-0.15.4\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2-0.1.7\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde-0.10.4\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy-0.8.48\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize-1.8.2\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n", "alias_rules.bzl": "\"\"\"Alias that transitions its target to `compilation_mode=opt`. Use `transition_alias=\"opt\"` to enable.\"\"\"\n\nload(\"@rules_cc//cc:defs.bzl\", \"CcInfo\")\nload(\"@rules_rust//rust:rust_common.bzl\", \"COMMON_PROVIDERS\")\n\ndef _transition_alias_impl(ctx):\n # `ctx.attr.actual` is a list of 1 item due to the transition\n providers = [ctx.attr.actual[0][provider] for provider in COMMON_PROVIDERS]\n if CcInfo in ctx.attr.actual[0]:\n providers.append(ctx.attr.actual[0][CcInfo])\n return providers\n\ndef _change_compilation_mode(compilation_mode):\n def _change_compilation_mode_impl(_settings, _attr):\n return {\n \"//command_line_option:compilation_mode\": compilation_mode,\n }\n\n return transition(\n implementation = _change_compilation_mode_impl,\n inputs = [],\n outputs = [\n \"//command_line_option:compilation_mode\",\n ],\n )\n\ndef _transition_alias_rule(compilation_mode):\n return rule(\n implementation = _transition_alias_impl,\n provides = COMMON_PROVIDERS,\n attrs = {\n \"actual\": attr.label(\n mandatory = True,\n doc = \"`rust_library()` target to transition to `compilation_mode=opt`.\",\n providers = COMMON_PROVIDERS,\n cfg = _change_compilation_mode(compilation_mode),\n ),\n \"_allowlist_function_transition\": attr.label(\n default = \"@bazel_tools//tools/allowlists/function_transition_allowlist\",\n ),\n },\n doc = \"Transitions a Rust library crate to the `compilation_mode=opt`.\",\n )\n\ntransition_alias_dbg = _transition_alias_rule(\"dbg\")\ntransition_alias_fastbuild = _transition_alias_rule(\"fastbuild\")\ntransition_alias_opt = _transition_alias_rule(\"opt\")\n", - "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"acpi\": Label(\"@oak_std_crates_index//:acpi-5.2.0\"),\n \"aead\": Label(\"@oak_std_crates_index//:aead-0.5.2\"),\n \"aes-gcm\": Label(\"@oak_std_crates_index//:aes-gcm-0.10.3\"),\n \"aml\": Label(\"@oak_std_crates_index//:aml-0.16.4\"),\n \"anyhow\": Label(\"@oak_std_crates_index//:anyhow-1.0.102\"),\n \"arrayvec\": Label(\"@oak_std_crates_index//:arrayvec-0.7.6\"),\n \"assertables\": Label(\"@oak_std_crates_index//:assertables-7.0.1\"),\n \"async-stream\": Label(\"@oak_std_crates_index//:async-stream-0.3.6\"),\n \"atomic_refcell\": Label(\"@oak_std_crates_index//:atomic_refcell-0.1.14\"),\n \"axum\": Label(\"@oak_std_crates_index//:axum-0.7.9\"),\n \"base64\": Label(\"@oak_std_crates_index//:base64-0.21.7\"),\n \"bincode\": Label(\"@oak_std_crates_index//:bincode-1.3.3\"),\n \"bitflags\": Label(\"@oak_std_crates_index//:bitflags-2.11.1\"),\n \"bitvec\": Label(\"@oak_std_crates_index//:bitvec-1.0.1\"),\n \"bytes\": Label(\"@oak_std_crates_index//:bytes-1.11.1\"),\n \"chrono\": Label(\"@oak_std_crates_index//:chrono-0.4.44\"),\n \"ciborium\": Label(\"@oak_std_crates_index//:ciborium-0.2.2\"),\n \"clap\": Label(\"@oak_std_crates_index//:clap-4.6.1\"),\n \"colored\": Label(\"@oak_std_crates_index//:colored-2.2.0\"),\n \"command-fds\": Label(\"@oak_std_crates_index//:command-fds-0.3.3\"),\n \"command-group\": Label(\"@oak_std_crates_index//:command-group-5.0.1\"),\n \"const-oid\": Label(\"@oak_std_crates_index//:const-oid-0.9.6\"),\n \"coset\": Label(\"@oak_std_crates_index//:coset-0.3.8\"),\n \"criterion\": Label(\"@oak_std_crates_index//:criterion-0.5.1\"),\n \"derive_builder\": Label(\"@oak_std_crates_index//:derive_builder-0.20.2\"),\n \"ecdsa\": Label(\"@oak_std_crates_index//:ecdsa-0.16.9\"),\n \"ed25519-dalek\": Label(\"@oak_std_crates_index//:ed25519-dalek-2.2.0\"),\n \"elf\": Label(\"@oak_std_crates_index//:elf-0.7.4\"),\n \"env_logger\": Label(\"@oak_std_crates_index//:env_logger-0.11.10\"),\n \"flate2\": Label(\"@oak_std_crates_index//:flate2-1.1.9\"),\n \"futures\": Label(\"@oak_std_crates_index//:futures-0.3.32\"),\n \"futures-util\": Label(\"@oak_std_crates_index//:futures-util-0.3.32\"),\n \"getrandom\": Label(\"@oak_std_crates_index//:getrandom-0.2.17\"),\n \"goblin\": Label(\"@oak_std_crates_index//:goblin-0.8.2\"),\n \"googletest\": Label(\"@oak_std_crates_index//:googletest-0.14.2\"),\n \"hashbrown\": Label(\"@oak_std_crates_index//:hashbrown-0.14.5\"),\n \"hex\": Label(\"@oak_std_crates_index//:hex-0.4.3\"),\n \"hkdf\": Label(\"@oak_std_crates_index//:hkdf-0.12.4\"),\n \"hmac\": Label(\"@oak_std_crates_index//:hmac-0.12.1\"),\n \"hpke\": Label(\"@oak_std_crates_index//:hpke-0.11.0\"),\n \"http\": Label(\"@oak_std_crates_index//:http-1.4.0\"),\n \"http-body-util\": Label(\"@oak_std_crates_index//:http-body-util-0.1.3\"),\n \"humantime-serde\": Label(\"@oak_std_crates_index//:humantime-serde-1.1.1\"),\n \"hyper\": Label(\"@oak_std_crates_index//:hyper-1.9.0\"),\n \"hyper-util\": Label(\"@oak_std_crates_index//:hyper-util-0.1.20\"),\n \"indicatif\": Label(\"@oak_std_crates_index//:indicatif-0.17.11\"),\n \"itertools\": Label(\"@oak_std_crates_index//:itertools-0.13.0\"),\n \"jni\": Label(\"@oak_std_crates_index//:jni-0.21.1\"),\n \"jwt\": Label(\"@oak_std_crates_index//:jwt-0.16.0\"),\n \"lazy_static\": Label(\"@oak_std_crates_index//:lazy_static-1.5.0\"),\n \"libm\": Label(\"@oak_std_crates_index//:libm-0.2.16\"),\n \"linked_list_allocator\": Label(\"@oak_std_crates_index//:linked_list_allocator-0.10.5\"),\n \"lock_api\": Label(\"@oak_std_crates_index//:lock_api-0.4.14\"),\n \"log\": Label(\"@oak_std_crates_index//:log-0.4.29\"),\n \"maplit\": Label(\"@oak_std_crates_index//:maplit-1.0.2\"),\n \"mockall\": Label(\"@oak_std_crates_index//:mockall-0.13.1\"),\n \"nix\": Label(\"@oak_std_crates_index//:nix-0.27.1\"),\n \"nom\": Label(\"@oak_std_crates_index//:nom-8.0.0\"),\n \"oci-client\": Label(\"@oak_std_crates_index//:oci-client-0.15.0\"),\n \"oci-spec\": Label(\"@oak_std_crates_index//:oci-spec-0.8.4\"),\n \"once_cell\": Label(\"@oak_std_crates_index//:once_cell-1.21.4\"),\n \"openssl\": Label(\"@oak_std_crates_index//:openssl-0.10.78\"),\n \"opentelemetry\": Label(\"@oak_std_crates_index//:opentelemetry-0.31.0\"),\n \"opentelemetry-appender-tracing\": Label(\"@oak_std_crates_index//:opentelemetry-appender-tracing-0.31.1\"),\n \"opentelemetry-otlp\": Label(\"@oak_std_crates_index//:opentelemetry-otlp-0.31.1\"),\n \"opentelemetry-proto\": Label(\"@oak_std_crates_index//:opentelemetry-proto-0.31.0\"),\n \"opentelemetry_sdk\": Label(\"@oak_std_crates_index//:opentelemetry_sdk-0.31.0\"),\n \"os_pipe\": Label(\"@oak_std_crates_index//:os_pipe-1.2.3\"),\n \"ouroboros\": Label(\"@oak_std_crates_index//:ouroboros-0.18.5\"),\n \"p256\": Label(\"@oak_std_crates_index//:p256-0.13.2\"),\n \"p384\": Label(\"@oak_std_crates_index//:p384-0.13.1\"),\n \"parking_lot\": Label(\"@oak_std_crates_index//:parking_lot-0.12.5\"),\n \"pem\": Label(\"@oak_std_crates_index//:pem-3.0.6\"),\n \"pkcs8\": Label(\"@oak_std_crates_index//:pkcs8-0.10.2\"),\n \"port_check\": Label(\"@oak_std_crates_index//:port_check-0.1.5\"),\n \"portpicker\": Label(\"@oak_std_crates_index//:portpicker-0.1.1\"),\n \"pprof\": Label(\"@oak_std_crates_index//:pprof-0.15.0\"),\n \"primeorder\": Label(\"@oak_std_crates_index//:primeorder-0.13.6\"),\n \"procfs\": Label(\"@oak_std_crates_index//:procfs-0.16.0\"),\n \"proptest\": Label(\"@oak_std_crates_index//:proptest-1.11.0\"),\n \"prost\": Label(\"@oak_std_crates_index//:prost-0.14.3\"),\n \"prost-build\": Label(\"@oak_std_crates_index//:prost-build-0.14.3\"),\n \"prost-types\": Label(\"@oak_std_crates_index//:prost-types-0.14.3\"),\n \"quote\": Label(\"@oak_std_crates_index//:quote-1.0.45\"),\n \"rand\": Label(\"@oak_std_crates_index//:rand-0.9.4\"),\n \"rand_chacha\": Label(\"@oak_std_crates_index//:rand_chacha-0.3.1\"),\n \"rand_core\": Label(\"@oak_std_crates_index//:rand_core-0.6.4\"),\n \"rcgen\": Label(\"@oak_std_crates_index//:rcgen-0.13.2\"),\n \"regex\": Label(\"@oak_std_crates_index//:regex-1.12.3\"),\n \"regex-lite\": Label(\"@oak_std_crates_index//:regex-lite-0.1.9\"),\n \"reqwest\": Label(\"@oak_std_crates_index//:reqwest-0.12.28\"),\n \"rlsf\": Label(\"@oak_std_crates_index//:rlsf-0.2.2\"),\n \"rmcp\": Label(\"@oak_std_crates_index//:rmcp-0.8.5\"),\n \"rpassword\": Label(\"@oak_std_crates_index//:rpassword-7.4.0\"),\n \"rs_merkle\": Label(\"@oak_std_crates_index//:rs_merkle-1.5.0\"),\n \"rsa\": Label(\"@oak_std_crates_index//:rsa-0.9.10\"),\n \"rtnetlink\": Label(\"@oak_std_crates_index//:rtnetlink-0.14.1\"),\n \"rustls\": Label(\"@oak_std_crates_index//:rustls-0.23.38\"),\n \"rustls-pemfile\": Label(\"@oak_std_crates_index//:rustls-pemfile-2.2.0\"),\n \"rustls-pki-types\": Label(\"@oak_std_crates_index//:rustls-pki-types-1.14.0\"),\n \"self_cell\": Label(\"@oak_std_crates_index//:self_cell-1.2.2\"),\n \"serde\": Label(\"@oak_std_crates_index//:serde-1.0.228\"),\n \"serde_json\": Label(\"@oak_std_crates_index//:serde_json-1.0.149\"),\n \"sha2\": Label(\"@oak_std_crates_index//:sha2-0.10.9\"),\n \"sha3\": Label(\"@oak_std_crates_index//:sha3-0.10.9\"),\n \"signal-hook\": Label(\"@oak_std_crates_index//:signal-hook-0.3.18\"),\n \"signal-hook-tokio\": Label(\"@oak_std_crates_index//:signal-hook-tokio-0.3.1\"),\n \"spinning_top\": Label(\"@oak_std_crates_index//:spinning_top-0.3.0\"),\n \"static_assertions\": Label(\"@oak_std_crates_index//:static_assertions-1.1.0\"),\n \"strum\": Label(\"@oak_std_crates_index//:strum-0.27.2\"),\n \"syn\": Label(\"@oak_std_crates_index//:syn-2.0.117\"),\n \"syslog\": Label(\"@oak_std_crates_index//:syslog-6.1.1\"),\n \"tar\": Label(\"@oak_std_crates_index//:tar-0.4.45\"),\n \"tempfile\": Label(\"@oak_std_crates_index//:tempfile-3.27.0\"),\n \"thiserror\": Label(\"@oak_std_crates_index//:thiserror-2.0.18\"),\n \"tikv-jemallocator\": Label(\"@oak_std_crates_index//:tikv-jemallocator-0.5.4\"),\n \"tokio\": Label(\"@oak_std_crates_index//:tokio-1.52.1\"),\n \"tokio-stream\": Label(\"@oak_std_crates_index//:tokio-stream-0.1.18\"),\n \"tokio-tungstenite\": Label(\"@oak_std_crates_index//:tokio-tungstenite-0.27.0\"),\n \"tokio-util\": Label(\"@oak_std_crates_index//:tokio-util-0.7.18\"),\n \"tokio-vsock\": Label(\"@oak_std_crates_index//:tokio-vsock-0.7.2\"),\n \"toml\": Label(\"@oak_std_crates_index//:toml-0.8.23\"),\n \"tonic\": Label(\"@oak_std_crates_index//:tonic-0.14.5\"),\n \"tonic-prost\": Label(\"@oak_std_crates_index//:tonic-prost-0.14.5\"),\n \"tonic-prost-build\": Label(\"@oak_std_crates_index//:tonic-prost-build-0.14.5\"),\n \"tower\": Label(\"@oak_std_crates_index//:tower-0.4.13\"),\n \"tower-http\": Label(\"@oak_std_crates_index//:tower-http-0.6.8\"),\n \"tracing\": Label(\"@oak_std_crates_index//:tracing-0.1.44\"),\n \"tracing-subscriber\": Label(\"@oak_std_crates_index//:tracing-subscriber-0.3.23\"),\n \"tungstenite\": Label(\"@oak_std_crates_index//:tungstenite-0.27.0\"),\n \"uart_16550\": Label(\"@oak_std_crates_index//:uart_16550-0.3.2\"),\n \"ubyte\": Label(\"@oak_std_crates_index//:ubyte-0.10.4\"),\n \"ureq\": Label(\"@oak_std_crates_index//:ureq-2.12.1\"),\n \"url\": Label(\"@oak_std_crates_index//:url-2.5.8\"),\n \"waki\": Label(\"@oak_std_crates_index//:waki-0.5.1\"),\n \"walkdir\": Label(\"@oak_std_crates_index//:walkdir-2.5.0\"),\n \"wasmi\": Label(\"@oak_std_crates_index//:wasmi-0.31.2\"),\n \"wasmtime\": Label(\"@oak_std_crates_index//:wasmtime-32.0.1\"),\n \"wasmtime-wasi\": Label(\"@oak_std_crates_index//:wasmtime-wasi-32.0.1\"),\n \"wasmtime-wasi-http\": Label(\"@oak_std_crates_index//:wasmtime-wasi-http-32.0.1\"),\n \"which\": Label(\"@oak_std_crates_index//:which-5.0.0\"),\n \"wit-bindgen\": Label(\"@oak_std_crates_index//:wit-bindgen-0.33.0\"),\n \"x509-cert\": Label(\"@oak_std_crates_index//:x509-cert-0.2.5\"),\n \"x509-verify\": Label(\"@oak_std_crates_index//:x509-verify-0.4.8\"),\n \"x86_64\": Label(\"@oak_std_crates_index//:x86_64-0.15.4\"),\n \"xz2\": Label(\"@oak_std_crates_index//:xz2-0.1.7\"),\n \"yaml_serde\": Label(\"@oak_std_crates_index//:yaml_serde-0.10.4\"),\n \"zerocopy\": Label(\"@oak_std_crates_index//:zerocopy-0.8.48\"),\n \"zeroize\": Label(\"@oak_std_crates_index//:zeroize-1.8.2\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"async-trait\": Label(\"@oak_std_crates_index//:async-trait-0.1.89\"),\n \"criterion-macro\": Label(\"@oak_std_crates_index//:criterion-macro-0.4.0\"),\n \"prost-derive\": Label(\"@oak_std_crates_index//:prost-derive-0.14.3\"),\n \"rmcp-macros\": Label(\"@oak_std_crates_index//:rmcp-macros-0.8.5\"),\n \"time-macros\": Label(\"@oak_std_crates_index//:time-macros-0.2.18\"),\n },\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-pc-windows-gnullvm\": [],\n \"aarch64-pc-windows-msvc\": [],\n \"aarch64-uwp-windows-msvc\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_os = \\\"windows\\\"))\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_vendor = \\\"apple\\\", any(target_os = \\\"ios\\\", target_os = \\\"macos\\\", target_os = \\\"tvos\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(any(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), all(target_arch = \\\"arm\\\", target_endian = \\\"little\\\")), any(target_os = \\\"android\\\", target_os = \\\"linux\\\")))\": [],\n \"cfg(all(any(target_arch = \\\"x86_64\\\", target_arch = \\\"arm64ec\\\"), target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(curve25519_dalek_backend = \\\"fiat\\\"), not(curve25519_dalek_backend = \\\"serial\\\"), target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", not(target_os = \\\"wasi\\\")))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p3\\\"))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(target_abi = \\\"llvm\\\"), not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"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\"],\n \"cfg(all(target_arch = \\\"x86_64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(all(unix, not(target_os = \\\"macos\\\")))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"s390x\\\", target_arch = \\\"riscv64\\\"))\": [],\n \"cfg(any(target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\", target_os = \\\"macos\\\", target_os = \\\"hurd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"freebsd\\\", target_os = \\\"netbsd\\\"))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"linux\\\", target_vendor = \\\"apple\\\", target_os = \\\"freebsd\\\", target_os = \\\"android\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\", target_os = \\\"freebsd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(unix, target_os = \\\"hermit\\\", target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(windows, target_os = \\\"cygwin\\\"))\": [],\n \"cfg(any(windows, unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(curve25519_dalek_backend = \\\"fiat\\\")\": [],\n \"cfg(not(all(target_arch = \\\"arm\\\", target_os = \\\"none\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(windows, target_env = \\\"msvc\\\", not(target_vendor = \\\"uwp\\\"))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_arch = \\\"wasm32\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_has_atomic = \\\"ptr\\\"))\": [],\n \"cfg(not(target_os = \\\"windows\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows_raw_dylib))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_arch = \\\"aarch64\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_arch = \\\"spirv\\\")\": [],\n \"cfg(target_arch = \\\"wasm32\\\")\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_arch = \\\"x86_64\\\")\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_os = \\\"android\\\")\": [],\n \"cfg(target_os = \\\"haiku\\\")\": [],\n \"cfg(target_os = \\\"hermit\\\")\": [],\n \"cfg(target_os = \\\"macos\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"redox\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_os = \\\"windows\\\")\": [],\n \"cfg(target_vendor = \\\"apple\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(windows)\": [],\n \"cfg(windows_raw_dylib)\": [],\n \"i686-pc-windows-gnu\": [],\n \"i686-pc-windows-gnullvm\": [],\n \"i686-pc-windows-msvc\": [],\n \"i686-uwp-windows-gnu\": [],\n \"i686-uwp-windows-msvc\": [],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip2\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"x86_64-pc-windows-gnu\": [],\n \"x86_64-pc-windows-gnullvm\": [],\n \"x86_64-pc-windows-msvc\": [],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"x86_64-unknown-none\": [\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"x86_64-uwp-windows-gnu\": [],\n \"x86_64-uwp-windows-msvc\": [],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"oak_std_crates_index__acpi-5.2.0\",\n sha256 = \"94476c7ef97af4c4d998b3f422c1b01d5211aad57c80ed200baf148d1f1efab6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/acpi/5.2.0/download\"],\n strip_prefix = \"acpi-5.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.acpi-5.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.24.2\",\n sha256 = \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.24.2/download\"],\n strip_prefix = \"addr2line-0.24.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.24.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.25.1\",\n sha256 = \"1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.25.1/download\"],\n strip_prefix = \"addr2line-0.25.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.25.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__adler2-2.0.1\",\n sha256 = \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/adler2/2.0.1/download\"],\n strip_prefix = \"adler2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.adler2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-gcm-0.10.3\",\n sha256 = \"831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm/0.10.3/download\"],\n strip_prefix = \"aes-gcm-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-gcm-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ahash-0.8.12\",\n sha256 = \"5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ahash/0.8.12/download\"],\n strip_prefix = \"ahash-0.8.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ahash-0.8.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aho-corasick-1.1.4\",\n sha256 = \"ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aho-corasick/1.1.4/download\"],\n strip_prefix = \"aho-corasick-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aho-corasick-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aliasable-0.1.3\",\n sha256 = \"250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aliasable/0.1.3/download\"],\n strip_prefix = \"aliasable-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aliasable-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aligned-vec-0.6.4\",\n sha256 = \"dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aligned-vec/0.6.4/download\"],\n strip_prefix = \"aligned-vec-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aligned-vec-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__allocator-api2-0.2.21\",\n sha256 = \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/allocator-api2/0.2.21/download\"],\n strip_prefix = \"allocator-api2-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.allocator-api2-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ambient-authority-0.0.2\",\n sha256 = \"e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ambient-authority/0.0.2/download\"],\n strip_prefix = \"ambient-authority-0.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ambient-authority-0.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aml-0.16.4\",\n sha256 = \"c4f8cba7d4260ea05671dda81029f6f718b54402a4ec926a0d9a41bdbb96b415\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aml/0.16.4/download\"],\n strip_prefix = \"aml-0.16.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aml-0.16.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__android_system_properties-0.1.5\",\n sha256 = \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/android_system_properties/0.1.5/download\"],\n strip_prefix = \"android_system_properties-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.android_system_properties-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anes-0.1.6\",\n sha256 = \"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anes/0.1.6/download\"],\n strip_prefix = \"anes-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anes-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstream-1.0.0\",\n sha256 = \"824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstream/1.0.0/download\"],\n strip_prefix = \"anstream-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstream-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-1.0.14\",\n sha256 = \"940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle/1.0.14/download\"],\n strip_prefix = \"anstyle-1.0.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-1.0.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-parse-1.0.0\",\n sha256 = \"52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-parse/1.0.0/download\"],\n strip_prefix = \"anstyle-parse-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-parse-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-query-1.1.5\",\n sha256 = \"40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-query/1.1.5/download\"],\n strip_prefix = \"anstyle-query-1.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-query-1.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-wincon-3.0.11\",\n sha256 = \"291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-wincon/3.0.11/download\"],\n strip_prefix = \"anstyle-wincon-3.0.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-wincon-3.0.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anyhow-1.0.102\",\n sha256 = \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anyhow/1.0.102/download\"],\n strip_prefix = \"anyhow-1.0.102\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anyhow-1.0.102.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ar_archive_writer-0.5.1\",\n sha256 = \"7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ar_archive_writer/0.5.1/download\"],\n strip_prefix = \"ar_archive_writer-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ar_archive_writer-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arbitrary-1.4.2\",\n sha256 = \"c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arbitrary/1.4.2/download\"],\n strip_prefix = \"arbitrary-1.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arbitrary-1.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arrayvec-0.7.6\",\n sha256 = \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arrayvec/0.7.6/download\"],\n strip_prefix = \"arrayvec-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arrayvec-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-0.6.2\",\n sha256 = \"5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs/0.6.2/download\"],\n strip_prefix = \"asn1-rs-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-derive-0.5.1\",\n sha256 = \"965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-derive/0.5.1/download\"],\n strip_prefix = \"asn1-rs-derive-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-derive-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-impl-0.2.0\",\n sha256 = \"7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-impl/0.2.0/download\"],\n strip_prefix = \"asn1-rs-impl-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-impl-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__assertables-7.0.1\",\n sha256 = \"0c24e9d990669fbd16806bff449e4ac644fd9b1fca014760087732fe4102f131\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/assertables/7.0.1/download\"],\n strip_prefix = \"assertables-7.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.assertables-7.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-0.3.6\",\n sha256 = \"0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream/0.3.6/download\"],\n strip_prefix = \"async-stream-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-impl-0.3.6\",\n sha256 = \"c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream-impl/0.3.6/download\"],\n strip_prefix = \"async-stream-impl-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-impl-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-trait-0.1.89\",\n sha256 = \"9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-trait/0.1.89/download\"],\n strip_prefix = \"async-trait-0.1.89\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-trait-0.1.89.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic-waker-1.1.2\",\n sha256 = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic-waker/1.1.2/download\"],\n strip_prefix = \"atomic-waker-1.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic-waker-1.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic_refcell-0.1.14\",\n sha256 = \"21e4227379beff4205943696e6c3e0cd809bacdf3f0edd6e3dd153e2269571a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic_refcell/0.1.14/download\"],\n strip_prefix = \"atomic_refcell-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic_refcell-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__autocfg-1.5.0\",\n sha256 = \"c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/autocfg/1.5.0/download\"],\n strip_prefix = \"autocfg-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.autocfg-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.7.9\",\n sha256 = \"edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.7.9/download\"],\n strip_prefix = \"axum-0.7.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.7.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.8.9\",\n sha256 = \"31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.8.9/download\"],\n strip_prefix = \"axum-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.4.5\",\n sha256 = \"09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.4.5/download\"],\n strip_prefix = \"axum-core-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.5.6\",\n sha256 = \"08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.5.6/download\"],\n strip_prefix = \"axum-core-0.5.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.5.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__backtrace-0.3.76\",\n sha256 = \"bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/backtrace/0.3.76/download\"],\n strip_prefix = \"backtrace-0.3.76\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.backtrace-0.3.76.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base16ct-0.2.0\",\n sha256 = \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base16ct/0.2.0/download\"],\n strip_prefix = \"base16ct-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base16ct-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.13.1\",\n sha256 = \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.13.1/download\"],\n strip_prefix = \"base64-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.21.7\",\n sha256 = \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.21.7/download\"],\n strip_prefix = \"base64-0.21.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.21.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.22.1\",\n sha256 = \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.22.1/download\"],\n strip_prefix = \"base64-0.22.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.22.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64ct-1.8.3\",\n sha256 = \"2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64ct/1.8.3/download\"],\n strip_prefix = \"base64ct-1.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64ct-1.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bincode-1.3.3\",\n sha256 = \"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bincode/1.3.3/download\"],\n strip_prefix = \"bincode-1.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bincode-1.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-set-0.8.0\",\n sha256 = \"08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-set/0.8.0/download\"],\n strip_prefix = \"bit-set-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-set-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-vec-0.8.0\",\n sha256 = \"5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-vec/0.8.0/download\"],\n strip_prefix = \"bit-vec-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-vec-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit_field-0.10.3\",\n sha256 = \"1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit_field/0.10.3/download\"],\n strip_prefix = \"bit_field-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit_field-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-1.3.2\",\n sha256 = \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/1.3.2/download\"],\n strip_prefix = \"bitflags-1.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-1.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-2.11.1\",\n sha256 = \"c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/2.11.1/download\"],\n strip_prefix = \"bitflags-2.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-2.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitvec-1.0.1\",\n sha256 = \"1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitvec/1.0.1/download\"],\n strip_prefix = \"bitvec-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitvec-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__block-buffer-0.10.4\",\n sha256 = \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/block-buffer/0.10.4/download\"],\n strip_prefix = \"block-buffer-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.block-buffer-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bumpalo-3.20.2\",\n sha256 = \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bumpalo/3.20.2/download\"],\n strip_prefix = \"bumpalo-3.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bumpalo-3.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytemuck-1.25.0\",\n sha256 = \"c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytemuck/1.25.0/download\"],\n strip_prefix = \"bytemuck-1.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytemuck-1.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__byteorder-1.5.0\",\n sha256 = \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/byteorder/1.5.0/download\"],\n strip_prefix = \"byteorder-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.byteorder-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytes-1.11.1\",\n sha256 = \"1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytes/1.11.1/download\"],\n strip_prefix = \"bytes-1.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytes-1.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-fs-ext-3.4.5\",\n sha256 = \"d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-fs-ext/3.4.5/download\"],\n strip_prefix = \"cap-fs-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-fs-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-net-ext-3.4.5\",\n sha256 = \"20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-net-ext/3.4.5/download\"],\n strip_prefix = \"cap-net-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-net-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-primitives-3.4.5\",\n sha256 = \"b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-primitives/3.4.5/download\"],\n strip_prefix = \"cap-primitives-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-primitives-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-rand-3.4.5\",\n sha256 = \"d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-rand/3.4.5/download\"],\n strip_prefix = \"cap-rand-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-rand-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-std-3.4.5\",\n sha256 = \"b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-std/3.4.5/download\"],\n strip_prefix = \"cap-std-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-std-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-time-ext-3.4.5\",\n sha256 = \"def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-time-ext/3.4.5/download\"],\n strip_prefix = \"cap-time-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-time-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cast-0.3.0\",\n sha256 = \"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cast/0.3.0/download\"],\n strip_prefix = \"cast-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cast-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cesu8-1.1.0\",\n sha256 = \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cesu8/1.1.0/download\"],\n strip_prefix = \"cesu8-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cesu8-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg_aliases-0.2.1\",\n sha256 = \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg_aliases/0.2.1/download\"],\n strip_prefix = \"cfg_aliases-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg_aliases-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20-0.9.1\",\n sha256 = \"c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20/0.9.1/download\"],\n strip_prefix = \"chacha20-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20poly1305-0.10.1\",\n sha256 = \"10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20poly1305/0.10.1/download\"],\n strip_prefix = \"chacha20poly1305-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20poly1305-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chrono-0.4.44\",\n sha256 = \"c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chrono/0.4.44/download\"],\n strip_prefix = \"chrono-0.4.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chrono-0.4.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-0.2.2\",\n sha256 = \"42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium/0.2.2/download\"],\n strip_prefix = \"ciborium-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-io-0.2.2\",\n sha256 = \"05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-io/0.2.2/download\"],\n strip_prefix = \"ciborium-io-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-io-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-ll-0.2.2\",\n sha256 = \"57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-ll/0.2.2/download\"],\n strip_prefix = \"ciborium-ll-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-ll-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap-4.6.1\",\n sha256 = \"1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap/4.6.1/download\"],\n strip_prefix = \"clap-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_builder-4.6.0\",\n sha256 = \"714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_builder/4.6.0/download\"],\n strip_prefix = \"clap_builder-4.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_builder-4.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_derive-4.6.1\",\n sha256 = \"f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_derive/4.6.1/download\"],\n strip_prefix = \"clap_derive-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_derive-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_lex-1.1.0\",\n sha256 = \"c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_lex/1.1.0/download\"],\n strip_prefix = \"clap_lex-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_lex-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cobs-0.3.0\",\n sha256 = \"0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cobs/0.3.0/download\"],\n strip_prefix = \"cobs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cobs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colorchoice-1.0.5\",\n sha256 = \"1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colorchoice/1.0.5/download\"],\n strip_prefix = \"colorchoice-1.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colorchoice-1.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colored-2.2.0\",\n sha256 = \"117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colored/2.2.0/download\"],\n strip_prefix = \"colored-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colored-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__combine-4.6.7\",\n sha256 = \"ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/combine/4.6.7/download\"],\n strip_prefix = \"combine-4.6.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.combine-4.6.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-fds-0.3.3\",\n sha256 = \"1b60b5124979fccd9addd89d8b97a1d6eebb4950694520c75ddd722535ea443f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-fds/0.3.3/download\"],\n strip_prefix = \"command-fds-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-fds-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-group-5.0.1\",\n sha256 = \"a68fa787550392a9d58f44c21a3022cfb3ea3e2458b7f85d3b399d0ceeccf409\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-group/5.0.1/download\"],\n strip_prefix = \"command-group-5.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-group-5.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__console-0.15.11\",\n sha256 = \"054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/console/0.15.11/download\"],\n strip_prefix = \"console-0.15.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.console-0.15.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-default-1.0.0\",\n sha256 = \"0b396d1f76d455557e1218ec8066ae14bba60b4b36ecd55577ba979f5db7ecaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-default/1.0.0/download\"],\n strip_prefix = \"const-default-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-default-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-hex-1.18.1\",\n sha256 = \"531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-hex/1.18.1/download\"],\n strip_prefix = \"const-hex-1.18.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-hex-1.18.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-oid-0.9.6\",\n sha256 = \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-oid/0.9.6/download\"],\n strip_prefix = \"const-oid-0.9.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-oid-0.9.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_fn-0.4.12\",\n sha256 = \"413d67b29ef1021b4d60f4aa1e925ca031751e213832b4b1d588fae623c05c60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_fn/0.4.12/download\"],\n strip_prefix = \"const_fn-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_fn-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format-0.2.36\",\n sha256 = \"4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format/0.2.36/download\"],\n strip_prefix = \"const_format-0.2.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format-0.2.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format_proc_macros-0.2.34\",\n sha256 = \"1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format_proc_macros/0.2.34/download\"],\n strip_prefix = \"const_format_proc_macros-0.2.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format_proc_macros-0.2.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.10.1\",\n sha256 = \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.10.1/download\"],\n strip_prefix = \"core-foundation-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.9.4\",\n sha256 = \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.9.4/download\"],\n strip_prefix = \"core-foundation-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-sys-0.8.7\",\n sha256 = \"773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation-sys/0.8.7/download\"],\n strip_prefix = \"core-foundation-sys-0.8.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-sys-0.8.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__coset-0.3.8\",\n sha256 = \"f4c8cc80f631f8307b887faca24dcc3abc427cd0367f6eb6188f6e8f5b7ad8fb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/coset/0.3.8/download\"],\n strip_prefix = \"coset-0.3.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.coset-0.3.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpp_demangle-0.4.5\",\n sha256 = \"f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpp_demangle/0.4.5/download\"],\n strip_prefix = \"cpp_demangle-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpp_demangle-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-0.119.1\",\n sha256 = \"359c047862387091eb0363ce8b5cabb4a8be1cc16a6fa151fe079c09796461f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-meta-0.119.1\",\n sha256 = \"6bf62afda29fcde09d922f125a7d47880b540fd1de069558bfa637b4ce7aa1ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bforest-0.119.1\",\n sha256 = \"3537273471ebdae55791869ee16f71a4a51e34ad47cdc64269a9c2255b5dce03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bforest/0.119.1/download\"],\n strip_prefix = \"cranelift-bforest-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bforest-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bitset-0.119.1\",\n sha256 = \"b872fde1717c508f842ad1ad8768fbe16caf7e8e049215b0e09429bbf00d3ce9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bitset/0.119.1/download\"],\n strip_prefix = \"cranelift-bitset-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bitset-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-0.119.1\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/cranelift-codegen:patch_build_rs.patch\",\n ],\n sha256 = \"52a74ef998eb9f985dc0d987d3aac0fe4bd1b59ec707461b2d6d20cda1b0a5e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-meta-0.119.1\",\n sha256 = \"7a04a532b9a7b69c28e7e37d15bca7f7f5cc56399df890ec399333e2d548004a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-shared-0.119.1\",\n sha256 = \"95c4556174c6eb7d586bd1715b7f9c3a43a0835d6a95715893718b2f263af895\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-shared/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-shared-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-shared-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-control-0.119.1\",\n sha256 = \"18d8e9ae221e352dbea7f6f389705365f8128e7e0a7de5cf787ab7b2ccd1c522\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-control/0.119.1/download\"],\n strip_prefix = \"cranelift-control-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-control-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-entity-0.119.1\",\n sha256 = \"40d10b531267cc86ba4fbb7b718b646df503713828b37841a867f332954b24ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-entity/0.119.1/download\"],\n strip_prefix = \"cranelift-entity-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-entity-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-frontend-0.119.1\",\n sha256 = \"07540e6f75357d655743008965018fe243434ec6755078794616fde31f783a03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-frontend/0.119.1/download\"],\n strip_prefix = \"cranelift-frontend-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-frontend-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-isle-0.119.1\",\n sha256 = \"3e0909e87af454a7ff542ece2d66f901f2cc9483ab36572a924eb5e58ce51fc0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-isle/0.119.1/download\"],\n strip_prefix = \"cranelift-isle-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-isle-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-native-0.119.1\",\n sha256 = \"5f2d3963401ea1f8f84bdb0b654f1ca186be97e6ca94ccd2a8037b9edee47e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-native/0.119.1/download\"],\n strip_prefix = \"cranelift-native-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-native-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-srcgen-0.119.1\",\n sha256 = \"823558b0a406b7f7d5dad0c925b29e8192792476faaa71615d40cb5a842a9040\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-srcgen/0.119.1/download\"],\n strip_prefix = \"cranelift-srcgen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-srcgen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crc32fast-1.5.0\",\n sha256 = \"9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crc32fast/1.5.0/download\"],\n strip_prefix = \"crc32fast-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crc32fast-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-0.5.1\",\n sha256 = \"f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion/0.5.1/download\"],\n strip_prefix = \"criterion-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-macro-0.4.0\",\n sha256 = \"288a8f36b28a19d7dbd572c76006c0a0eba1f3bf912a254dda211c6f665e7ffc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-macro/0.4.0/download\"],\n strip_prefix = \"criterion-macro-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-macro-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-plot-0.5.0\",\n sha256 = \"6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-plot/0.5.0/download\"],\n strip_prefix = \"criterion-plot-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-plot-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-deque-0.8.6\",\n sha256 = \"9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-deque/0.8.6/download\"],\n strip_prefix = \"crossbeam-deque-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-deque-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-epoch-0.9.18\",\n sha256 = \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-epoch/0.9.18/download\"],\n strip_prefix = \"crossbeam-epoch-0.9.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-epoch-0.9.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-utils-0.8.21\",\n sha256 = \"d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-utils/0.8.21/download\"],\n strip_prefix = \"crossbeam-utils-0.8.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-utils-0.8.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crunchy-0.2.4\",\n sha256 = \"460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crunchy/0.2.4/download\"],\n strip_prefix = \"crunchy-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crunchy-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-bigint-0.5.5\",\n sha256 = \"0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-bigint/0.5.5/download\"],\n strip_prefix = \"crypto-bigint-0.5.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-bigint-0.5.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-4.1.3\",\n sha256 = \"97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek/4.1.3/download\"],\n strip_prefix = \"curve25519-dalek-4.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-4.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-derive-0.1.1\",\n sha256 = \"f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek-derive/0.1.1/download\"],\n strip_prefix = \"curve25519-dalek-derive-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-derive-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.20.11\",\n sha256 = \"fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.20.11/download\"],\n strip_prefix = \"darling-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.21.3\",\n sha256 = \"9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.21.3/download\"],\n strip_prefix = \"darling-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.20.11\",\n sha256 = \"0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.20.11/download\"],\n strip_prefix = \"darling_core-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.21.3\",\n sha256 = \"1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.21.3/download\"],\n strip_prefix = \"darling_core-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.20.11\",\n sha256 = \"fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.20.11/download\"],\n strip_prefix = \"darling_macro-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.21.3\",\n sha256 = \"d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.21.3/download\"],\n strip_prefix = \"darling_macro-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__data-encoding-2.10.0\",\n sha256 = \"d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/data-encoding/2.10.0/download\"],\n strip_prefix = \"data-encoding-2.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.data-encoding-2.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__debugid-0.8.0\",\n sha256 = \"bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/debugid/0.8.0/download\"],\n strip_prefix = \"debugid-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.debugid-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-0.7.10\",\n sha256 = \"e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der/0.7.10/download\"],\n strip_prefix = \"der-0.7.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-0.7.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-parser-9.0.0\",\n sha256 = \"5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der-parser/9.0.0/download\"],\n strip_prefix = \"der-parser-9.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-parser-9.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der_derive-0.7.3\",\n sha256 = \"8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der_derive/0.7.3/download\"],\n strip_prefix = \"der_derive-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der_derive-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__deranged-0.3.11\",\n sha256 = \"b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/deranged/0.3.11/download\"],\n strip_prefix = \"deranged-0.3.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.deranged-0.3.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder-0.20.2\",\n sha256 = \"507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder/0.20.2/download\"],\n strip_prefix = \"derive_builder-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_core-0.20.2\",\n sha256 = \"2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_core/0.20.2/download\"],\n strip_prefix = \"derive_builder_core-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_core-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_macro-0.20.2\",\n sha256 = \"ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_macro/0.20.2/download\"],\n strip_prefix = \"derive_builder_macro-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_macro-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__digest-0.10.7\",\n sha256 = \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/digest/0.10.7/download\"],\n strip_prefix = \"digest-0.10.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.digest-0.10.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__directories-next-2.0.0\",\n sha256 = \"339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/directories-next/2.0.0/download\"],\n strip_prefix = \"directories-next-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.directories-next-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-4.0.0\",\n sha256 = \"ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs/4.0.0/download\"],\n strip_prefix = \"dirs-4.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-4.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-0.3.7\",\n sha256 = \"1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys/0.3.7/download\"],\n strip_prefix = \"dirs-sys-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-next-0.1.2\",\n sha256 = \"4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys-next/0.1.2/download\"],\n strip_prefix = \"dirs-sys-next-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-next-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__displaydoc-0.2.5\",\n sha256 = \"97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/displaydoc/0.2.5/download\"],\n strip_prefix = \"displaydoc-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.displaydoc-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-0.11.0\",\n sha256 = \"1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast/0.11.0/download\"],\n strip_prefix = \"downcast-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-rs-1.2.1\",\n sha256 = \"75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast-rs/1.2.1/download\"],\n strip_prefix = \"downcast-rs-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-rs-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dyn-clone-1.0.20\",\n sha256 = \"d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dyn-clone/1.0.20/download\"],\n strip_prefix = \"dyn-clone-1.0.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dyn-clone-1.0.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ecdsa-0.16.9\",\n sha256 = \"ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ecdsa/0.16.9/download\"],\n strip_prefix = \"ecdsa-0.16.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ecdsa-0.16.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-2.2.3\",\n sha256 = \"115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519/2.2.3/download\"],\n strip_prefix = \"ed25519-2.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-2.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-dalek-2.2.0\",\n sha256 = \"70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519-dalek/2.2.0/download\"],\n strip_prefix = \"ed25519-dalek-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-dalek-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__either-1.15.0\",\n sha256 = \"48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/either/1.15.0/download\"],\n strip_prefix = \"either-1.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.either-1.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elf-0.7.4\",\n sha256 = \"4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elf/0.7.4/download\"],\n strip_prefix = \"elf-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elf-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elliptic-curve-0.13.8\",\n sha256 = \"b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elliptic-curve/0.13.8/download\"],\n strip_prefix = \"elliptic-curve-0.13.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elliptic-curve-0.13.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.4.0\",\n sha256 = \"ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.4.0/download\"],\n strip_prefix = \"embedded-io-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.6.1\",\n sha256 = \"edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.6.1/download\"],\n strip_prefix = \"embedded-io-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encode_unicode-1.0.0\",\n sha256 = \"34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encode_unicode/1.0.0/download\"],\n strip_prefix = \"encode_unicode-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encode_unicode-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encoding_rs-0.8.35\",\n sha256 = \"75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encoding_rs/0.8.35/download\"],\n strip_prefix = \"encoding_rs-0.8.35\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encoding_rs-0.8.35.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_filter-1.0.1\",\n sha256 = \"32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_filter/1.0.1/download\"],\n strip_prefix = \"env_filter-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_filter-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_logger-0.11.10\",\n sha256 = \"0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_logger/0.11.10/download\"],\n strip_prefix = \"env_logger-0.11.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_logger-0.11.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-0.4.2\",\n sha256 = \"4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator/0.4.2/download\"],\n strip_prefix = \"equator-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-macro-0.4.2\",\n sha256 = \"44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator-macro/0.4.2/download\"],\n strip_prefix = \"equator-macro-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-macro-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__errno-0.3.14\",\n sha256 = \"39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/errno/0.3.14/download\"],\n strip_prefix = \"errno-0.3.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.errno-0.3.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__error-chain-0.12.4\",\n sha256 = \"2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/error-chain/0.12.4/download\"],\n strip_prefix = \"error-chain-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.error-chain-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fallible-iterator-0.3.0\",\n sha256 = \"2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fallible-iterator/0.3.0/download\"],\n strip_prefix = \"fallible-iterator-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fallible-iterator-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fastrand-2.4.1\",\n sha256 = \"9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fastrand/2.4.1/download\"],\n strip_prefix = \"fastrand-2.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fastrand-2.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fd-lock-4.0.4\",\n sha256 = \"0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fd-lock/4.0.4/download\"],\n strip_prefix = \"fd-lock-4.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fd-lock-4.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ff-0.13.1\",\n sha256 = \"c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ff/0.13.1/download\"],\n strip_prefix = \"ff-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ff-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fiat-crypto-0.2.9\",\n sha256 = \"28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fiat-crypto/0.2.9/download\"],\n strip_prefix = \"fiat-crypto-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fiat-crypto-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__filetime-0.2.27\",\n sha256 = \"f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/filetime/0.2.27/download\"],\n strip_prefix = \"filetime-0.2.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.filetime-0.2.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__findshlibs-0.10.2\",\n sha256 = \"40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/findshlibs/0.10.2/download\"],\n strip_prefix = \"findshlibs-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.findshlibs-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.4.2\",\n sha256 = \"0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.4.2/download\"],\n strip_prefix = \"fixedbitset-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.5.7\",\n sha256 = \"1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.5.7/download\"],\n strip_prefix = \"fixedbitset-0.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.5.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flagset-0.4.7\",\n sha256 = \"b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flagset/0.4.7/download\"],\n strip_prefix = \"flagset-0.4.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flagset-0.4.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flate2-1.1.9\",\n sha256 = \"843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flate2/1.1.9/download\"],\n strip_prefix = \"flate2-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flate2-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fnv-1.0.7\",\n sha256 = \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fnv/1.0.7/download\"],\n strip_prefix = \"fnv-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fnv-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foldhash-0.1.5\",\n sha256 = \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.1.5/download\"],\n strip_prefix = \"foldhash-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foldhash-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-0.3.2\",\n sha256 = \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types/0.3.2/download\"],\n strip_prefix = \"foreign-types-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-shared-0.1.1\",\n sha256 = \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types-shared/0.1.1/download\"],\n strip_prefix = \"foreign-types-shared-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-shared-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__form_urlencoded-1.2.2\",\n sha256 = \"cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/form_urlencoded/1.2.2/download\"],\n strip_prefix = \"form_urlencoded-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.form_urlencoded-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fragile-2.1.0\",\n sha256 = \"8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fragile/2.1.0/download\"],\n strip_prefix = \"fragile-2.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fragile-2.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fs-set-times-0.20.3\",\n sha256 = \"94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fs-set-times/0.20.3/download\"],\n strip_prefix = \"fs-set-times-0.20.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fs-set-times-0.20.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__funty-2.0.0\",\n sha256 = \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/funty/2.0.0/download\"],\n strip_prefix = \"funty-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.funty-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-0.3.32\",\n sha256 = \"8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures/0.3.32/download\"],\n strip_prefix = \"futures-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-channel-0.3.32\",\n sha256 = \"07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-channel/0.3.32/download\"],\n strip_prefix = \"futures-channel-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-channel-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-core-0.3.32\",\n sha256 = \"7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-core/0.3.32/download\"],\n strip_prefix = \"futures-core-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-core-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-executor-0.3.32\",\n sha256 = \"baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-executor/0.3.32/download\"],\n strip_prefix = \"futures-executor-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-executor-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-io-0.3.32\",\n sha256 = \"cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-io/0.3.32/download\"],\n strip_prefix = \"futures-io-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-io-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-macro-0.3.32\",\n sha256 = \"e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-macro/0.3.32/download\"],\n strip_prefix = \"futures-macro-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-macro-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-sink-0.3.32\",\n sha256 = \"c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-sink/0.3.32/download\"],\n strip_prefix = \"futures-sink-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-sink-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-task-0.3.32\",\n sha256 = \"037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-task/0.3.32/download\"],\n strip_prefix = \"futures-task-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-task-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-util-0.3.32\",\n sha256 = \"389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-util/0.3.32/download\"],\n strip_prefix = \"futures-util-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-util-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.4.2\",\n sha256 = \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.4.2/download\"],\n strip_prefix = \"getrandom-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getset-0.1.6\",\n sha256 = \"9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getset/0.1.6/download\"],\n strip_prefix = \"getset-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getset-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ghash-0.5.1\",\n sha256 = \"f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ghash/0.5.1/download\"],\n strip_prefix = \"ghash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ghash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.31.1\",\n sha256 = \"07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.31.1/download\"],\n strip_prefix = \"gimli-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.32.3\",\n sha256 = \"e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.32.3/download\"],\n strip_prefix = \"gimli-0.32.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.32.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__goblin-0.8.2\",\n sha256 = \"1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/goblin/0.8.2/download\"],\n strip_prefix = \"goblin-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.goblin-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest-0.14.2\",\n sha256 = \"06597b7d02ee58b9a37f522785ac15b9e18c6b178747c4439a6c03fbb35ea753\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest/0.14.2/download\"],\n strip_prefix = \"googletest-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest_macro-0.14.2\",\n sha256 = \"c31d9f07c9c19b855faebf71637be3b43f8e13a518aece5d61a3beee7710b4ef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest_macro/0.14.2/download\"],\n strip_prefix = \"googletest_macro-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest_macro-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__group-0.13.0\",\n sha256 = \"f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/group/0.13.0/download\"],\n strip_prefix = \"group-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.group-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__h2-0.4.13\",\n sha256 = \"2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/h2/0.4.13/download\"],\n strip_prefix = \"h2-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.h2-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__half-2.7.1\",\n sha256 = \"6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/half/2.7.1/download\"],\n strip_prefix = \"half-2.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.half-2.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.14.5\",\n sha256 = \"e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.14.5/download\"],\n strip_prefix = \"hashbrown-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.15.5\",\n sha256 = \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.15.5/download\"],\n strip_prefix = \"hashbrown-0.15.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.15.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.4.1\",\n sha256 = \"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.4.1/download\"],\n strip_prefix = \"heck-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.5.0\",\n sha256 = \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.5.0/download\"],\n strip_prefix = \"heck-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hermit-abi-0.5.2\",\n sha256 = \"fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hermit-abi/0.5.2/download\"],\n strip_prefix = \"hermit-abi-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hermit-abi-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hex-0.4.3\",\n sha256 = \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hex/0.4.3/download\"],\n strip_prefix = \"hex-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hex-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hkdf-0.12.4\",\n sha256 = \"7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hkdf/0.12.4/download\"],\n strip_prefix = \"hkdf-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hkdf-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hmac-0.12.1\",\n sha256 = \"6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hmac/0.12.1/download\"],\n strip_prefix = \"hmac-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hmac-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__home-0.5.12\",\n sha256 = \"cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/home/0.5.12/download\"],\n strip_prefix = \"home-0.5.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.home-0.5.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hostname-0.3.1\",\n sha256 = \"3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hostname/0.3.1/download\"],\n strip_prefix = \"hostname-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hostname-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hpke-0.11.0\",\n sha256 = \"e04a5933a381bb81f00b083fce6b4528e16d735dbeecbb2bdb45e0dbbf3f7e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hpke/0.11.0/download\"],\n strip_prefix = \"hpke-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hpke-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-1.4.0\",\n sha256 = \"e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http/1.4.0/download\"],\n strip_prefix = \"http-1.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-1.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-auth-0.1.10\",\n sha256 = \"150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-auth/0.1.10/download\"],\n strip_prefix = \"http-auth-0.1.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-auth-0.1.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-1.0.1\",\n sha256 = \"1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body/1.0.1/download\"],\n strip_prefix = \"http-body-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-util-0.1.3\",\n sha256 = \"b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body-util/0.1.3/download\"],\n strip_prefix = \"http-body-util-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-util-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httparse-1.10.1\",\n sha256 = \"6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httparse/1.10.1/download\"],\n strip_prefix = \"httparse-1.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httparse-1.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httpdate-1.0.3\",\n sha256 = \"df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httpdate/1.0.3/download\"],\n strip_prefix = \"httpdate-1.0.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httpdate-1.0.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-2.3.0\",\n sha256 = \"135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime/2.3.0/download\"],\n strip_prefix = \"humantime-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-serde-1.1.1\",\n sha256 = \"57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime-serde/1.1.1/download\"],\n strip_prefix = \"humantime-serde-1.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-serde-1.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-1.9.0\",\n sha256 = \"6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper/1.9.0/download\"],\n strip_prefix = \"hyper-1.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-1.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-rustls-0.27.9\",\n sha256 = \"33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-rustls/0.27.9/download\"],\n strip_prefix = \"hyper-rustls-0.27.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-rustls-0.27.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-timeout-0.5.2\",\n sha256 = \"2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-timeout/0.5.2/download\"],\n strip_prefix = \"hyper-timeout-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-timeout-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-util-0.1.20\",\n sha256 = \"96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-util/0.1.20/download\"],\n strip_prefix = \"hyper-util-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-util-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-0.1.65\",\n sha256 = \"e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone/0.1.65/download\"],\n strip_prefix = \"iana-time-zone-0.1.65\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-0.1.65.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-haiku-0.1.2\",\n sha256 = \"f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download\"],\n strip_prefix = \"iana-time-zone-haiku-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-haiku-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_collections-2.2.0\",\n sha256 = \"2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_collections/2.2.0/download\"],\n strip_prefix = \"icu_collections-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_collections-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_locale_core-2.2.0\",\n sha256 = \"92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_locale_core/2.2.0/download\"],\n strip_prefix = \"icu_locale_core-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_locale_core-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer-2.2.0\",\n sha256 = \"c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer/2.2.0/download\"],\n strip_prefix = \"icu_normalizer-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer_data-2.2.0\",\n sha256 = \"da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer_data/2.2.0/download\"],\n strip_prefix = \"icu_normalizer_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties-2.2.0\",\n sha256 = \"bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties/2.2.0/download\"],\n strip_prefix = \"icu_properties-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties_data-2.2.0\",\n sha256 = \"8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties_data/2.2.0/download\"],\n strip_prefix = \"icu_properties_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_provider-2.2.0\",\n sha256 = \"139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_provider/2.2.0/download\"],\n strip_prefix = \"icu_provider-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_provider-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__id-arena-2.3.0\",\n sha256 = \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/id-arena/2.3.0/download\"],\n strip_prefix = \"id-arena-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.id-arena-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ident_case-1.0.1\",\n sha256 = \"b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ident_case/1.0.1/download\"],\n strip_prefix = \"ident_case-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ident_case-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna-1.1.0\",\n sha256 = \"3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna/1.1.0/download\"],\n strip_prefix = \"idna-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna_adapter-1.2.1\",\n sha256 = \"3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna_adapter/1.2.1/download\"],\n strip_prefix = \"idna_adapter-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna_adapter-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-nostd-0.4.0\",\n sha256 = \"8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap-nostd/0.4.0/download\"],\n strip_prefix = \"indexmap-nostd-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-nostd-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indicatif-0.17.11\",\n sha256 = \"183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indicatif/0.17.11/download\"],\n strip_prefix = \"indicatif-0.17.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indicatif-0.17.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inferno-0.11.21\",\n sha256 = \"232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inferno/0.11.21/download\"],\n strip_prefix = \"inferno-0.11.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inferno-0.11.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-extras-0.18.4\",\n sha256 = \"2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-extras/0.18.4/download\"],\n strip_prefix = \"io-extras-0.18.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-extras-0.18.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-lifetimes-2.0.4\",\n sha256 = \"06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-lifetimes/2.0.4/download\"],\n strip_prefix = \"io-lifetimes-2.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-lifetimes-2.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ipnet-2.12.0\",\n sha256 = \"d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ipnet/2.12.0/download\"],\n strip_prefix = \"ipnet-2.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ipnet-2.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iri-string-0.7.12\",\n sha256 = \"25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iri-string/0.7.12/download\"],\n strip_prefix = \"iri-string-0.7.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iri-string-0.7.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is-terminal-0.4.17\",\n sha256 = \"3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is-terminal/0.4.17/download\"],\n strip_prefix = \"is-terminal-0.4.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is-terminal-0.4.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is_terminal_polyfill-1.70.2\",\n sha256 = \"a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is_terminal_polyfill/1.70.2/download\"],\n strip_prefix = \"is_terminal_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is_terminal_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.10.5\",\n sha256 = \"b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.10.5/download\"],\n strip_prefix = \"itertools-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.12.1\",\n sha256 = \"ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.12.1/download\"],\n strip_prefix = \"itertools-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.13.0\",\n sha256 = \"413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.13.0/download\"],\n strip_prefix = \"itertools-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.14.0\",\n sha256 = \"2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.14.0/download\"],\n strip_prefix = \"itertools-0.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itoa-1.0.18\",\n sha256 = \"8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itoa/1.0.18/download\"],\n strip_prefix = \"itoa-1.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itoa-1.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-0.2.23\",\n sha256 = \"1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff/0.2.23/download\"],\n strip_prefix = \"jiff-0.2.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-0.2.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-static-0.2.23\",\n sha256 = \"2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff-static/0.2.23/download\"],\n strip_prefix = \"jiff-static-0.2.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-static-0.2.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-0.21.1\",\n sha256 = \"1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni/0.21.1/download\"],\n strip_prefix = \"jni-0.21.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-0.21.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.3.1\",\n sha256 = \"41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.3.1/download\"],\n strip_prefix = \"jni-sys-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.4.1\",\n sha256 = \"c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.4.1/download\"],\n strip_prefix = \"jni-sys-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-macros-0.4.1\",\n sha256 = \"38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys-macros/0.4.1/download\"],\n strip_prefix = \"jni-sys-macros-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-macros-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jobserver-0.1.34\",\n sha256 = \"9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jobserver/0.1.34/download\"],\n strip_prefix = \"jobserver-0.1.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jobserver-0.1.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__js-sys-0.3.95\",\n sha256 = \"2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/js-sys/0.3.95/download\"],\n strip_prefix = \"js-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.js-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jwt-0.16.0\",\n sha256 = \"6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jwt/0.16.0/download\"],\n strip_prefix = \"jwt-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jwt-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__keccak-0.1.6\",\n sha256 = \"cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/keccak/0.1.6/download\"],\n strip_prefix = \"keccak-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.keccak-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst-0.2.20\",\n sha256 = \"128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst/0.2.20/download\"],\n strip_prefix = \"konst-0.2.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst-0.2.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst_macro_rules-0.2.19\",\n sha256 = \"a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst_macro_rules/0.2.19/download\"],\n strip_prefix = \"konst_macro_rules-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst_macro_rules-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lazy_static-1.5.0\",\n sha256 = \"bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lazy_static/1.5.0/download\"],\n strip_prefix = \"lazy_static-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lazy_static-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128-0.2.6\",\n sha256 = \"6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128/0.2.6/download\"],\n strip_prefix = \"leb128-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128fmt-0.1.0\",\n sha256 = \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128fmt/0.1.0/download\"],\n strip_prefix = \"leb128fmt-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128fmt-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libm-0.2.16\",\n sha256 = \"b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libm/0.2.16/download\"],\n strip_prefix = \"libm-0.2.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libm-0.2.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libredox-0.1.16\",\n sha256 = \"e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libredox/0.1.16/download\"],\n strip_prefix = \"libredox-0.1.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libredox-0.1.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libyaml-rs-0.3.0\",\n sha256 = \"2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libyaml-rs/0.3.0/download\"],\n strip_prefix = \"libyaml-rs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libyaml-rs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linked_list_allocator-0.10.5\",\n sha256 = \"9afa463f5405ee81cdb9cc2baf37e08ec7e4c8209442b5d72c04cfb2cd6e6286\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linked_list_allocator/0.10.5/download\"],\n strip_prefix = \"linked_list_allocator-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linked_list_allocator-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.12.1\",\n sha256 = \"32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.12.1/download\"],\n strip_prefix = \"linux-raw-sys-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.4.15\",\n sha256 = \"d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.4.15/download\"],\n strip_prefix = \"linux-raw-sys-0.4.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.4.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__litemap-0.8.2\",\n sha256 = \"92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/litemap/0.8.2/download\"],\n strip_prefix = \"litemap-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.litemap-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lock_api-0.4.14\",\n sha256 = \"224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lock_api/0.4.14/download\"],\n strip_prefix = \"lock_api-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lock_api-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__log-0.4.29\",\n sha256 = \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/log/0.4.29/download\"],\n strip_prefix = \"log-0.4.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.log-0.4.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lru-slab-0.1.2\",\n sha256 = \"112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lru-slab/0.1.2/download\"],\n strip_prefix = \"lru-slab-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lru-slab-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lzma-sys-0.1.20\",\n sha256 = \"5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lzma-sys/0.1.20/download\"],\n strip_prefix = \"lzma-sys-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lzma-sys-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mach2-0.4.3\",\n sha256 = \"d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mach2/0.4.3/download\"],\n strip_prefix = \"mach2-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mach2-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maplit-1.0.2\",\n sha256 = \"3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maplit/1.0.2/download\"],\n strip_prefix = \"maplit-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maplit-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__match_cfg-0.1.0\",\n sha256 = \"ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/match_cfg/0.1.0/download\"],\n strip_prefix = \"match_cfg-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.match_cfg-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.7.3\",\n sha256 = \"0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.7.3/download\"],\n strip_prefix = \"matchit-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.8.4\",\n sha256 = \"47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.8.4/download\"],\n strip_prefix = \"matchit-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maybe-owned-0.3.4\",\n sha256 = \"4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maybe-owned/0.3.4/download\"],\n strip_prefix = \"maybe-owned-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maybe-owned-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memchr-2.8.0\",\n sha256 = \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memchr/2.8.0/download\"],\n strip_prefix = \"memchr-2.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memchr-2.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memfd-0.6.5\",\n sha256 = \"ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memfd/0.6.5/download\"],\n strip_prefix = \"memfd-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memfd-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memmap2-0.9.10\",\n sha256 = \"714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memmap2/0.9.10/download\"],\n strip_prefix = \"memmap2-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memmap2-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memoffset-0.9.1\",\n sha256 = \"488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memoffset/0.9.1/download\"],\n strip_prefix = \"memoffset-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memoffset-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mime-0.3.17\",\n sha256 = \"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mime/0.3.17/download\"],\n strip_prefix = \"mime-0.3.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mime-0.3.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__minimal-lexical-0.2.1\",\n sha256 = \"68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/minimal-lexical/0.2.1/download\"],\n strip_prefix = \"minimal-lexical-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.minimal-lexical-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__miniz_oxide-0.8.9\",\n sha256 = \"1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/miniz_oxide/0.8.9/download\"],\n strip_prefix = \"miniz_oxide-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.miniz_oxide-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mio-1.2.0\",\n sha256 = \"50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mio/1.2.0/download\"],\n strip_prefix = \"mio-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mio-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall-0.13.1\",\n sha256 = \"39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall/0.13.1/download\"],\n strip_prefix = \"mockall-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall_derive-0.13.1\",\n sha256 = \"25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall_derive/0.13.1/download\"],\n strip_prefix = \"mockall_derive-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall_derive-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__multimap-0.10.1\",\n sha256 = \"1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/multimap/0.10.1/download\"],\n strip_prefix = \"multimap-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.multimap-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-core-0.7.0\",\n sha256 = \"72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-core/0.7.0/download\"],\n strip_prefix = \"netlink-packet-core-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-core-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-route-0.19.0\",\n sha256 = \"74c171cd77b4ee8c7708da746ce392440cb7bcf618d122ec9ecc607b12938bf4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-route/0.19.0/download\"],\n strip_prefix = \"netlink-packet-route-0.19.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-route-0.19.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-utils-0.5.2\",\n sha256 = \"0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-utils/0.5.2/download\"],\n strip_prefix = \"netlink-packet-utils-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-utils-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-proto-0.11.5\",\n sha256 = \"72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-proto/0.11.5/download\"],\n strip_prefix = \"netlink-proto-0.11.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-proto-0.11.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-sys-0.8.8\",\n sha256 = \"cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-sys/0.8.8/download\"],\n strip_prefix = \"netlink-sys-0.8.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-sys-0.8.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.26.4\",\n sha256 = \"598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.26.4/download\"],\n strip_prefix = \"nix-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.27.1\",\n sha256 = \"2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.27.1/download\"],\n strip_prefix = \"nix-0.27.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.27.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.31.2\",\n sha256 = \"5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.31.2/download\"],\n strip_prefix = \"nix-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-7.1.3\",\n sha256 = \"d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/7.1.3/download\"],\n strip_prefix = \"nom-7.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-7.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-8.0.0\",\n sha256 = \"df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/8.0.0/download\"],\n strip_prefix = \"nom-8.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-8.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nu-ansi-term-0.50.3\",\n sha256 = \"7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nu-ansi-term/0.50.3/download\"],\n strip_prefix = \"nu-ansi-term-0.50.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nu-ansi-term-0.50.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-0.4.6\",\n sha256 = \"a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint/0.4.6/download\"],\n strip_prefix = \"num-bigint-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-dig-0.8.6\",\n sha256 = \"e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint-dig/0.8.6/download\"],\n strip_prefix = \"num-bigint-dig-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-dig-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-conv-0.1.0\",\n sha256 = \"51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-conv/0.1.0/download\"],\n strip_prefix = \"num-conv-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-conv-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-format-0.4.4\",\n sha256 = \"a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-format/0.4.4/download\"],\n strip_prefix = \"num-format-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-format-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-integer-0.1.46\",\n sha256 = \"7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-integer/0.1.46/download\"],\n strip_prefix = \"num-integer-0.1.46\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-integer-0.1.46.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-iter-0.1.45\",\n sha256 = \"1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-iter/0.1.45/download\"],\n strip_prefix = \"num-iter-0.1.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-iter-0.1.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-traits-0.2.19\",\n sha256 = \"071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-traits/0.2.19/download\"],\n strip_prefix = \"num-traits-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-traits-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num_threads-0.1.7\",\n sha256 = \"5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num_threads/0.1.7/download\"],\n strip_prefix = \"num_threads-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num_threads-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__number_prefix-0.4.0\",\n sha256 = \"830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/number_prefix/0.4.0/download\"],\n strip_prefix = \"number_prefix-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.number_prefix-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.36.7\",\n sha256 = \"62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.36.7/download\"],\n strip_prefix = \"object-0.36.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.36.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.37.3\",\n sha256 = \"ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.37.3/download\"],\n strip_prefix = \"object-0.37.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.37.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-client-0.15.0\",\n sha256 = \"9b74df13319e08bc386d333d3dc289c774c88cc543cae31f5347db07b5ec2172\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-client/0.15.0/download\"],\n strip_prefix = \"oci-client-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-client-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-spec-0.8.4\",\n sha256 = \"fc3da52b83ce3258fbf29f66ac784b279453c2ac3c22c5805371b921ede0d308\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-spec/0.8.4/download\"],\n strip_prefix = \"oci-spec-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-spec-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oid-registry-0.7.1\",\n sha256 = \"a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oid-registry/0.7.1/download\"],\n strip_prefix = \"oid-registry-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oid-registry-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__olpc-cjson-0.1.4\",\n sha256 = \"696183c9b5fe81a7715d074fd632e8bd46f4ccc0231a3ed7fc580a80de5f7083\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/olpc-cjson/0.1.4/download\"],\n strip_prefix = \"olpc-cjson-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.olpc-cjson-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell-1.21.4\",\n sha256 = \"9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell/1.21.4/download\"],\n strip_prefix = \"once_cell-1.21.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell-1.21.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell_polyfill-1.70.2\",\n sha256 = \"384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell_polyfill/1.70.2/download\"],\n strip_prefix = \"once_cell_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oorandom-11.1.5\",\n sha256 = \"d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oorandom/11.1.5/download\"],\n strip_prefix = \"oorandom-11.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oorandom-11.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-0.10.78\",\n sha256 = \"f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl/0.10.78/download\"],\n strip_prefix = \"openssl-0.10.78\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-0.10.78.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-macros-0.1.1\",\n sha256 = \"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-macros/0.1.1/download\"],\n strip_prefix = \"openssl-macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-probe-0.2.1\",\n sha256 = \"7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-probe/0.2.1/download\"],\n strip_prefix = \"openssl-probe-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-probe-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-sys-0.9.114\",\n sha256 = \"13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-sys/0.9.114/download\"],\n strip_prefix = \"openssl-sys-0.9.114\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-sys-0.9.114.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-0.31.0\",\n sha256 = \"b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry/0.31.0/download\"],\n strip_prefix = \"opentelemetry-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\",\n sha256 = \"ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-appender-tracing/0.31.1/download\"],\n strip_prefix = \"opentelemetry-appender-tracing-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-appender-tracing-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-http-0.31.0\",\n sha256 = \"d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-http/0.31.0/download\"],\n strip_prefix = \"opentelemetry-http-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-http-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-otlp-0.31.1\",\n sha256 = \"1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-otlp/0.31.1/download\"],\n strip_prefix = \"opentelemetry-otlp-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-otlp-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-proto-0.31.0\",\n sha256 = \"a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-proto/0.31.0/download\"],\n strip_prefix = \"opentelemetry-proto-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-proto-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry_sdk-0.31.0\",\n sha256 = \"e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry_sdk/0.31.0/download\"],\n strip_prefix = \"opentelemetry_sdk-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry_sdk-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__os_pipe-1.2.3\",\n sha256 = \"7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/os_pipe/1.2.3/download\"],\n strip_prefix = \"os_pipe-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.os_pipe-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros-0.18.5\",\n sha256 = \"1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros/0.18.5/download\"],\n strip_prefix = \"ouroboros-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros_macro-0.18.5\",\n sha256 = \"3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros_macro/0.18.5/download\"],\n strip_prefix = \"ouroboros_macro-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros_macro-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p256-0.13.2\",\n sha256 = \"c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p256/0.13.2/download\"],\n strip_prefix = \"p256-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p256-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p384-0.13.1\",\n sha256 = \"fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p384/0.13.1/download\"],\n strip_prefix = \"p384-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p384-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot-0.12.5\",\n sha256 = \"93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot/0.12.5/download\"],\n strip_prefix = \"parking_lot-0.12.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot-0.12.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot_core-0.9.12\",\n sha256 = \"2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot_core/0.9.12/download\"],\n strip_prefix = \"parking_lot_core-0.9.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot_core-0.9.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__paste-1.0.15\",\n sha256 = \"57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/paste/1.0.15/download\"],\n strip_prefix = \"paste-1.0.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.paste-1.0.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-3.0.6\",\n sha256 = \"1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem/3.0.6/download\"],\n strip_prefix = \"pem-3.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-3.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-rfc7468-0.7.0\",\n sha256 = \"88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem-rfc7468/0.7.0/download\"],\n strip_prefix = \"pem-rfc7468-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-rfc7468-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__percent-encoding-2.3.2\",\n sha256 = \"9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/percent-encoding/2.3.2/download\"],\n strip_prefix = \"percent-encoding-2.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.percent-encoding-2.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.6.5\",\n sha256 = \"b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.6.5/download\"],\n strip_prefix = \"petgraph-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.8.3\",\n sha256 = \"8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.8.3/download\"],\n strip_prefix = \"petgraph-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-1.1.11\",\n sha256 = \"f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project/1.1.11/download\"],\n strip_prefix = \"pin-project-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-internal-1.1.11\",\n sha256 = \"d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-internal/1.1.11/download\"],\n strip_prefix = \"pin-project-internal-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-internal-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-lite-0.2.17\",\n sha256 = \"a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-lite/0.2.17/download\"],\n strip_prefix = \"pin-project-lite-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-lite-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs1-0.7.5\",\n sha256 = \"c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs1/0.7.5/download\"],\n strip_prefix = \"pkcs1-0.7.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs1-0.7.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs8-0.10.2\",\n sha256 = \"f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs8/0.10.2/download\"],\n strip_prefix = \"pkcs8-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs8-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkg-config-0.3.33\",\n sha256 = \"19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkg-config/0.3.33/download\"],\n strip_prefix = \"pkg-config-0.3.33\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkg-config-0.3.33.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plain-0.2.3\",\n sha256 = \"b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plain/0.2.3/download\"],\n strip_prefix = \"plain-0.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plain-0.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-0.3.7\",\n sha256 = \"5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters/0.3.7/download\"],\n strip_prefix = \"plotters-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-backend-0.3.7\",\n sha256 = \"df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-backend/0.3.7/download\"],\n strip_prefix = \"plotters-backend-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-backend-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-svg-0.3.7\",\n sha256 = \"51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-svg/0.3.7/download\"],\n strip_prefix = \"plotters-svg-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-svg-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__poly1305-0.8.0\",\n sha256 = \"8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/poly1305/0.8.0/download\"],\n strip_prefix = \"poly1305-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.poly1305-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__port_check-0.1.5\",\n sha256 = \"f6519412c9e0d4be579b9f0618364d19cb434b324fc6ddb1b27b1e682c7105ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/port_check/0.1.5/download\"],\n strip_prefix = \"port_check-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.port_check-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-1.13.1\",\n sha256 = \"c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic/1.13.1/download\"],\n strip_prefix = \"portable-atomic-1.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-1.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-util-0.2.7\",\n sha256 = \"c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic-util/0.2.7/download\"],\n strip_prefix = \"portable-atomic-util-0.2.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-util-0.2.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portpicker-0.1.1\",\n sha256 = \"be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portpicker/0.1.1/download\"],\n strip_prefix = \"portpicker-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portpicker-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__postcard-1.1.3\",\n sha256 = \"6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/postcard/1.1.3/download\"],\n strip_prefix = \"postcard-1.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.postcard-1.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__potential_utf-0.1.5\",\n sha256 = \"0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/potential_utf/0.1.5/download\"],\n strip_prefix = \"potential_utf-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.potential_utf-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__powerfmt-0.2.0\",\n sha256 = \"439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/powerfmt/0.2.0/download\"],\n strip_prefix = \"powerfmt-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.powerfmt-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pprof-0.15.0\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/pprof:pprof-prost13.patch\",\n ],\n sha256 = \"38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pprof/0.15.0/download\"],\n strip_prefix = \"pprof-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pprof-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-3.1.4\",\n sha256 = \"ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates/3.1.4/download\"],\n strip_prefix = \"predicates-3.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-3.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-core-1.0.10\",\n sha256 = \"cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-core/1.0.10/download\"],\n strip_prefix = \"predicates-core-1.0.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-core-1.0.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-tree-1.0.13\",\n sha256 = \"d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-tree/1.0.13/download\"],\n strip_prefix = \"predicates-tree-1.0.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-tree-1.0.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prettyplease-0.2.37\",\n sha256 = \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prettyplease/0.2.37/download\"],\n strip_prefix = \"prettyplease-0.2.37\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prettyplease-0.2.37.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__primeorder-0.13.6\",\n sha256 = \"353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/primeorder/0.13.6/download\"],\n strip_prefix = \"primeorder-0.13.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.primeorder-0.13.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error-attr2-2.0.0\",\n sha256 = \"96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error-attr2/2.0.0/download\"],\n strip_prefix = \"proc-macro-error-attr2-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error-attr2-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error2-2.0.1\",\n sha256 = \"11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error2/2.0.1/download\"],\n strip_prefix = \"proc-macro-error2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-diagnostics-0.10.1\",\n sha256 = \"af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2-diagnostics/0.10.1/download\"],\n strip_prefix = \"proc-macro2-diagnostics-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-diagnostics-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-0.16.0\",\n sha256 = \"731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs/0.16.0/download\"],\n strip_prefix = \"procfs-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-core-0.16.0\",\n sha256 = \"2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs-core/0.16.0/download\"],\n strip_prefix = \"procfs-core-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-core-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proptest-1.11.0\",\n sha256 = \"4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proptest/1.11.0/download\"],\n strip_prefix = \"proptest-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proptest-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.12.6\",\n sha256 = \"deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.12.6/download\"],\n strip_prefix = \"prost-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.14.3\",\n sha256 = \"d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.14.3/download\"],\n strip_prefix = \"prost-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.12.6\",\n sha256 = \"22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.12.6/download\"],\n strip_prefix = \"prost-build-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.14.3\",\n sha256 = \"343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.14.3/download\"],\n strip_prefix = \"prost-build-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.12.6\",\n sha256 = \"81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.12.6/download\"],\n strip_prefix = \"prost-derive-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.14.3\",\n sha256 = \"27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.14.3/download\"],\n strip_prefix = \"prost-derive-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.12.6\",\n sha256 = \"9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.12.6/download\"],\n strip_prefix = \"prost-types-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.14.3\",\n sha256 = \"8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.14.3/download\"],\n strip_prefix = \"prost-types-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__psm-0.1.31\",\n sha256 = \"645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/psm/0.1.31/download\"],\n strip_prefix = \"psm-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.psm-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-0.13.3\",\n sha256 = \"7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark/0.13.3/download\"],\n strip_prefix = \"pulldown-cmark-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-to-cmark-22.0.0\",\n sha256 = \"50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark-to-cmark/22.0.0/download\"],\n strip_prefix = \"pulldown-cmark-to-cmark-22.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-to-cmark-22.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulley-interpreter-32.0.1\",\n sha256 = \"210168e10de0449154698532069f4b7164fda92ba8c7ed382f58241658de3430\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulley-interpreter/32.0.1/download\"],\n strip_prefix = \"pulley-interpreter-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulley-interpreter-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-error-1.2.3\",\n sha256 = \"a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-error/1.2.3/download\"],\n strip_prefix = \"quick-error-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-error-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-xml-0.26.0\",\n sha256 = \"7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-xml/0.26.0/download\"],\n strip_prefix = \"quick-xml-0.26.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-xml-0.26.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-0.11.9\",\n sha256 = \"b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn/0.11.9/download\"],\n strip_prefix = \"quinn-0.11.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-0.11.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-proto-0.11.14\",\n sha256 = \"434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-proto/0.11.14/download\"],\n strip_prefix = \"quinn-proto-0.11.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-proto-0.11.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-udp-0.5.14\",\n sha256 = \"addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-udp/0.5.14/download\"],\n strip_prefix = \"quinn-udp-0.5.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-udp-0.5.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-6.0.0\",\n sha256 = \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/6.0.0/download\"],\n strip_prefix = \"r-efi-6.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-6.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__radium-0.7.0\",\n sha256 = \"dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/radium/0.7.0/download\"],\n strip_prefix = \"radium-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.radium-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.8.6\",\n sha256 = \"5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.8.6/download\"],\n strip_prefix = \"rand-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.3.1\",\n sha256 = \"e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.3.1/download\"],\n strip_prefix = \"rand_chacha-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_xorshift-0.4.0\",\n sha256 = \"513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_xorshift/0.4.0/download\"],\n strip_prefix = \"rand_xorshift-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_xorshift-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__raw-cpuid-10.7.0\",\n sha256 = \"6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/raw-cpuid/10.7.0/download\"],\n strip_prefix = \"raw-cpuid-10.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.raw-cpuid-10.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-1.12.0\",\n sha256 = \"fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon/1.12.0/download\"],\n strip_prefix = \"rayon-1.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-1.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-core-1.13.0\",\n sha256 = \"22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon-core/1.13.0/download\"],\n strip_prefix = \"rayon-core-1.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-core-1.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rcgen-0.13.2\",\n sha256 = \"75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rcgen/0.13.2/download\"],\n strip_prefix = \"rcgen-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rcgen-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.5.18\",\n sha256 = \"ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.5.18/download\"],\n strip_prefix = \"redox_syscall-0.5.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.5.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.7.4\",\n sha256 = \"f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.7.4/download\"],\n strip_prefix = \"redox_syscall-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_users-0.4.6\",\n sha256 = \"ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_users/0.4.6/download\"],\n strip_prefix = \"redox_users-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_users-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-1.0.25\",\n sha256 = \"f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast/1.0.25/download\"],\n strip_prefix = \"ref-cast-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-impl-1.0.25\",\n sha256 = \"b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast-impl/1.0.25/download\"],\n strip_prefix = \"ref-cast-impl-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-impl-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regalloc2-0.11.2\",\n sha256 = \"dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regalloc2/0.11.2/download\"],\n strip_prefix = \"regalloc2-0.11.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regalloc2-0.11.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-1.12.3\",\n sha256 = \"e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex/1.12.3/download\"],\n strip_prefix = \"regex-1.12.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-1.12.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-automata-0.4.14\",\n sha256 = \"6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-automata/0.4.14/download\"],\n strip_prefix = \"regex-automata-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-automata-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-lite-0.1.9\",\n sha256 = \"cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-lite/0.1.9/download\"],\n strip_prefix = \"regex-lite-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-lite-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-syntax-0.8.10\",\n sha256 = \"dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-syntax/0.8.10/download\"],\n strip_prefix = \"regex-syntax-0.8.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-syntax-0.8.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__reqwest-0.12.28\",\n sha256 = \"eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/reqwest/0.12.28/download\"],\n strip_prefix = \"reqwest-0.12.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.reqwest-0.12.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rfc6979-0.4.0\",\n sha256 = \"f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rfc6979/0.4.0/download\"],\n strip_prefix = \"rfc6979-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rfc6979-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rgb-0.8.53\",\n sha256 = \"47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rgb/0.8.53/download\"],\n strip_prefix = \"rgb-0.8.53\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rgb-0.8.53.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ring-0.17.14\",\n sha256 = \"a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ring/0.17.14/download\"],\n strip_prefix = \"ring-0.17.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ring-0.17.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rlsf-0.2.2\",\n sha256 = \"1646a59a9734b8b7a0ac51689388a60fe1625d4b956348e9de07591a1478457a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rlsf/0.2.2/download\"],\n strip_prefix = \"rlsf-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rlsf-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-0.8.5\",\n sha256 = \"e5947688160b56fb6c827e3c20a72c90392a1d7e9dec74749197aa1780ac42ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp/0.8.5/download\"],\n strip_prefix = \"rmcp-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-macros-0.8.5\",\n sha256 = \"01263441d3f8635c628e33856c468b96ebbce1af2d3699ea712ca71432d4ee7a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp-macros/0.8.5/download\"],\n strip_prefix = \"rmcp-macros-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-macros-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rpassword-7.4.0\",\n sha256 = \"66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rpassword/7.4.0/download\"],\n strip_prefix = \"rpassword-7.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rpassword-7.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rs_merkle-1.5.0\",\n sha256 = \"bb09b49230ba22e8c676e7b75dfe2887dea8121f18b530ae0ba519ce442d2b21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rs_merkle/1.5.0/download\"],\n strip_prefix = \"rs_merkle-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rs_merkle-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rsa-0.9.10\",\n sha256 = \"b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rsa/0.9.10/download\"],\n strip_prefix = \"rsa-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rsa-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtnetlink-0.14.1\",\n sha256 = \"b684475344d8df1859ddb2d395dd3dac4f8f3422a1aa0725993cb375fc5caba5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtnetlink/0.14.1/download\"],\n strip_prefix = \"rtnetlink-0.14.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtnetlink-0.14.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtoolbox-0.0.5\",\n sha256 = \"50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtoolbox/0.0.5/download\"],\n strip_prefix = \"rtoolbox-0.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtoolbox-0.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-demangle-0.1.27\",\n sha256 = \"b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-demangle/0.1.27/download\"],\n strip_prefix = \"rustc-demangle-0.1.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-demangle-0.1.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-hash-2.1.2\",\n sha256 = \"94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-hash/2.1.2/download\"],\n strip_prefix = \"rustc-hash-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-hash-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc_version-0.4.1\",\n sha256 = \"cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc_version/0.4.1/download\"],\n strip_prefix = \"rustc_version-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc_version-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusticata-macros-4.1.0\",\n sha256 = \"faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusticata-macros/4.1.0/download\"],\n strip_prefix = \"rusticata-macros-4.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusticata-macros-4.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-0.38.44\",\n sha256 = \"fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/0.38.44/download\"],\n strip_prefix = \"rustix-0.38.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-0.38.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-1.1.4\",\n sha256 = \"b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/1.1.4/download\"],\n strip_prefix = \"rustix-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-linux-procfs-0.1.1\",\n sha256 = \"2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix-linux-procfs/0.1.1/download\"],\n strip_prefix = \"rustix-linux-procfs-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-linux-procfs-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.22.4\",\n sha256 = \"bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.22.4/download\"],\n strip_prefix = \"rustls-0.22.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.22.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.23.38\",\n sha256 = \"69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.23.38/download\"],\n strip_prefix = \"rustls-0.23.38\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.23.38.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-native-certs-0.8.3\",\n sha256 = \"612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-native-certs/0.8.3/download\"],\n strip_prefix = \"rustls-native-certs-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-native-certs-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pemfile-2.2.0\",\n sha256 = \"dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pemfile/2.2.0/download\"],\n strip_prefix = \"rustls-pemfile-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pemfile-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pki-types-1.14.0\",\n sha256 = \"be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pki-types/1.14.0/download\"],\n strip_prefix = \"rustls-pki-types-1.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pki-types-1.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.102.8\",\n sha256 = \"64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.102.8/download\"],\n strip_prefix = \"rustls-webpki-0.102.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.102.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.103.13\",\n sha256 = \"61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.103.13/download\"],\n strip_prefix = \"rustls-webpki-0.103.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.103.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustversion-1.0.22\",\n sha256 = \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustversion/1.0.22/download\"],\n strip_prefix = \"rustversion-1.0.22\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustversion-1.0.22.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusty-fork-0.3.1\",\n sha256 = \"cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusty-fork/0.3.1/download\"],\n strip_prefix = \"rusty-fork-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusty-fork-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ryu-1.0.23\",\n sha256 = \"9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ryu/1.0.23/download\"],\n strip_prefix = \"ryu-1.0.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ryu-1.0.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__same-file-1.0.6\",\n sha256 = \"93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/same-file/1.0.6/download\"],\n strip_prefix = \"same-file-1.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.same-file-1.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schannel-0.1.29\",\n sha256 = \"91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schannel/0.1.29/download\"],\n strip_prefix = \"schannel-0.1.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schannel-0.1.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars-1.2.1\",\n sha256 = \"a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars/1.2.1/download\"],\n strip_prefix = \"schemars-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars_derive-1.2.1\",\n sha256 = \"7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars_derive/1.2.1/download\"],\n strip_prefix = \"schemars_derive-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars_derive-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scopeguard-1.2.0\",\n sha256 = \"94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scopeguard/1.2.0/download\"],\n strip_prefix = \"scopeguard-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scopeguard-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll-0.12.0\",\n sha256 = \"6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll/0.12.0/download\"],\n strip_prefix = \"scroll-0.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll-0.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll_derive-0.12.1\",\n sha256 = \"1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll_derive/0.12.1/download\"],\n strip_prefix = \"scroll_derive-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll_derive-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sec1-0.7.3\",\n sha256 = \"d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sec1/0.7.3/download\"],\n strip_prefix = \"sec1-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sec1-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-3.7.0\",\n sha256 = \"b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework/3.7.0/download\"],\n strip_prefix = \"security-framework-3.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-3.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-sys-2.17.0\",\n sha256 = \"6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework-sys/2.17.0/download\"],\n strip_prefix = \"security-framework-sys-2.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-sys-2.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__self_cell-1.2.2\",\n sha256 = \"b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/self_cell/1.2.2/download\"],\n strip_prefix = \"self_cell-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.self_cell-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__semver-1.0.28\",\n sha256 = \"8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/semver/1.0.28/download\"],\n strip_prefix = \"semver-1.0.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.semver-1.0.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive_internals-0.29.1\",\n sha256 = \"18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive_internals/0.29.1/download\"],\n strip_prefix = \"serde_derive_internals-0.29.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive_internals-0.29.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_json-1.0.149\",\n sha256 = \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_json/1.0.149/download\"],\n strip_prefix = \"serde_json-1.0.149\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_json-1.0.149.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_path_to_error-0.1.20\",\n sha256 = \"10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_path_to_error/0.1.20/download\"],\n strip_prefix = \"serde_path_to_error-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_path_to_error-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_spanned-0.6.9\",\n sha256 = \"bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_spanned/0.6.9/download\"],\n strip_prefix = \"serde_spanned-0.6.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_spanned-0.6.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_urlencoded-0.7.1\",\n sha256 = \"d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_urlencoded/0.7.1/download\"],\n strip_prefix = \"serde_urlencoded-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_urlencoded-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha1-0.10.6\",\n sha256 = \"e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha1/0.10.6/download\"],\n strip_prefix = \"sha1-0.10.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha1-0.10.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha2-0.10.9\",\n sha256 = \"a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha2/0.10.9/download\"],\n strip_prefix = \"sha2-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha2-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha3-0.10.9\",\n sha256 = \"77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha3/0.10.9/download\"],\n strip_prefix = \"sha3-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha3-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sharded-slab-0.1.7\",\n sha256 = \"f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sharded-slab/0.1.7/download\"],\n strip_prefix = \"sharded-slab-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sharded-slab-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shellexpand-2.1.2\",\n sha256 = \"7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shellexpand/2.1.2/download\"],\n strip_prefix = \"shellexpand-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shellexpand-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-0.3.18\",\n sha256 = \"d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook/0.3.18/download\"],\n strip_prefix = \"signal-hook-0.3.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-0.3.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-registry-1.4.8\",\n sha256 = \"c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-registry/1.4.8/download\"],\n strip_prefix = \"signal-hook-registry-1.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-registry-1.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-tokio-0.3.1\",\n sha256 = \"213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-tokio/0.3.1/download\"],\n strip_prefix = \"signal-hook-tokio-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-tokio-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signature-2.2.0\",\n sha256 = \"77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signature/2.2.0/download\"],\n strip_prefix = \"signature-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signature-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__simd-adler32-0.3.9\",\n sha256 = \"703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/simd-adler32/0.3.9/download\"],\n strip_prefix = \"simd-adler32-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.simd-adler32-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__slab-0.4.12\",\n sha256 = \"0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/slab/0.4.12/download\"],\n strip_prefix = \"slab-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.slab-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__smallvec-1.15.1\",\n sha256 = \"67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/smallvec/1.15.1/download\"],\n strip_prefix = \"smallvec-1.15.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.smallvec-1.15.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__socket2-0.6.3\",\n sha256 = \"3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/socket2/0.6.3/download\"],\n strip_prefix = \"socket2-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.socket2-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spdx-0.10.9\",\n sha256 = \"c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spdx/0.10.9/download\"],\n strip_prefix = \"spdx-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spdx-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.10.0\",\n sha256 = \"d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.10.0/download\"],\n strip_prefix = \"spin-0.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.9.8\",\n sha256 = \"6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.9.8/download\"],\n strip_prefix = \"spin-0.9.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.9.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.2.5\",\n sha256 = \"5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.2.5/download\"],\n strip_prefix = \"spinning_top-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.3.0\",\n sha256 = \"d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.3.0/download\"],\n strip_prefix = \"spinning_top-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spki-0.7.3\",\n sha256 = \"d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spki/0.7.3/download\"],\n strip_prefix = \"spki-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spki-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sptr-0.3.2\",\n sha256 = \"3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sptr/0.3.2/download\"],\n strip_prefix = \"sptr-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sptr-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sse-stream-0.2.2\",\n sha256 = \"2c5e6deb40826033bd7b11c7ef25ef71193fabd71f680f40dd16538a2704d2f4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sse-stream/0.2.2/download\"],\n strip_prefix = \"sse-stream-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sse-stream-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__stable_deref_trait-1.2.1\",\n sha256 = \"6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/stable_deref_trait/1.2.1/download\"],\n strip_prefix = \"stable_deref_trait-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.stable_deref_trait-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__static_assertions-1.1.0\",\n sha256 = \"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/static_assertions/1.1.0/download\"],\n strip_prefix = \"static_assertions-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.static_assertions-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__str_stack-0.1.0\",\n sha256 = \"9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/str_stack/0.1.0/download\"],\n strip_prefix = \"str_stack-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.str_stack-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strsim-0.11.1\",\n sha256 = \"7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strsim/0.11.1/download\"],\n strip_prefix = \"strsim-0.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strsim-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum-0.27.2\",\n sha256 = \"af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum/0.27.2/download\"],\n strip_prefix = \"strum-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum_macros-0.27.2\",\n sha256 = \"7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum_macros/0.27.2/download\"],\n strip_prefix = \"strum_macros-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum_macros-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__svgbobdoc-0.3.0\",\n sha256 = \"f2c04b93fc15d79b39c63218f15e3fdffaa4c227830686e3b7c5f41244eb3e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/svgbobdoc/0.3.0/download\"],\n strip_prefix = \"svgbobdoc-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.svgbobdoc-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-common-12.18.2\",\n sha256 = \"4bbc8b4f883265fb2207a0d6ce67095f4bd6cf13e5f9183eb8b3e73fa1b2466a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-common/12.18.2/download\"],\n strip_prefix = \"symbolic-common-12.18.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-common-12.18.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-demangle-12.18.2\",\n sha256 = \"8eda470a26ea40eb5cafc35487718e23a2f19153d3a589affb9e8f7fa1aa73b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-demangle/12.18.2/download\"],\n strip_prefix = \"symbolic-demangle-12.18.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-demangle-12.18.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-1.0.109\",\n sha256 = \"72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/1.0.109/download\"],\n strip_prefix = \"syn-1.0.109\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-1.0.109.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sync_wrapper-1.0.2\",\n sha256 = \"0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sync_wrapper/1.0.2/download\"],\n strip_prefix = \"sync_wrapper-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sync_wrapper-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__synstructure-0.13.2\",\n sha256 = \"728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/synstructure/0.13.2/download\"],\n strip_prefix = \"synstructure-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.synstructure-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syslog-6.1.1\",\n sha256 = \"dfc7e95b5b795122fafe6519e27629b5ab4232c73ebb2428f568e82b1a457ad3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syslog/6.1.1/download\"],\n strip_prefix = \"syslog-6.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syslog-6.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-0.7.0\",\n sha256 = \"a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration/0.7.0/download\"],\n strip_prefix = \"system-configuration-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-sys-0.6.0\",\n sha256 = \"8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration-sys/0.6.0/download\"],\n strip_prefix = \"system-configuration-sys-0.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-sys-0.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-interface-0.27.3\",\n sha256 = \"cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-interface/0.27.3/download\"],\n strip_prefix = \"system-interface-0.27.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-interface-0.27.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tap-1.0.1\",\n sha256 = \"55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tap/1.0.1/download\"],\n strip_prefix = \"tap-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tap-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tar-0.4.45\",\n sha256 = \"22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tar/0.4.45/download\"],\n strip_prefix = \"tar-0.4.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tar-0.4.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__target-lexicon-0.13.5\",\n sha256 = \"adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/target-lexicon/0.13.5/download\"],\n strip_prefix = \"target-lexicon-0.13.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.target-lexicon-0.13.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tempfile-3.27.0\",\n sha256 = \"32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tempfile/3.27.0/download\"],\n strip_prefix = \"tempfile-3.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tempfile-3.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termtree-0.5.1\",\n sha256 = \"8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termtree/0.5.1/download\"],\n strip_prefix = \"termtree-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termtree-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-1.0.69\",\n sha256 = \"b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/1.0.69/download\"],\n strip_prefix = \"thiserror-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-2.0.18\",\n sha256 = \"4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/2.0.18/download\"],\n strip_prefix = \"thiserror-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-1.0.69\",\n sha256 = \"4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/1.0.69/download\"],\n strip_prefix = \"thiserror-impl-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-2.0.18\",\n sha256 = \"ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/2.0.18/download\"],\n strip_prefix = \"thiserror-impl-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thread_local-1.1.9\",\n sha256 = \"f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thread_local/1.1.9/download\"],\n strip_prefix = \"thread_local-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thread_local-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemalloc-sys-0.5.4-5.3.0-patched\",\n sha256 = \"9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemalloc-sys/0.5.4+5.3.0-patched/download\"],\n strip_prefix = \"tikv-jemalloc-sys-0.5.4+5.3.0-patched\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemalloc-sys-0.5.4+5.3.0-patched.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemallocator-0.5.4\",\n sha256 = \"965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemallocator/0.5.4/download\"],\n strip_prefix = \"tikv-jemallocator-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemallocator-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-0.3.36\",\n sha256 = \"5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time/0.3.36/download\"],\n strip_prefix = \"time-0.3.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-0.3.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-core-0.1.2\",\n sha256 = \"ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-core/0.1.2/download\"],\n strip_prefix = \"time-core-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-core-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-macros-0.2.18\",\n sha256 = \"3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-macros/0.2.18/download\"],\n strip_prefix = \"time-macros-0.2.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-macros-0.2.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinystr-0.8.3\",\n sha256 = \"c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinystr/0.8.3/download\"],\n strip_prefix = \"tinystr-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinystr-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinytemplate-1.2.1\",\n sha256 = \"be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinytemplate/1.2.1/download\"],\n strip_prefix = \"tinytemplate-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinytemplate-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec-1.11.0\",\n sha256 = \"3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec/1.11.0/download\"],\n strip_prefix = \"tinyvec-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec_macros-0.1.1\",\n sha256 = \"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec_macros/0.1.1/download\"],\n strip_prefix = \"tinyvec_macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec_macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-1.52.1\",\n sha256 = \"b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio/1.52.1/download\"],\n strip_prefix = \"tokio-1.52.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-1.52.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-macros-2.7.0\",\n sha256 = \"385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-macros/2.7.0/download\"],\n strip_prefix = \"tokio-macros-2.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-macros-2.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.25.0\",\n sha256 = \"775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.25.0/download\"],\n strip_prefix = \"tokio-rustls-0.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.26.4\",\n sha256 = \"1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.26.4/download\"],\n strip_prefix = \"tokio-rustls-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-stream-0.1.18\",\n sha256 = \"32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-stream/0.1.18/download\"],\n strip_prefix = \"tokio-stream-0.1.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-stream-0.1.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-tungstenite-0.27.0\",\n sha256 = \"489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-tungstenite/0.27.0/download\"],\n strip_prefix = \"tokio-tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-util-0.7.18\",\n sha256 = \"9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-util/0.7.18/download\"],\n strip_prefix = \"tokio-util-0.7.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-util-0.7.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-vsock-0.7.2\",\n sha256 = \"8b319ef9394889dab2e1b4f0085b45ba11d0c79dc9d1a9d1afc057d009d0f1c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-vsock/0.7.2/download\"],\n strip_prefix = \"tokio-vsock-0.7.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-vsock-0.7.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml-0.8.23\",\n sha256 = \"dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml/0.8.23/download\"],\n strip_prefix = \"toml-0.8.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml-0.8.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_datetime-0.6.11\",\n sha256 = \"22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_datetime/0.6.11/download\"],\n strip_prefix = \"toml_datetime-0.6.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_datetime-0.6.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_edit-0.22.27\",\n sha256 = \"41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_edit/0.22.27/download\"],\n strip_prefix = \"toml_edit-0.22.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_edit-0.22.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_write-0.1.2\",\n sha256 = \"5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_write/0.1.2/download\"],\n strip_prefix = \"toml_write-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_write-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-0.14.5\",\n sha256 = \"fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic/0.14.5/download\"],\n strip_prefix = \"tonic-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-build-0.14.5\",\n sha256 = \"1882ac3bf5ef12877d7ed57aad87e75154c11931c2ba7e6cde5e22d63522c734\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-build/0.14.5/download\"],\n strip_prefix = \"tonic-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-0.14.5\",\n sha256 = \"a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost/0.14.5/download\"],\n strip_prefix = \"tonic-prost-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-build-0.14.5\",\n sha256 = \"f3144df636917574672e93d0f56d7edec49f90305749c668df5101751bb8f95a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost-build/0.14.5/download\"],\n strip_prefix = \"tonic-prost-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.4.13\",\n sha256 = \"b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.4.13/download\"],\n strip_prefix = \"tower-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.5.3\",\n sha256 = \"ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.5.3/download\"],\n strip_prefix = \"tower-0.5.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.5.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-http-0.6.8\",\n sha256 = \"d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-http/0.6.8/download\"],\n strip_prefix = \"tower-http-0.6.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-http-0.6.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-layer-0.3.3\",\n sha256 = \"121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-layer/0.3.3/download\"],\n strip_prefix = \"tower-layer-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-layer-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-service-0.3.3\",\n sha256 = \"8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-service/0.3.3/download\"],\n strip_prefix = \"tower-service-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-service-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-0.1.44\",\n sha256 = \"63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing/0.1.44/download\"],\n strip_prefix = \"tracing-0.1.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-0.1.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-attributes-0.1.31\",\n sha256 = \"7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-attributes/0.1.31/download\"],\n strip_prefix = \"tracing-attributes-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-attributes-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-core-0.1.36\",\n sha256 = \"db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-core/0.1.36/download\"],\n strip_prefix = \"tracing-core-0.1.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-core-0.1.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-subscriber-0.3.23\",\n sha256 = \"cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-subscriber/0.3.23/download\"],\n strip_prefix = \"tracing-subscriber-0.3.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-subscriber-0.3.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__trait-variant-0.1.2\",\n sha256 = \"70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/trait-variant/0.1.2/download\"],\n strip_prefix = \"trait-variant-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.trait-variant-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__try-lock-0.2.5\",\n sha256 = \"e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/try-lock/0.2.5/download\"],\n strip_prefix = \"try-lock-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.try-lock-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tungstenite-0.27.0\",\n sha256 = \"eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tungstenite/0.27.0/download\"],\n strip_prefix = \"tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uart_16550-0.3.2\",\n sha256 = \"e492212ac378a5e00da953718dafb1340d9fbaf4f27d6f3c5cab03d931d1c049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uart_16550/0.3.2/download\"],\n strip_prefix = \"uart_16550-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uart_16550-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ubyte-0.10.4\",\n sha256 = \"f720def6ce1ee2fc44d40ac9ed6d3a59c361c80a75a7aa8e75bb9baed31cf2ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ubyte/0.10.4/download\"],\n strip_prefix = \"ubyte-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ubyte-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unarray-0.1.4\",\n sha256 = \"eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unarray/0.1.4/download\"],\n strip_prefix = \"unarray-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unarray-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicase-2.9.0\",\n sha256 = \"dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicase/2.9.0/download\"],\n strip_prefix = \"unicase-2.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicase-2.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-normalization-0.1.25\",\n sha256 = \"5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-normalization/0.1.25/download\"],\n strip_prefix = \"unicode-normalization-0.1.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-normalization-0.1.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.1.14\",\n sha256 = \"7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.1.14/download\"],\n strip_prefix = \"unicode-width-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-xid-0.2.6\",\n sha256 = \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-xid/0.2.6/download\"],\n strip_prefix = \"unicode-xid-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-xid-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__untrusted-0.9.0\",\n sha256 = \"8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/untrusted/0.9.0/download\"],\n strip_prefix = \"untrusted-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.untrusted-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ureq-2.12.1\",\n sha256 = \"02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ureq/2.12.1/download\"],\n strip_prefix = \"ureq-2.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ureq-2.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__url-2.5.8\",\n sha256 = \"ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/url/2.5.8/download\"],\n strip_prefix = \"url-2.5.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.url-2.5.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf-8-0.7.6\",\n sha256 = \"09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf-8/0.7.6/download\"],\n strip_prefix = \"utf-8-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf-8-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8_iter-1.0.4\",\n sha256 = \"b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8_iter/1.0.4/download\"],\n strip_prefix = \"utf8_iter-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8_iter-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8parse-0.2.2\",\n sha256 = \"06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8parse/0.2.2/download\"],\n strip_prefix = \"utf8parse-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8parse-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uuid-1.23.1\",\n sha256 = \"ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uuid/1.23.1/download\"],\n strip_prefix = \"uuid-1.23.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uuid-1.23.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vcpkg-0.2.15\",\n sha256 = \"accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vcpkg/0.2.15/download\"],\n strip_prefix = \"vcpkg-0.2.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vcpkg-0.2.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__volatile-0.4.6\",\n sha256 = \"442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/volatile/0.4.6/download\"],\n strip_prefix = \"volatile-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.volatile-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vsock-0.5.4\",\n sha256 = \"6ba782755fc073877e567c2253c0be48e4aa9a254c232d36d3985dfae0bd5205\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vsock/0.5.4/download\"],\n strip_prefix = \"vsock-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vsock-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wait-timeout-0.2.1\",\n sha256 = \"09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wait-timeout/0.2.1/download\"],\n strip_prefix = \"wait-timeout-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wait-timeout-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-0.5.1\",\n sha256 = \"6e2db2daf1dfbadf228fd8b3c22b96a359135fd673b3d2c203274ee6a0df9c77\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki/0.5.1/download\"],\n strip_prefix = \"waki-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-macros-0.5.1\",\n sha256 = \"a061143f321cc5eeb523f60bdbcd45cfc3ee8851f8cf24f7a4b963bddc5642eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki-macros/0.5.1/download\"],\n strip_prefix = \"waki-macros-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-macros-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__walkdir-2.5.0\",\n sha256 = \"29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/walkdir/2.5.0/download\"],\n strip_prefix = \"walkdir-2.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.walkdir-2.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__want-0.3.1\",\n sha256 = \"bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/want/0.3.1/download\"],\n strip_prefix = \"want-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.want-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06\",\n sha256 = \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download\"],\n strip_prefix = \"wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-0.2.118\",\n sha256 = \"0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-futures-0.4.68\",\n sha256 = \"f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-futures/0.4.68/download\"],\n strip_prefix = \"wasm-bindgen-futures-0.4.68\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-futures-0.4.68.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-0.2.118\",\n sha256 = \"eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-support-0.2.118\",\n sha256 = \"9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-support-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-support-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-shared-0.2.118\",\n sha256 = \"5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-shared-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-shared-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.218.1\",\n sha256 = \"491f7e48672d0a1efdeadf897d98ac1f45942c26c3829cb44a6b828f6f26155f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.218.1/download\"],\n strip_prefix = \"wasm-encoder-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.219.2\",\n sha256 = \"8aa79bcd666a043b58f5fa62b221b0b914dd901e6f620e8ab7371057a797f3e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.219.2/download\"],\n strip_prefix = \"wasm-encoder-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.228.0\",\n sha256 = \"05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.228.0/download\"],\n strip_prefix = \"wasm-encoder-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.244.0\",\n sha256 = \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.244.0/download\"],\n strip_prefix = \"wasm-encoder-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.218.1\",\n sha256 = \"ca31626e08c121a67fe7cbca87e2ead2ed84ccc16043346c2a1d7cf38936c251\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.218.1/download\"],\n strip_prefix = \"wasm-metadata-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.219.2\",\n sha256 = \"b1ef51bd442042a2a7b562dddb6016ead52c4abab254c376dcffc83add2c9c34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.219.2/download\"],\n strip_prefix = \"wasm-metadata-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.244.0\",\n sha256 = \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.244.0/download\"],\n strip_prefix = \"wasm-metadata-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-streams-0.4.2\",\n sha256 = \"15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-streams/0.4.2/download\"],\n strip_prefix = \"wasm-streams-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-streams-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi-0.31.2\",\n sha256 = \"77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi/0.31.2/download\"],\n strip_prefix = \"wasmi-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_arena-0.4.1\",\n sha256 = \"104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_arena/0.4.1/download\"],\n strip_prefix = \"wasmi_arena-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_arena-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_core-0.13.0\",\n sha256 = \"dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_core/0.13.0/download\"],\n strip_prefix = \"wasmi_core-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_core-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.218.1\",\n sha256 = \"059739c2eac26eea736389a7d6d30b41a8201490bea204d0facde19183359849\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.218.1/download\"],\n strip_prefix = \"wasmparser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.219.2\",\n sha256 = \"5220ee4c6ffcc0cb9d7c47398052203bc902c8ef3985b0c8134118440c0b2921\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.219.2/download\"],\n strip_prefix = \"wasmparser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.228.0\",\n sha256 = \"4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.228.0/download\"],\n strip_prefix = \"wasmparser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.244.0\",\n sha256 = \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.244.0/download\"],\n strip_prefix = \"wasmparser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-nostd-0.100.2\",\n sha256 = \"d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser-nostd/0.100.2/download\"],\n strip_prefix = \"wasmparser-nostd-0.100.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-nostd-0.100.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmprinter-0.228.0\",\n sha256 = \"0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmprinter/0.228.0/download\"],\n strip_prefix = \"wasmprinter-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmprinter-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-32.0.1\",\n sha256 = \"ad01fc006f2c40ae475412c4d8d41ecb8790b3cc2b04cfb6c802bf845a93231e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime/32.0.1/download\"],\n strip_prefix = \"wasmtime-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-asm-macros-32.0.1\",\n sha256 = \"936dc7dcea4bcb11964c62e6e0a78a360b888b2fa8ffeec37cacf22ac43b7b03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-asm-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-asm-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-asm-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cache-32.0.1\",\n sha256 = \"4e714cd20f559743c8daf9b5c992630765a329507a95cdd77204b99cc0a5f252\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cache/32.0.1/download\"],\n strip_prefix = \"wasmtime-cache-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cache-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-macro-32.0.1\",\n sha256 = \"dad44c6c446b99a0a5459798bb580824c424c82cd28d8498aa60f7c34a4c917a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-macro/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-util-32.0.1\",\n sha256 = \"d9aa325c17140d69de9a03dda4ce75d2f47eb90376c0cd9e01d54a9cb19cb7ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-util/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-util-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-util-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cranelift-32.0.1\",\n sha256 = \"4fc41e93228c2d5862e49c5cc7e6ecba29c5b4c9afcbd8ae2ca07622f75a439b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cranelift/32.0.1/download\"],\n strip_prefix = \"wasmtime-cranelift-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cranelift-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-environ-32.0.1\",\n sha256 = \"72985be5115421ea4f40bd3dc6081c0ced281171eba508c6d0cfe3e184a84e60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-environ/32.0.1/download\"],\n strip_prefix = \"wasmtime-environ-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-environ-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-fiber-32.0.1\",\n sha256 = \"ff64b883df8e177c64b69ee68889c62913353bf20774ff5ce55aba0aa99aeb78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-fiber/32.0.1/download\"],\n strip_prefix = \"wasmtime-fiber-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-fiber-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-jit-icache-coherence-32.0.1\",\n sha256 = \"23ccb3dd740a0601addd260f4a6d91470cd3f7a2058efe46662054ca6b6da592\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-jit-icache-coherence/32.0.1/download\"],\n strip_prefix = \"wasmtime-jit-icache-coherence-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-jit-icache-coherence-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-math-32.0.1\",\n sha256 = \"7cdb839281525419d67958e37629d71da696b525756222d6cc1596df960a0112\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-math/32.0.1/download\"],\n strip_prefix = \"wasmtime-math-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-math-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-slab-32.0.1\",\n sha256 = \"06f9cbf0710c55c617a6cf016aecb6d76abaffb7b26511a6111808ff96d9233c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-slab/32.0.1/download\"],\n strip_prefix = \"wasmtime-slab-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-slab-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-versioned-export-macros-32.0.1\",\n sha256 = \"dbb192336c60c672de6d8d96e5ea9c92b11c41be78acf8af9bfecf6f1e72b546\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-versioned-export-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-versioned-export-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-versioned-export-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-32.0.1\",\n sha256 = \"7513ec128fbe590a33a10f3b144b86aaa633a65b857d108bad7b835877ae62bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-http-32.0.1\",\n sha256 = \"a53f8d62d9c85ae9845b2523765607f26e6f6923dfcb6e34e8e6bd14df77017c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-http/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-http-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-http-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-io-32.0.1\",\n sha256 = \"f52b6decdc45591a05c698d66c50c6258a0741472ed28d0de51f13c71fd4583b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-io/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-io-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-io-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-winch-32.0.1\",\n sha256 = \"3fcb97439811c7ff8283ee44ac13c1889b270a39187f2bac16889067d2a9f438\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-winch/32.0.1/download\"],\n strip_prefix = \"wasmtime-winch-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-winch-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wit-bindgen-32.0.1\",\n sha256 = \"5bd0a7ffc24aa19a2784849662d2ba93344a41bd956132da7b2f5fee41cdb7d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wit-bindgen/32.0.1/download\"],\n strip_prefix = \"wasmtime-wit-bindgen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wit-bindgen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wast-35.0.2\",\n sha256 = \"2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wast/35.0.2/download\"],\n strip_prefix = \"wast-35.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wast-35.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-sys-0.3.95\",\n sha256 = \"4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-sys/0.3.95/download\"],\n strip_prefix = \"web-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-time-1.1.0\",\n sha256 = \"5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-time/1.1.0/download\"],\n strip_prefix = \"web-time-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-time-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-0.26.11\",\n sha256 = \"521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/0.26.11/download\"],\n strip_prefix = \"webpki-roots-0.26.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-0.26.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-1.0.7\",\n sha256 = \"52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/1.0.7/download\"],\n strip_prefix = \"webpki-roots-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__which-5.0.0\",\n sha256 = \"9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/which/5.0.0/download\"],\n strip_prefix = \"which-5.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.which-5.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-32.0.1\",\n sha256 = \"b69703366897a920a393581773a0a928ad5547125b1db84099a875f105497068\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle/32.0.1/download\"],\n strip_prefix = \"wiggle-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-generate-32.0.1\",\n sha256 = \"3288f30a93cebce9bb5f85825bae0ba6ae11f1caa22e87e68b1195ddfc292cb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-generate/32.0.1/download\"],\n strip_prefix = \"wiggle-generate-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-generate-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-macro-32.0.1\",\n sha256 = \"3a7946f6957c3d1ab24584f5e8cf93f35af197eeaeab71abee77e4d422ec983e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-macro/32.0.1/download\"],\n strip_prefix = \"wiggle-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-0.3.9\",\n sha256 = \"5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi/0.3.9/download\"],\n strip_prefix = \"winapi-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-i686-pc-windows-gnu-0.4.0\",\n sha256 = \"ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-i686-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-x86_64-pc-windows-gnu-0.4.0\",\n sha256 = \"712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-x86_64-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winch-codegen-32.0.1\",\n sha256 = \"1e7e8521de7cf48d6b6dd8c737b7ca72b40ce850b86a57b57ecf2e6f5bd233e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winch-codegen/32.0.1/download\"],\n strip_prefix = \"winch-codegen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winch-codegen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-core-0.62.2\",\n sha256 = \"b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-core/0.62.2/download\"],\n strip_prefix = \"windows-core-0.62.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-core-0.62.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-implement-0.60.2\",\n sha256 = \"053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-implement/0.60.2/download\"],\n strip_prefix = \"windows-implement-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-implement-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-interface-0.59.3\",\n sha256 = \"3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-interface/0.59.3/download\"],\n strip_prefix = \"windows-interface-0.59.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-interface-0.59.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-registry-0.6.1\",\n sha256 = \"02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-registry/0.6.1/download\"],\n strip_prefix = \"windows-registry-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-registry-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-result-0.4.1\",\n sha256 = \"7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-result/0.4.1/download\"],\n strip_prefix = \"windows-result-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-result-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-strings-0.5.1\",\n sha256 = \"7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-strings/0.5.1/download\"],\n strip_prefix = \"windows-strings-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-strings-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.45.0\",\n sha256 = \"75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.45.0/download\"],\n strip_prefix = \"windows-sys-0.45.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.45.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.48.0\",\n sha256 = \"677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.48.0/download\"],\n strip_prefix = \"windows-sys-0.48.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.48.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.52.0\",\n sha256 = \"282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.52.0/download\"],\n strip_prefix = \"windows-sys-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.59.0\",\n sha256 = \"1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.59.0/download\"],\n strip_prefix = \"windows-sys-0.59.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.59.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.60.2\",\n sha256 = \"f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.60.2/download\"],\n strip_prefix = \"windows-sys-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.42.2\",\n sha256 = \"8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.42.2/download\"],\n strip_prefix = \"windows-targets-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.48.5\",\n sha256 = \"9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.48.5/download\"],\n strip_prefix = \"windows-targets-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.52.6\",\n sha256 = \"9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.52.6/download\"],\n strip_prefix = \"windows-targets-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.53.5\",\n sha256 = \"4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.53.5/download\"],\n strip_prefix = \"windows-targets-0.53.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.53.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.42.2\",\n sha256 = \"597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.48.5\",\n sha256 = \"2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.52.6\",\n sha256 = \"32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.53.1\",\n sha256 = \"a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.42.2\",\n sha256 = \"e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.48.5\",\n sha256 = \"dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.52.6\",\n sha256 = \"09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.53.1\",\n sha256 = \"b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.42.2\",\n sha256 = \"c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.42.2/download\"],\n strip_prefix = \"windows_i686_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.48.5\",\n sha256 = \"a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.48.5/download\"],\n strip_prefix = \"windows_i686_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.52.6\",\n sha256 = \"8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.53.1\",\n sha256 = \"960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.52.6\",\n sha256 = \"0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.53.1\",\n sha256 = \"fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.42.2\",\n sha256 = \"44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.42.2/download\"],\n strip_prefix = \"windows_i686_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.48.5\",\n sha256 = \"8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.48.5/download\"],\n strip_prefix = \"windows_i686_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.52.6\",\n sha256 = \"240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.52.6/download\"],\n strip_prefix = \"windows_i686_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.53.1\",\n sha256 = \"1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.53.1/download\"],\n strip_prefix = \"windows_i686_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.42.2\",\n sha256 = \"8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.48.5\",\n sha256 = \"53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.52.6\",\n sha256 = \"147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.53.1\",\n sha256 = \"9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.42.2\",\n sha256 = \"26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.48.5\",\n sha256 = \"0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.52.6\",\n sha256 = \"24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.53.1\",\n sha256 = \"0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.42.2\",\n sha256 = \"9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.48.5\",\n sha256 = \"ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.52.6\",\n sha256 = \"589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.53.1\",\n sha256 = \"d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winnow-0.7.15\",\n sha256 = \"df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winnow/0.7.15/download\"],\n strip_prefix = \"winnow-0.7.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winnow-0.7.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winx-0.36.4\",\n sha256 = \"3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winx/0.36.4/download\"],\n strip_prefix = \"winx-0.36.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winx-0.36.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.33.0\",\n sha256 = \"8fcf26778671a2327bd237a32c6f2d1d9bb0ec077e482b0839552b00d4566544\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.34.0\",\n sha256 = \"7e11ad55616555605a60a8b2d1d89e006c2076f46c465c892cc2c153b20d4b30\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.51.0\",\n sha256 = \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.33.0\",\n sha256 = \"4b885a00e1c428fd12b7b7c4bccc4bad8b2a3ca0abe8eaf1e0f90adabb4c7ac7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.34.0\",\n sha256 = \"163cee59d3d5ceec0b256735f3ab0dccac434afb0ec38c406276de9c5a11e906\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.51.0\",\n sha256 = \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.33.0\",\n sha256 = \"3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.34.0\",\n sha256 = \"744845cde309b8fa32408d6fb67456449278c66ea4dcd96de29797b302721f02\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.33.0\",\n sha256 = \"542608877814a54f6bea6b24dcbe249a2e293d67d709f4f8ec578d06b1c00730\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.34.0\",\n sha256 = \"f6919521fc7807f927a739181db93100ca7ed03c29509b84d5f96b27b2e49a9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.51.0\",\n sha256 = \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.33.0\",\n sha256 = \"30d462025f670fff96606ddbfe62500255b4fe3de7298cd9cbabb2de3d567183\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.34.0\",\n sha256 = \"c967731fc5d50244d7241ecfc9302a8929db508eea3c601fbc5371b196ba38a5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.51.0\",\n sha256 = \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.218.1\",\n sha256 = \"5152dd199894d1b3b0907738b1a3d2b2809cd492440204f5339cfa1bb4c9fc92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.218.1/download\"],\n strip_prefix = \"wit-component-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.219.2\",\n sha256 = \"4b8479a29d81c063264c3ab89d496787ef78f8345317a2dcf6dece0f129e5fcd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.219.2/download\"],\n strip_prefix = \"wit-component-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.244.0\",\n sha256 = \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.244.0/download\"],\n strip_prefix = \"wit-component-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.218.1\",\n sha256 = \"f104473e8546f8096f1fa483d337101a98dc9525d67f4275816bcd177fe3e2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.218.1/download\"],\n strip_prefix = \"wit-parser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.219.2\",\n sha256 = \"ca004bb251010fe956f4a5b9d4bf86b4e415064160dd6669569939e8cbf2504f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.219.2/download\"],\n strip_prefix = \"wit-parser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.228.0\",\n sha256 = \"399ce56e28d79fd3abfa03fdc7ceb89ffec4d4b2674fe3a92056b7d845653c38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.228.0/download\"],\n strip_prefix = \"wit-parser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.244.0\",\n sha256 = \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.244.0/download\"],\n strip_prefix = \"wit-parser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__witx-0.9.1\",\n sha256 = \"e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/witx/0.9.1/download\"],\n strip_prefix = \"witx-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.witx-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__writeable-0.6.3\",\n sha256 = \"1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/writeable/0.6.3/download\"],\n strip_prefix = \"writeable-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.writeable-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wyz-0.5.1\",\n sha256 = \"05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wyz/0.5.1/download\"],\n strip_prefix = \"wyz-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wyz-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x25519-dalek-2.0.1\",\n sha256 = \"c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x25519-dalek/2.0.1/download\"],\n strip_prefix = \"x25519-dalek-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x25519-dalek-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-cert-0.2.5\",\n sha256 = \"1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-cert/0.2.5/download\"],\n strip_prefix = \"x509-cert-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-cert-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-ocsp-0.2.1\",\n sha256 = \"5e54e695a31f0fecb826cf59ae2093c941d7ef932a1f8508185dd23b29ce2e2e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-ocsp/0.2.1/download\"],\n strip_prefix = \"x509-ocsp-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-ocsp-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-parser-0.16.0\",\n sha256 = \"fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-parser/0.16.0/download\"],\n strip_prefix = \"x509-parser-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-parser-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-verify-0.4.8\",\n sha256 = \"c43a49bf845cd2f3aff9603a4276409dbf2b8fa4454d3e9501bf5b0028342964\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-verify/0.4.8/download\"],\n strip_prefix = \"x509-verify-0.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-verify-0.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86-0.52.0\",\n sha256 = \"2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86/0.52.0/download\"],\n strip_prefix = \"x86-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86_64-0.15.4\",\n sha256 = \"f7841fa0098ceb15c567d93d3fae292c49e10a7662b4936d5f6a9728594555ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86_64/0.15.4/download\"],\n strip_prefix = \"x86_64-0.15.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86_64-0.15.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xattr-1.6.1\",\n sha256 = \"32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xattr/1.6.1/download\"],\n strip_prefix = \"xattr-1.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xattr-1.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xz2-0.1.7\",\n sha256 = \"388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xz2/0.1.7/download\"],\n strip_prefix = \"xz2-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xz2-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yaml_serde-0.10.4\",\n sha256 = \"08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yaml_serde/0.10.4/download\"],\n strip_prefix = \"yaml_serde-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yaml_serde-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yansi-1.0.1\",\n sha256 = \"cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yansi/1.0.1/download\"],\n strip_prefix = \"yansi-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yansi-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yasna-0.5.2\",\n sha256 = \"e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yasna/0.5.2/download\"],\n strip_prefix = \"yasna-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yasna-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-0.8.2\",\n sha256 = \"abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke/0.8.2/download\"],\n strip_prefix = \"yoke-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-derive-0.8.2\",\n sha256 = \"de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke-derive/0.8.2/download\"],\n strip_prefix = \"yoke-derive-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-derive-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-0.1.7\",\n sha256 = \"69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom/0.1.7/download\"],\n strip_prefix = \"zerofrom-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-derive-0.1.7\",\n sha256 = \"11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom-derive/0.1.7/download\"],\n strip_prefix = \"zerofrom-derive-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-derive-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize_derive-1.4.3\",\n sha256 = \"85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize_derive/1.4.3/download\"],\n strip_prefix = \"zeroize_derive-1.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize_derive-1.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerotrie-0.2.4\",\n sha256 = \"0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerotrie/0.2.4/download\"],\n strip_prefix = \"zerotrie-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerotrie-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-0.11.6\",\n sha256 = \"90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec/0.11.6/download\"],\n strip_prefix = \"zerovec-0.11.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-0.11.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-derive-0.11.3\",\n sha256 = \"625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec-derive/0.11.3/download\"],\n strip_prefix = \"zerovec-derive-0.11.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-derive-0.11.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zmij-1.0.21\",\n sha256 = \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zmij/1.0.21/download\"],\n strip_prefix = \"zmij-1.0.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zmij-1.0.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-0.13.3\",\n sha256 = \"e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd/0.13.3/download\"],\n strip_prefix = \"zstd-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-safe-7.2.4\",\n sha256 = \"8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-safe/7.2.4/download\"],\n strip_prefix = \"zstd-safe-7.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-safe-7.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-sys-2.0.16-zstd.1.5.7\",\n sha256 = \"91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-sys/2.0.16+zstd.1.5.7/download\"],\n strip_prefix = \"zstd-sys-2.0.16+zstd.1.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-sys-2.0.16+zstd.1.5.7.bazel\"),\n )\n\n return [\n struct(repo=\"oak_std_crates_index__acpi-5.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aead-0.5.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aes-gcm-0.10.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aml-0.16.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__anyhow-1.0.102\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__arrayvec-0.7.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__assertables-7.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-stream-0.3.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-trait-0.1.89\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__atomic_refcell-0.1.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__axum-0.7.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__base64-0.21.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bincode-1.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitflags-2.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitvec-1.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bytes-1.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__chrono-0.4.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ciborium-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__clap-4.6.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__colored-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-fds-0.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-group-5.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__const-oid-0.9.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__coset-0.3.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-macro-0.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__derive_builder-0.20.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ecdsa-0.16.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ed25519-dalek-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__elf-0.7.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__env_logger-0.11.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__flate2-1.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-util-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__getrandom-0.2.17\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__goblin-0.8.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__googletest-0.14.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hashbrown-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hex-0.4.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hkdf-0.12.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hmac-0.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hpke-0.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-1.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-body-util-0.1.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__humantime-serde-1.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-1.9.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-util-0.1.20\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__indicatif-0.17.11\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__itertools-0.13.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jni-0.21.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jwt-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lazy_static-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__libm-0.2.16\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__linked_list_allocator-0.10.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lock_api-0.4.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__log-0.4.29\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__maplit-1.0.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__mockall-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nix-0.27.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nom-8.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-client-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-spec-0.8.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__once_cell-1.21.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__openssl-0.10.78\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-otlp-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-proto-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry_sdk-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__os_pipe-1.2.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ouroboros-0.18.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p256-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p384-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__parking_lot-0.12.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pem-3.0.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pkcs8-0.10.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__port_check-0.1.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__portpicker-0.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pprof-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__primeorder-0.13.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__procfs-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__proptest-1.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-build-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-derive-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-types-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__quote-1.0.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand-0.9.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_chacha-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_core-0.6.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rcgen-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-1.12.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-lite-0.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__reqwest-0.12.28\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rlsf-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-macros-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rpassword-7.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rs_merkle-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rsa-0.9.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rtnetlink-0.14.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-0.23.38\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pemfile-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pki-types-1.14.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__self_cell-1.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde-1.0.228\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde_json-1.0.149\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha2-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha3-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-0.3.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-tokio-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__spinning_top-0.3.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__static_assertions-1.1.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__strum-0.27.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syn-2.0.117\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syslog-6.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tar-0.4.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tempfile-3.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__thiserror-2.0.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tikv-jemallocator-0.5.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__time-macros-0.2.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-1.52.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-stream-0.1.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-util-0.7.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-vsock-0.7.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__toml-0.8.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-build-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-0.4.13\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-http-0.6.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-0.1.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-subscriber-0.3.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__uart_16550-0.3.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ubyte-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ureq-2.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__url-2.5.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__waki-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__walkdir-2.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmi-0.31.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-http-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__which-5.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wit-bindgen-0.33.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-cert-0.2.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-verify-0.4.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x86_64-0.15.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__xz2-0.1.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__yaml_serde-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zerocopy-0.8.48\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zeroize-1.8.2\", is_dev_dep = False),\n ]\n" + "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"acpi\": Label(\"@oak_std_crates_index//:acpi-5.2.0\"),\n \"aead\": Label(\"@oak_std_crates_index//:aead-0.5.2\"),\n \"aes-gcm\": Label(\"@oak_std_crates_index//:aes-gcm-0.10.3\"),\n \"aml\": Label(\"@oak_std_crates_index//:aml-0.16.4\"),\n \"anyhow\": Label(\"@oak_std_crates_index//:anyhow-1.0.102\"),\n \"arrayvec\": Label(\"@oak_std_crates_index//:arrayvec-0.7.6\"),\n \"assertables\": Label(\"@oak_std_crates_index//:assertables-7.0.1\"),\n \"async-stream\": Label(\"@oak_std_crates_index//:async-stream-0.3.6\"),\n \"atomic_refcell\": Label(\"@oak_std_crates_index//:atomic_refcell-0.1.14\"),\n \"axum\": Label(\"@oak_std_crates_index//:axum-0.7.9\"),\n \"base64\": Label(\"@oak_std_crates_index//:base64-0.21.7\"),\n \"bincode\": Label(\"@oak_std_crates_index//:bincode-1.3.3\"),\n \"bitflags\": Label(\"@oak_std_crates_index//:bitflags-2.11.1\"),\n \"bitvec\": Label(\"@oak_std_crates_index//:bitvec-1.0.1\"),\n \"bytes\": Label(\"@oak_std_crates_index//:bytes-1.11.1\"),\n \"chrono\": Label(\"@oak_std_crates_index//:chrono-0.4.44\"),\n \"ciborium\": Label(\"@oak_std_crates_index//:ciborium-0.2.2\"),\n \"clap\": Label(\"@oak_std_crates_index//:clap-4.6.1\"),\n \"colored\": Label(\"@oak_std_crates_index//:colored-2.2.0\"),\n \"command-fds\": Label(\"@oak_std_crates_index//:command-fds-0.3.3\"),\n \"command-group\": Label(\"@oak_std_crates_index//:command-group-5.0.1\"),\n \"const-oid\": Label(\"@oak_std_crates_index//:const-oid-0.9.6\"),\n \"coset\": Label(\"@oak_std_crates_index//:coset-0.3.8\"),\n \"criterion\": Label(\"@oak_std_crates_index//:criterion-0.5.1\"),\n \"derive_builder\": Label(\"@oak_std_crates_index//:derive_builder-0.20.2\"),\n \"ecdsa\": Label(\"@oak_std_crates_index//:ecdsa-0.16.9\"),\n \"ed25519-dalek\": Label(\"@oak_std_crates_index//:ed25519-dalek-2.2.0\"),\n \"elf\": Label(\"@oak_std_crates_index//:elf-0.7.4\"),\n \"env_logger\": Label(\"@oak_std_crates_index//:env_logger-0.11.10\"),\n \"flate2\": Label(\"@oak_std_crates_index//:flate2-1.1.9\"),\n \"futures\": Label(\"@oak_std_crates_index//:futures-0.3.32\"),\n \"futures-util\": Label(\"@oak_std_crates_index//:futures-util-0.3.32\"),\n \"getrandom\": Label(\"@oak_std_crates_index//:getrandom-0.2.17\"),\n \"goblin\": Label(\"@oak_std_crates_index//:goblin-0.8.2\"),\n \"googletest\": Label(\"@oak_std_crates_index//:googletest-0.14.2\"),\n \"hashbrown\": Label(\"@oak_std_crates_index//:hashbrown-0.14.5\"),\n \"hex\": Label(\"@oak_std_crates_index//:hex-0.4.3\"),\n \"hkdf\": Label(\"@oak_std_crates_index//:hkdf-0.12.4\"),\n \"hmac\": Label(\"@oak_std_crates_index//:hmac-0.12.1\"),\n \"hpke\": Label(\"@oak_std_crates_index//:hpke-0.11.0\"),\n \"http\": Label(\"@oak_std_crates_index//:http-1.4.0\"),\n \"http-body-util\": Label(\"@oak_std_crates_index//:http-body-util-0.1.3\"),\n \"humantime-serde\": Label(\"@oak_std_crates_index//:humantime-serde-1.1.1\"),\n \"hyper\": Label(\"@oak_std_crates_index//:hyper-1.9.0\"),\n \"hyper-util\": Label(\"@oak_std_crates_index//:hyper-util-0.1.20\"),\n \"indicatif\": Label(\"@oak_std_crates_index//:indicatif-0.17.11\"),\n \"itertools\": Label(\"@oak_std_crates_index//:itertools-0.13.0\"),\n \"jni\": Label(\"@oak_std_crates_index//:jni-0.21.1\"),\n \"jwt\": Label(\"@oak_std_crates_index//:jwt-0.16.0\"),\n \"lazy_static\": Label(\"@oak_std_crates_index//:lazy_static-1.5.0\"),\n \"libm\": Label(\"@oak_std_crates_index//:libm-0.2.16\"),\n \"linked_list_allocator\": Label(\"@oak_std_crates_index//:linked_list_allocator-0.10.5\"),\n \"lock_api\": Label(\"@oak_std_crates_index//:lock_api-0.4.14\"),\n \"log\": Label(\"@oak_std_crates_index//:log-0.4.29\"),\n \"maplit\": Label(\"@oak_std_crates_index//:maplit-1.0.2\"),\n \"mockall\": Label(\"@oak_std_crates_index//:mockall-0.13.1\"),\n \"nix\": Label(\"@oak_std_crates_index//:nix-0.27.1\"),\n \"nom\": Label(\"@oak_std_crates_index//:nom-8.0.0\"),\n \"oci-client\": Label(\"@oak_std_crates_index//:oci-client-0.15.0\"),\n \"oci-spec\": Label(\"@oak_std_crates_index//:oci-spec-0.8.4\"),\n \"once_cell\": Label(\"@oak_std_crates_index//:once_cell-1.21.4\"),\n \"openssl\": Label(\"@oak_std_crates_index//:openssl-0.10.78\"),\n \"opentelemetry\": Label(\"@oak_std_crates_index//:opentelemetry-0.31.0\"),\n \"opentelemetry-appender-tracing\": Label(\"@oak_std_crates_index//:opentelemetry-appender-tracing-0.31.1\"),\n \"opentelemetry-otlp\": Label(\"@oak_std_crates_index//:opentelemetry-otlp-0.31.1\"),\n \"opentelemetry-proto\": Label(\"@oak_std_crates_index//:opentelemetry-proto-0.31.0\"),\n \"opentelemetry_sdk\": Label(\"@oak_std_crates_index//:opentelemetry_sdk-0.31.0\"),\n \"os_pipe\": Label(\"@oak_std_crates_index//:os_pipe-1.2.3\"),\n \"ouroboros\": Label(\"@oak_std_crates_index//:ouroboros-0.18.5\"),\n \"p256\": Label(\"@oak_std_crates_index//:p256-0.13.2\"),\n \"p384\": Label(\"@oak_std_crates_index//:p384-0.13.1\"),\n \"parking_lot\": Label(\"@oak_std_crates_index//:parking_lot-0.12.5\"),\n \"pem\": Label(\"@oak_std_crates_index//:pem-3.0.6\"),\n \"pkcs8\": Label(\"@oak_std_crates_index//:pkcs8-0.10.2\"),\n \"port_check\": Label(\"@oak_std_crates_index//:port_check-0.1.5\"),\n \"portpicker\": Label(\"@oak_std_crates_index//:portpicker-0.1.1\"),\n \"pprof\": Label(\"@oak_std_crates_index//:pprof-0.15.0\"),\n \"primeorder\": Label(\"@oak_std_crates_index//:primeorder-0.13.6\"),\n \"procfs\": Label(\"@oak_std_crates_index//:procfs-0.16.0\"),\n \"proptest\": Label(\"@oak_std_crates_index//:proptest-1.11.0\"),\n \"prost\": Label(\"@oak_std_crates_index//:prost-0.14.3\"),\n \"prost-build\": Label(\"@oak_std_crates_index//:prost-build-0.14.3\"),\n \"prost-types\": Label(\"@oak_std_crates_index//:prost-types-0.14.3\"),\n \"quote\": Label(\"@oak_std_crates_index//:quote-1.0.45\"),\n \"rand\": Label(\"@oak_std_crates_index//:rand-0.9.4\"),\n \"rand_chacha\": Label(\"@oak_std_crates_index//:rand_chacha-0.3.1\"),\n \"rand_core\": Label(\"@oak_std_crates_index//:rand_core-0.6.4\"),\n \"rcgen\": Label(\"@oak_std_crates_index//:rcgen-0.13.2\"),\n \"regex\": Label(\"@oak_std_crates_index//:regex-1.12.3\"),\n \"regex-lite\": Label(\"@oak_std_crates_index//:regex-lite-0.1.9\"),\n \"reqwest\": Label(\"@oak_std_crates_index//:reqwest-0.12.28\"),\n \"rlsf\": Label(\"@oak_std_crates_index//:rlsf-0.2.2\"),\n \"rmcp\": Label(\"@oak_std_crates_index//:rmcp-0.8.5\"),\n \"rpassword\": Label(\"@oak_std_crates_index//:rpassword-7.4.0\"),\n \"rs_merkle\": Label(\"@oak_std_crates_index//:rs_merkle-1.5.0\"),\n \"rsa\": Label(\"@oak_std_crates_index//:rsa-0.9.10\"),\n \"rtnetlink\": Label(\"@oak_std_crates_index//:rtnetlink-0.14.1\"),\n \"rustls\": Label(\"@oak_std_crates_index//:rustls-0.23.39\"),\n \"rustls-pemfile\": Label(\"@oak_std_crates_index//:rustls-pemfile-2.2.0\"),\n \"rustls-pki-types\": Label(\"@oak_std_crates_index//:rustls-pki-types-1.14.0\"),\n \"self_cell\": Label(\"@oak_std_crates_index//:self_cell-1.2.2\"),\n \"serde\": Label(\"@oak_std_crates_index//:serde-1.0.228\"),\n \"serde_json\": Label(\"@oak_std_crates_index//:serde_json-1.0.149\"),\n \"sha2\": Label(\"@oak_std_crates_index//:sha2-0.10.9\"),\n \"sha3\": Label(\"@oak_std_crates_index//:sha3-0.10.9\"),\n \"signal-hook\": Label(\"@oak_std_crates_index//:signal-hook-0.3.18\"),\n \"signal-hook-tokio\": Label(\"@oak_std_crates_index//:signal-hook-tokio-0.3.1\"),\n \"spinning_top\": Label(\"@oak_std_crates_index//:spinning_top-0.3.0\"),\n \"static_assertions\": Label(\"@oak_std_crates_index//:static_assertions-1.1.0\"),\n \"strum\": Label(\"@oak_std_crates_index//:strum-0.27.2\"),\n \"syn\": Label(\"@oak_std_crates_index//:syn-2.0.117\"),\n \"syslog\": Label(\"@oak_std_crates_index//:syslog-6.1.1\"),\n \"tar\": Label(\"@oak_std_crates_index//:tar-0.4.45\"),\n \"tempfile\": Label(\"@oak_std_crates_index//:tempfile-3.27.0\"),\n \"thiserror\": Label(\"@oak_std_crates_index//:thiserror-2.0.18\"),\n \"tikv-jemallocator\": Label(\"@oak_std_crates_index//:tikv-jemallocator-0.5.4\"),\n \"tokio\": Label(\"@oak_std_crates_index//:tokio-1.52.1\"),\n \"tokio-stream\": Label(\"@oak_std_crates_index//:tokio-stream-0.1.18\"),\n \"tokio-tungstenite\": Label(\"@oak_std_crates_index//:tokio-tungstenite-0.27.0\"),\n \"tokio-util\": Label(\"@oak_std_crates_index//:tokio-util-0.7.18\"),\n \"tokio-vsock\": Label(\"@oak_std_crates_index//:tokio-vsock-0.7.2\"),\n \"toml\": Label(\"@oak_std_crates_index//:toml-0.8.23\"),\n \"tonic\": Label(\"@oak_std_crates_index//:tonic-0.14.5\"),\n \"tonic-prost\": Label(\"@oak_std_crates_index//:tonic-prost-0.14.5\"),\n \"tonic-prost-build\": Label(\"@oak_std_crates_index//:tonic-prost-build-0.14.5\"),\n \"tower\": Label(\"@oak_std_crates_index//:tower-0.4.13\"),\n \"tower-http\": Label(\"@oak_std_crates_index//:tower-http-0.6.8\"),\n \"tracing\": Label(\"@oak_std_crates_index//:tracing-0.1.44\"),\n \"tracing-subscriber\": Label(\"@oak_std_crates_index//:tracing-subscriber-0.3.23\"),\n \"tungstenite\": Label(\"@oak_std_crates_index//:tungstenite-0.27.0\"),\n \"uart_16550\": Label(\"@oak_std_crates_index//:uart_16550-0.3.2\"),\n \"ubyte\": Label(\"@oak_std_crates_index//:ubyte-0.10.4\"),\n \"ureq\": Label(\"@oak_std_crates_index//:ureq-2.12.1\"),\n \"url\": Label(\"@oak_std_crates_index//:url-2.5.8\"),\n \"waki\": Label(\"@oak_std_crates_index//:waki-0.5.1\"),\n \"walkdir\": Label(\"@oak_std_crates_index//:walkdir-2.5.0\"),\n \"wasmi\": Label(\"@oak_std_crates_index//:wasmi-0.31.2\"),\n \"wasmtime\": Label(\"@oak_std_crates_index//:wasmtime-32.0.1\"),\n \"wasmtime-wasi\": Label(\"@oak_std_crates_index//:wasmtime-wasi-32.0.1\"),\n \"wasmtime-wasi-http\": Label(\"@oak_std_crates_index//:wasmtime-wasi-http-32.0.1\"),\n \"which\": Label(\"@oak_std_crates_index//:which-5.0.0\"),\n \"wit-bindgen\": Label(\"@oak_std_crates_index//:wit-bindgen-0.33.0\"),\n \"x509-cert\": Label(\"@oak_std_crates_index//:x509-cert-0.2.5\"),\n \"x509-verify\": Label(\"@oak_std_crates_index//:x509-verify-0.4.8\"),\n \"x86_64\": Label(\"@oak_std_crates_index//:x86_64-0.15.4\"),\n \"xz2\": Label(\"@oak_std_crates_index//:xz2-0.1.7\"),\n \"yaml_serde\": Label(\"@oak_std_crates_index//:yaml_serde-0.10.4\"),\n \"zerocopy\": Label(\"@oak_std_crates_index//:zerocopy-0.8.48\"),\n \"zeroize\": Label(\"@oak_std_crates_index//:zeroize-1.8.2\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"async-trait\": Label(\"@oak_std_crates_index//:async-trait-0.1.89\"),\n \"criterion-macro\": Label(\"@oak_std_crates_index//:criterion-macro-0.4.0\"),\n \"prost-derive\": Label(\"@oak_std_crates_index//:prost-derive-0.14.3\"),\n \"rmcp-macros\": Label(\"@oak_std_crates_index//:rmcp-macros-0.8.5\"),\n \"time-macros\": Label(\"@oak_std_crates_index//:time-macros-0.2.18\"),\n },\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-pc-windows-gnullvm\": [],\n \"aarch64-pc-windows-msvc\": [],\n \"aarch64-uwp-windows-msvc\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_os = \\\"windows\\\"))\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_vendor = \\\"apple\\\", any(target_os = \\\"ios\\\", target_os = \\\"macos\\\", target_os = \\\"tvos\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(any(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), all(target_arch = \\\"arm\\\", target_endian = \\\"little\\\")), any(target_os = \\\"android\\\", target_os = \\\"linux\\\")))\": [],\n \"cfg(all(any(target_arch = \\\"x86_64\\\", target_arch = \\\"arm64ec\\\"), target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(curve25519_dalek_backend = \\\"fiat\\\"), not(curve25519_dalek_backend = \\\"serial\\\"), target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", not(target_os = \\\"wasi\\\")))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p3\\\"))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(target_abi = \\\"llvm\\\"), not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"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\"],\n \"cfg(all(target_arch = \\\"x86_64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(all(unix, not(target_os = \\\"macos\\\")))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"s390x\\\", target_arch = \\\"riscv64\\\"))\": [],\n \"cfg(any(target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\", target_os = \\\"macos\\\", target_os = \\\"hurd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"freebsd\\\", target_os = \\\"netbsd\\\"))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"linux\\\", target_vendor = \\\"apple\\\", target_os = \\\"freebsd\\\", target_os = \\\"android\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\", target_os = \\\"freebsd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(unix, target_os = \\\"hermit\\\", target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(windows, target_os = \\\"cygwin\\\"))\": [],\n \"cfg(any(windows, unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(curve25519_dalek_backend = \\\"fiat\\\")\": [],\n \"cfg(not(all(target_arch = \\\"arm\\\", target_os = \\\"none\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(windows, target_env = \\\"msvc\\\", not(target_vendor = \\\"uwp\\\"))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_arch = \\\"wasm32\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_has_atomic = \\\"ptr\\\"))\": [],\n \"cfg(not(target_os = \\\"windows\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows_raw_dylib))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_arch = \\\"aarch64\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_arch = \\\"spirv\\\")\": [],\n \"cfg(target_arch = \\\"wasm32\\\")\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_arch = \\\"x86_64\\\")\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_os = \\\"android\\\")\": [],\n \"cfg(target_os = \\\"haiku\\\")\": [],\n \"cfg(target_os = \\\"hermit\\\")\": [],\n \"cfg(target_os = \\\"macos\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"redox\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_os = \\\"windows\\\")\": [],\n \"cfg(target_vendor = \\\"apple\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(windows)\": [],\n \"cfg(windows_raw_dylib)\": [],\n \"i686-pc-windows-gnu\": [],\n \"i686-pc-windows-gnullvm\": [],\n \"i686-pc-windows-msvc\": [],\n \"i686-uwp-windows-gnu\": [],\n \"i686-uwp-windows-msvc\": [],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip2\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"x86_64-pc-windows-gnu\": [],\n \"x86_64-pc-windows-gnullvm\": [],\n \"x86_64-pc-windows-msvc\": [],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"x86_64-unknown-none\": [\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"x86_64-uwp-windows-gnu\": [],\n \"x86_64-uwp-windows-msvc\": [],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"oak_std_crates_index__acpi-5.2.0\",\n sha256 = \"94476c7ef97af4c4d998b3f422c1b01d5211aad57c80ed200baf148d1f1efab6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/acpi/5.2.0/download\"],\n strip_prefix = \"acpi-5.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.acpi-5.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.24.2\",\n sha256 = \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.24.2/download\"],\n strip_prefix = \"addr2line-0.24.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.24.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.25.1\",\n sha256 = \"1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.25.1/download\"],\n strip_prefix = \"addr2line-0.25.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.25.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__adler2-2.0.1\",\n sha256 = \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/adler2/2.0.1/download\"],\n strip_prefix = \"adler2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.adler2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-gcm-0.10.3\",\n sha256 = \"831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm/0.10.3/download\"],\n strip_prefix = \"aes-gcm-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-gcm-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ahash-0.8.12\",\n sha256 = \"5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ahash/0.8.12/download\"],\n strip_prefix = \"ahash-0.8.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ahash-0.8.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aho-corasick-1.1.4\",\n sha256 = \"ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aho-corasick/1.1.4/download\"],\n strip_prefix = \"aho-corasick-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aho-corasick-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aliasable-0.1.3\",\n sha256 = \"250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aliasable/0.1.3/download\"],\n strip_prefix = \"aliasable-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aliasable-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aligned-vec-0.6.4\",\n sha256 = \"dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aligned-vec/0.6.4/download\"],\n strip_prefix = \"aligned-vec-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aligned-vec-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__allocator-api2-0.2.21\",\n sha256 = \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/allocator-api2/0.2.21/download\"],\n strip_prefix = \"allocator-api2-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.allocator-api2-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ambient-authority-0.0.2\",\n sha256 = \"e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ambient-authority/0.0.2/download\"],\n strip_prefix = \"ambient-authority-0.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ambient-authority-0.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aml-0.16.4\",\n sha256 = \"c4f8cba7d4260ea05671dda81029f6f718b54402a4ec926a0d9a41bdbb96b415\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aml/0.16.4/download\"],\n strip_prefix = \"aml-0.16.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aml-0.16.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__android_system_properties-0.1.5\",\n sha256 = \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/android_system_properties/0.1.5/download\"],\n strip_prefix = \"android_system_properties-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.android_system_properties-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anes-0.1.6\",\n sha256 = \"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anes/0.1.6/download\"],\n strip_prefix = \"anes-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anes-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstream-1.0.0\",\n sha256 = \"824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstream/1.0.0/download\"],\n strip_prefix = \"anstream-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstream-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-1.0.14\",\n sha256 = \"940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle/1.0.14/download\"],\n strip_prefix = \"anstyle-1.0.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-1.0.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-parse-1.0.0\",\n sha256 = \"52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-parse/1.0.0/download\"],\n strip_prefix = \"anstyle-parse-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-parse-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-query-1.1.5\",\n sha256 = \"40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-query/1.1.5/download\"],\n strip_prefix = \"anstyle-query-1.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-query-1.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-wincon-3.0.11\",\n sha256 = \"291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-wincon/3.0.11/download\"],\n strip_prefix = \"anstyle-wincon-3.0.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-wincon-3.0.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anyhow-1.0.102\",\n sha256 = \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anyhow/1.0.102/download\"],\n strip_prefix = \"anyhow-1.0.102\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anyhow-1.0.102.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ar_archive_writer-0.5.1\",\n sha256 = \"7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ar_archive_writer/0.5.1/download\"],\n strip_prefix = \"ar_archive_writer-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ar_archive_writer-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arbitrary-1.4.2\",\n sha256 = \"c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arbitrary/1.4.2/download\"],\n strip_prefix = \"arbitrary-1.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arbitrary-1.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arrayvec-0.7.6\",\n sha256 = \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arrayvec/0.7.6/download\"],\n strip_prefix = \"arrayvec-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arrayvec-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-0.6.2\",\n sha256 = \"5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs/0.6.2/download\"],\n strip_prefix = \"asn1-rs-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-derive-0.5.1\",\n sha256 = \"965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-derive/0.5.1/download\"],\n strip_prefix = \"asn1-rs-derive-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-derive-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-impl-0.2.0\",\n sha256 = \"7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-impl/0.2.0/download\"],\n strip_prefix = \"asn1-rs-impl-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-impl-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__assertables-7.0.1\",\n sha256 = \"0c24e9d990669fbd16806bff449e4ac644fd9b1fca014760087732fe4102f131\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/assertables/7.0.1/download\"],\n strip_prefix = \"assertables-7.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.assertables-7.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-0.3.6\",\n sha256 = \"0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream/0.3.6/download\"],\n strip_prefix = \"async-stream-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-impl-0.3.6\",\n sha256 = \"c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream-impl/0.3.6/download\"],\n strip_prefix = \"async-stream-impl-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-impl-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-trait-0.1.89\",\n sha256 = \"9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-trait/0.1.89/download\"],\n strip_prefix = \"async-trait-0.1.89\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-trait-0.1.89.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic-waker-1.1.2\",\n sha256 = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic-waker/1.1.2/download\"],\n strip_prefix = \"atomic-waker-1.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic-waker-1.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic_refcell-0.1.14\",\n sha256 = \"21e4227379beff4205943696e6c3e0cd809bacdf3f0edd6e3dd153e2269571a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic_refcell/0.1.14/download\"],\n strip_prefix = \"atomic_refcell-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic_refcell-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__autocfg-1.5.0\",\n sha256 = \"c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/autocfg/1.5.0/download\"],\n strip_prefix = \"autocfg-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.autocfg-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.7.9\",\n sha256 = \"edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.7.9/download\"],\n strip_prefix = \"axum-0.7.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.7.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.8.9\",\n sha256 = \"31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.8.9/download\"],\n strip_prefix = \"axum-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.4.5\",\n sha256 = \"09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.4.5/download\"],\n strip_prefix = \"axum-core-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.5.6\",\n sha256 = \"08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.5.6/download\"],\n strip_prefix = \"axum-core-0.5.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.5.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__backtrace-0.3.76\",\n sha256 = \"bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/backtrace/0.3.76/download\"],\n strip_prefix = \"backtrace-0.3.76\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.backtrace-0.3.76.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base16ct-0.2.0\",\n sha256 = \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base16ct/0.2.0/download\"],\n strip_prefix = \"base16ct-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base16ct-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.13.1\",\n sha256 = \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.13.1/download\"],\n strip_prefix = \"base64-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.21.7\",\n sha256 = \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.21.7/download\"],\n strip_prefix = \"base64-0.21.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.21.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.22.1\",\n sha256 = \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.22.1/download\"],\n strip_prefix = \"base64-0.22.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.22.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64ct-1.8.3\",\n sha256 = \"2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64ct/1.8.3/download\"],\n strip_prefix = \"base64ct-1.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64ct-1.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bincode-1.3.3\",\n sha256 = \"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bincode/1.3.3/download\"],\n strip_prefix = \"bincode-1.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bincode-1.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-set-0.8.0\",\n sha256 = \"08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-set/0.8.0/download\"],\n strip_prefix = \"bit-set-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-set-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-vec-0.8.0\",\n sha256 = \"5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-vec/0.8.0/download\"],\n strip_prefix = \"bit-vec-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-vec-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit_field-0.10.3\",\n sha256 = \"1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit_field/0.10.3/download\"],\n strip_prefix = \"bit_field-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit_field-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-1.3.2\",\n sha256 = \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/1.3.2/download\"],\n strip_prefix = \"bitflags-1.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-1.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-2.11.1\",\n sha256 = \"c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/2.11.1/download\"],\n strip_prefix = \"bitflags-2.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-2.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitvec-1.0.1\",\n sha256 = \"1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitvec/1.0.1/download\"],\n strip_prefix = \"bitvec-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitvec-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__block-buffer-0.10.4\",\n sha256 = \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/block-buffer/0.10.4/download\"],\n strip_prefix = \"block-buffer-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.block-buffer-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bumpalo-3.20.2\",\n sha256 = \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bumpalo/3.20.2/download\"],\n strip_prefix = \"bumpalo-3.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bumpalo-3.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytemuck-1.25.0\",\n sha256 = \"c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytemuck/1.25.0/download\"],\n strip_prefix = \"bytemuck-1.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytemuck-1.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__byteorder-1.5.0\",\n sha256 = \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/byteorder/1.5.0/download\"],\n strip_prefix = \"byteorder-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.byteorder-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytes-1.11.1\",\n sha256 = \"1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytes/1.11.1/download\"],\n strip_prefix = \"bytes-1.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytes-1.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-fs-ext-3.4.5\",\n sha256 = \"d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-fs-ext/3.4.5/download\"],\n strip_prefix = \"cap-fs-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-fs-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-net-ext-3.4.5\",\n sha256 = \"20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-net-ext/3.4.5/download\"],\n strip_prefix = \"cap-net-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-net-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-primitives-3.4.5\",\n sha256 = \"b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-primitives/3.4.5/download\"],\n strip_prefix = \"cap-primitives-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-primitives-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-rand-3.4.5\",\n sha256 = \"d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-rand/3.4.5/download\"],\n strip_prefix = \"cap-rand-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-rand-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-std-3.4.5\",\n sha256 = \"b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-std/3.4.5/download\"],\n strip_prefix = \"cap-std-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-std-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-time-ext-3.4.5\",\n sha256 = \"def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-time-ext/3.4.5/download\"],\n strip_prefix = \"cap-time-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-time-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cast-0.3.0\",\n sha256 = \"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cast/0.3.0/download\"],\n strip_prefix = \"cast-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cast-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cesu8-1.1.0\",\n sha256 = \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cesu8/1.1.0/download\"],\n strip_prefix = \"cesu8-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cesu8-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg_aliases-0.2.1\",\n sha256 = \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg_aliases/0.2.1/download\"],\n strip_prefix = \"cfg_aliases-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg_aliases-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20-0.9.1\",\n sha256 = \"c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20/0.9.1/download\"],\n strip_prefix = \"chacha20-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20poly1305-0.10.1\",\n sha256 = \"10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20poly1305/0.10.1/download\"],\n strip_prefix = \"chacha20poly1305-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20poly1305-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chrono-0.4.44\",\n sha256 = \"c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chrono/0.4.44/download\"],\n strip_prefix = \"chrono-0.4.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chrono-0.4.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-0.2.2\",\n sha256 = \"42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium/0.2.2/download\"],\n strip_prefix = \"ciborium-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-io-0.2.2\",\n sha256 = \"05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-io/0.2.2/download\"],\n strip_prefix = \"ciborium-io-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-io-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-ll-0.2.2\",\n sha256 = \"57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-ll/0.2.2/download\"],\n strip_prefix = \"ciborium-ll-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-ll-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap-4.6.1\",\n sha256 = \"1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap/4.6.1/download\"],\n strip_prefix = \"clap-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_builder-4.6.0\",\n sha256 = \"714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_builder/4.6.0/download\"],\n strip_prefix = \"clap_builder-4.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_builder-4.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_derive-4.6.1\",\n sha256 = \"f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_derive/4.6.1/download\"],\n strip_prefix = \"clap_derive-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_derive-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_lex-1.1.0\",\n sha256 = \"c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_lex/1.1.0/download\"],\n strip_prefix = \"clap_lex-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_lex-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cobs-0.3.0\",\n sha256 = \"0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cobs/0.3.0/download\"],\n strip_prefix = \"cobs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cobs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colorchoice-1.0.5\",\n sha256 = \"1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colorchoice/1.0.5/download\"],\n strip_prefix = \"colorchoice-1.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colorchoice-1.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colored-2.2.0\",\n sha256 = \"117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colored/2.2.0/download\"],\n strip_prefix = \"colored-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colored-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__combine-4.6.7\",\n sha256 = \"ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/combine/4.6.7/download\"],\n strip_prefix = \"combine-4.6.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.combine-4.6.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-fds-0.3.3\",\n sha256 = \"1b60b5124979fccd9addd89d8b97a1d6eebb4950694520c75ddd722535ea443f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-fds/0.3.3/download\"],\n strip_prefix = \"command-fds-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-fds-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-group-5.0.1\",\n sha256 = \"a68fa787550392a9d58f44c21a3022cfb3ea3e2458b7f85d3b399d0ceeccf409\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-group/5.0.1/download\"],\n strip_prefix = \"command-group-5.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-group-5.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__console-0.15.11\",\n sha256 = \"054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/console/0.15.11/download\"],\n strip_prefix = \"console-0.15.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.console-0.15.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-default-1.0.0\",\n sha256 = \"0b396d1f76d455557e1218ec8066ae14bba60b4b36ecd55577ba979f5db7ecaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-default/1.0.0/download\"],\n strip_prefix = \"const-default-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-default-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-hex-1.18.1\",\n sha256 = \"531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-hex/1.18.1/download\"],\n strip_prefix = \"const-hex-1.18.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-hex-1.18.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-oid-0.9.6\",\n sha256 = \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-oid/0.9.6/download\"],\n strip_prefix = \"const-oid-0.9.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-oid-0.9.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_fn-0.4.12\",\n sha256 = \"413d67b29ef1021b4d60f4aa1e925ca031751e213832b4b1d588fae623c05c60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_fn/0.4.12/download\"],\n strip_prefix = \"const_fn-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_fn-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format-0.2.36\",\n sha256 = \"4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format/0.2.36/download\"],\n strip_prefix = \"const_format-0.2.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format-0.2.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format_proc_macros-0.2.34\",\n sha256 = \"1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format_proc_macros/0.2.34/download\"],\n strip_prefix = \"const_format_proc_macros-0.2.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format_proc_macros-0.2.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.10.1\",\n sha256 = \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.10.1/download\"],\n strip_prefix = \"core-foundation-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.9.4\",\n sha256 = \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.9.4/download\"],\n strip_prefix = \"core-foundation-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-sys-0.8.7\",\n sha256 = \"773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation-sys/0.8.7/download\"],\n strip_prefix = \"core-foundation-sys-0.8.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-sys-0.8.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__coset-0.3.8\",\n sha256 = \"f4c8cc80f631f8307b887faca24dcc3abc427cd0367f6eb6188f6e8f5b7ad8fb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/coset/0.3.8/download\"],\n strip_prefix = \"coset-0.3.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.coset-0.3.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpp_demangle-0.4.5\",\n sha256 = \"f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpp_demangle/0.4.5/download\"],\n strip_prefix = \"cpp_demangle-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpp_demangle-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-0.119.1\",\n sha256 = \"359c047862387091eb0363ce8b5cabb4a8be1cc16a6fa151fe079c09796461f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-meta-0.119.1\",\n sha256 = \"6bf62afda29fcde09d922f125a7d47880b540fd1de069558bfa637b4ce7aa1ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bforest-0.119.1\",\n sha256 = \"3537273471ebdae55791869ee16f71a4a51e34ad47cdc64269a9c2255b5dce03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bforest/0.119.1/download\"],\n strip_prefix = \"cranelift-bforest-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bforest-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bitset-0.119.1\",\n sha256 = \"b872fde1717c508f842ad1ad8768fbe16caf7e8e049215b0e09429bbf00d3ce9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bitset/0.119.1/download\"],\n strip_prefix = \"cranelift-bitset-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bitset-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-0.119.1\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/cranelift-codegen:patch_build_rs.patch\",\n ],\n sha256 = \"52a74ef998eb9f985dc0d987d3aac0fe4bd1b59ec707461b2d6d20cda1b0a5e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-meta-0.119.1\",\n sha256 = \"7a04a532b9a7b69c28e7e37d15bca7f7f5cc56399df890ec399333e2d548004a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-shared-0.119.1\",\n sha256 = \"95c4556174c6eb7d586bd1715b7f9c3a43a0835d6a95715893718b2f263af895\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-shared/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-shared-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-shared-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-control-0.119.1\",\n sha256 = \"18d8e9ae221e352dbea7f6f389705365f8128e7e0a7de5cf787ab7b2ccd1c522\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-control/0.119.1/download\"],\n strip_prefix = \"cranelift-control-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-control-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-entity-0.119.1\",\n sha256 = \"40d10b531267cc86ba4fbb7b718b646df503713828b37841a867f332954b24ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-entity/0.119.1/download\"],\n strip_prefix = \"cranelift-entity-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-entity-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-frontend-0.119.1\",\n sha256 = \"07540e6f75357d655743008965018fe243434ec6755078794616fde31f783a03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-frontend/0.119.1/download\"],\n strip_prefix = \"cranelift-frontend-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-frontend-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-isle-0.119.1\",\n sha256 = \"3e0909e87af454a7ff542ece2d66f901f2cc9483ab36572a924eb5e58ce51fc0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-isle/0.119.1/download\"],\n strip_prefix = \"cranelift-isle-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-isle-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-native-0.119.1\",\n sha256 = \"5f2d3963401ea1f8f84bdb0b654f1ca186be97e6ca94ccd2a8037b9edee47e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-native/0.119.1/download\"],\n strip_prefix = \"cranelift-native-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-native-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-srcgen-0.119.1\",\n sha256 = \"823558b0a406b7f7d5dad0c925b29e8192792476faaa71615d40cb5a842a9040\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-srcgen/0.119.1/download\"],\n strip_prefix = \"cranelift-srcgen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-srcgen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crc32fast-1.5.0\",\n sha256 = \"9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crc32fast/1.5.0/download\"],\n strip_prefix = \"crc32fast-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crc32fast-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-0.5.1\",\n sha256 = \"f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion/0.5.1/download\"],\n strip_prefix = \"criterion-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-macro-0.4.0\",\n sha256 = \"288a8f36b28a19d7dbd572c76006c0a0eba1f3bf912a254dda211c6f665e7ffc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-macro/0.4.0/download\"],\n strip_prefix = \"criterion-macro-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-macro-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-plot-0.5.0\",\n sha256 = \"6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-plot/0.5.0/download\"],\n strip_prefix = \"criterion-plot-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-plot-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-deque-0.8.6\",\n sha256 = \"9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-deque/0.8.6/download\"],\n strip_prefix = \"crossbeam-deque-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-deque-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-epoch-0.9.18\",\n sha256 = \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-epoch/0.9.18/download\"],\n strip_prefix = \"crossbeam-epoch-0.9.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-epoch-0.9.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-utils-0.8.21\",\n sha256 = \"d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-utils/0.8.21/download\"],\n strip_prefix = \"crossbeam-utils-0.8.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-utils-0.8.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crunchy-0.2.4\",\n sha256 = \"460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crunchy/0.2.4/download\"],\n strip_prefix = \"crunchy-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crunchy-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-bigint-0.5.5\",\n sha256 = \"0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-bigint/0.5.5/download\"],\n strip_prefix = \"crypto-bigint-0.5.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-bigint-0.5.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-4.1.3\",\n sha256 = \"97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek/4.1.3/download\"],\n strip_prefix = \"curve25519-dalek-4.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-4.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-derive-0.1.1\",\n sha256 = \"f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek-derive/0.1.1/download\"],\n strip_prefix = \"curve25519-dalek-derive-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-derive-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.20.11\",\n sha256 = \"fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.20.11/download\"],\n strip_prefix = \"darling-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.21.3\",\n sha256 = \"9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.21.3/download\"],\n strip_prefix = \"darling-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.20.11\",\n sha256 = \"0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.20.11/download\"],\n strip_prefix = \"darling_core-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.21.3\",\n sha256 = \"1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.21.3/download\"],\n strip_prefix = \"darling_core-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.20.11\",\n sha256 = \"fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.20.11/download\"],\n strip_prefix = \"darling_macro-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.21.3\",\n sha256 = \"d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.21.3/download\"],\n strip_prefix = \"darling_macro-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__data-encoding-2.10.0\",\n sha256 = \"d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/data-encoding/2.10.0/download\"],\n strip_prefix = \"data-encoding-2.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.data-encoding-2.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__debugid-0.8.0\",\n sha256 = \"bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/debugid/0.8.0/download\"],\n strip_prefix = \"debugid-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.debugid-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-0.7.10\",\n sha256 = \"e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der/0.7.10/download\"],\n strip_prefix = \"der-0.7.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-0.7.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-parser-9.0.0\",\n sha256 = \"5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der-parser/9.0.0/download\"],\n strip_prefix = \"der-parser-9.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-parser-9.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der_derive-0.7.3\",\n sha256 = \"8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der_derive/0.7.3/download\"],\n strip_prefix = \"der_derive-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der_derive-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__deranged-0.3.11\",\n sha256 = \"b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/deranged/0.3.11/download\"],\n strip_prefix = \"deranged-0.3.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.deranged-0.3.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder-0.20.2\",\n sha256 = \"507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder/0.20.2/download\"],\n strip_prefix = \"derive_builder-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_core-0.20.2\",\n sha256 = \"2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_core/0.20.2/download\"],\n strip_prefix = \"derive_builder_core-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_core-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_macro-0.20.2\",\n sha256 = \"ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_macro/0.20.2/download\"],\n strip_prefix = \"derive_builder_macro-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_macro-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__digest-0.10.7\",\n sha256 = \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/digest/0.10.7/download\"],\n strip_prefix = \"digest-0.10.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.digest-0.10.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__directories-next-2.0.0\",\n sha256 = \"339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/directories-next/2.0.0/download\"],\n strip_prefix = \"directories-next-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.directories-next-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-4.0.0\",\n sha256 = \"ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs/4.0.0/download\"],\n strip_prefix = \"dirs-4.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-4.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-0.3.7\",\n sha256 = \"1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys/0.3.7/download\"],\n strip_prefix = \"dirs-sys-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-next-0.1.2\",\n sha256 = \"4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys-next/0.1.2/download\"],\n strip_prefix = \"dirs-sys-next-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-next-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__displaydoc-0.2.5\",\n sha256 = \"97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/displaydoc/0.2.5/download\"],\n strip_prefix = \"displaydoc-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.displaydoc-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-0.11.0\",\n sha256 = \"1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast/0.11.0/download\"],\n strip_prefix = \"downcast-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-rs-1.2.1\",\n sha256 = \"75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast-rs/1.2.1/download\"],\n strip_prefix = \"downcast-rs-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-rs-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dyn-clone-1.0.20\",\n sha256 = \"d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dyn-clone/1.0.20/download\"],\n strip_prefix = \"dyn-clone-1.0.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dyn-clone-1.0.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ecdsa-0.16.9\",\n sha256 = \"ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ecdsa/0.16.9/download\"],\n strip_prefix = \"ecdsa-0.16.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ecdsa-0.16.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-2.2.3\",\n sha256 = \"115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519/2.2.3/download\"],\n strip_prefix = \"ed25519-2.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-2.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-dalek-2.2.0\",\n sha256 = \"70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519-dalek/2.2.0/download\"],\n strip_prefix = \"ed25519-dalek-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-dalek-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__either-1.15.0\",\n sha256 = \"48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/either/1.15.0/download\"],\n strip_prefix = \"either-1.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.either-1.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elf-0.7.4\",\n sha256 = \"4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elf/0.7.4/download\"],\n strip_prefix = \"elf-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elf-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elliptic-curve-0.13.8\",\n sha256 = \"b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elliptic-curve/0.13.8/download\"],\n strip_prefix = \"elliptic-curve-0.13.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elliptic-curve-0.13.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.4.0\",\n sha256 = \"ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.4.0/download\"],\n strip_prefix = \"embedded-io-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.6.1\",\n sha256 = \"edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.6.1/download\"],\n strip_prefix = \"embedded-io-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encode_unicode-1.0.0\",\n sha256 = \"34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encode_unicode/1.0.0/download\"],\n strip_prefix = \"encode_unicode-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encode_unicode-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encoding_rs-0.8.35\",\n sha256 = \"75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encoding_rs/0.8.35/download\"],\n strip_prefix = \"encoding_rs-0.8.35\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encoding_rs-0.8.35.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_filter-1.0.1\",\n sha256 = \"32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_filter/1.0.1/download\"],\n strip_prefix = \"env_filter-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_filter-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_logger-0.11.10\",\n sha256 = \"0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_logger/0.11.10/download\"],\n strip_prefix = \"env_logger-0.11.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_logger-0.11.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-0.4.2\",\n sha256 = \"4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator/0.4.2/download\"],\n strip_prefix = \"equator-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-macro-0.4.2\",\n sha256 = \"44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator-macro/0.4.2/download\"],\n strip_prefix = \"equator-macro-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-macro-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__errno-0.3.14\",\n sha256 = \"39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/errno/0.3.14/download\"],\n strip_prefix = \"errno-0.3.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.errno-0.3.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__error-chain-0.12.4\",\n sha256 = \"2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/error-chain/0.12.4/download\"],\n strip_prefix = \"error-chain-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.error-chain-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fallible-iterator-0.3.0\",\n sha256 = \"2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fallible-iterator/0.3.0/download\"],\n strip_prefix = \"fallible-iterator-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fallible-iterator-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fastrand-2.4.1\",\n sha256 = \"9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fastrand/2.4.1/download\"],\n strip_prefix = \"fastrand-2.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fastrand-2.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fd-lock-4.0.4\",\n sha256 = \"0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fd-lock/4.0.4/download\"],\n strip_prefix = \"fd-lock-4.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fd-lock-4.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ff-0.13.1\",\n sha256 = \"c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ff/0.13.1/download\"],\n strip_prefix = \"ff-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ff-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fiat-crypto-0.2.9\",\n sha256 = \"28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fiat-crypto/0.2.9/download\"],\n strip_prefix = \"fiat-crypto-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fiat-crypto-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__filetime-0.2.27\",\n sha256 = \"f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/filetime/0.2.27/download\"],\n strip_prefix = \"filetime-0.2.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.filetime-0.2.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__findshlibs-0.10.2\",\n sha256 = \"40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/findshlibs/0.10.2/download\"],\n strip_prefix = \"findshlibs-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.findshlibs-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.4.2\",\n sha256 = \"0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.4.2/download\"],\n strip_prefix = \"fixedbitset-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.5.7\",\n sha256 = \"1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.5.7/download\"],\n strip_prefix = \"fixedbitset-0.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.5.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flagset-0.4.7\",\n sha256 = \"b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flagset/0.4.7/download\"],\n strip_prefix = \"flagset-0.4.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flagset-0.4.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flate2-1.1.9\",\n sha256 = \"843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flate2/1.1.9/download\"],\n strip_prefix = \"flate2-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flate2-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fnv-1.0.7\",\n sha256 = \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fnv/1.0.7/download\"],\n strip_prefix = \"fnv-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fnv-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foldhash-0.1.5\",\n sha256 = \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.1.5/download\"],\n strip_prefix = \"foldhash-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foldhash-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-0.3.2\",\n sha256 = \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types/0.3.2/download\"],\n strip_prefix = \"foreign-types-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-shared-0.1.1\",\n sha256 = \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types-shared/0.1.1/download\"],\n strip_prefix = \"foreign-types-shared-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-shared-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__form_urlencoded-1.2.2\",\n sha256 = \"cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/form_urlencoded/1.2.2/download\"],\n strip_prefix = \"form_urlencoded-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.form_urlencoded-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fragile-2.1.0\",\n sha256 = \"8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fragile/2.1.0/download\"],\n strip_prefix = \"fragile-2.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fragile-2.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fs-set-times-0.20.3\",\n sha256 = \"94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fs-set-times/0.20.3/download\"],\n strip_prefix = \"fs-set-times-0.20.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fs-set-times-0.20.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__funty-2.0.0\",\n sha256 = \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/funty/2.0.0/download\"],\n strip_prefix = \"funty-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.funty-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-0.3.32\",\n sha256 = \"8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures/0.3.32/download\"],\n strip_prefix = \"futures-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-channel-0.3.32\",\n sha256 = \"07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-channel/0.3.32/download\"],\n strip_prefix = \"futures-channel-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-channel-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-core-0.3.32\",\n sha256 = \"7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-core/0.3.32/download\"],\n strip_prefix = \"futures-core-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-core-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-executor-0.3.32\",\n sha256 = \"baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-executor/0.3.32/download\"],\n strip_prefix = \"futures-executor-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-executor-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-io-0.3.32\",\n sha256 = \"cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-io/0.3.32/download\"],\n strip_prefix = \"futures-io-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-io-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-macro-0.3.32\",\n sha256 = \"e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-macro/0.3.32/download\"],\n strip_prefix = \"futures-macro-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-macro-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-sink-0.3.32\",\n sha256 = \"c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-sink/0.3.32/download\"],\n strip_prefix = \"futures-sink-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-sink-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-task-0.3.32\",\n sha256 = \"037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-task/0.3.32/download\"],\n strip_prefix = \"futures-task-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-task-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-util-0.3.32\",\n sha256 = \"389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-util/0.3.32/download\"],\n strip_prefix = \"futures-util-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-util-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.4.2\",\n sha256 = \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.4.2/download\"],\n strip_prefix = \"getrandom-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getset-0.1.6\",\n sha256 = \"9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getset/0.1.6/download\"],\n strip_prefix = \"getset-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getset-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ghash-0.5.1\",\n sha256 = \"f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ghash/0.5.1/download\"],\n strip_prefix = \"ghash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ghash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.31.1\",\n sha256 = \"07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.31.1/download\"],\n strip_prefix = \"gimli-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.32.3\",\n sha256 = \"e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.32.3/download\"],\n strip_prefix = \"gimli-0.32.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.32.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__goblin-0.8.2\",\n sha256 = \"1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/goblin/0.8.2/download\"],\n strip_prefix = \"goblin-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.goblin-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest-0.14.2\",\n sha256 = \"06597b7d02ee58b9a37f522785ac15b9e18c6b178747c4439a6c03fbb35ea753\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest/0.14.2/download\"],\n strip_prefix = \"googletest-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest_macro-0.14.2\",\n sha256 = \"c31d9f07c9c19b855faebf71637be3b43f8e13a518aece5d61a3beee7710b4ef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest_macro/0.14.2/download\"],\n strip_prefix = \"googletest_macro-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest_macro-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__group-0.13.0\",\n sha256 = \"f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/group/0.13.0/download\"],\n strip_prefix = \"group-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.group-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__h2-0.4.13\",\n sha256 = \"2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/h2/0.4.13/download\"],\n strip_prefix = \"h2-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.h2-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__half-2.7.1\",\n sha256 = \"6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/half/2.7.1/download\"],\n strip_prefix = \"half-2.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.half-2.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.14.5\",\n sha256 = \"e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.14.5/download\"],\n strip_prefix = \"hashbrown-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.15.5\",\n sha256 = \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.15.5/download\"],\n strip_prefix = \"hashbrown-0.15.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.15.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.4.1\",\n sha256 = \"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.4.1/download\"],\n strip_prefix = \"heck-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.5.0\",\n sha256 = \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.5.0/download\"],\n strip_prefix = \"heck-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hermit-abi-0.5.2\",\n sha256 = \"fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hermit-abi/0.5.2/download\"],\n strip_prefix = \"hermit-abi-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hermit-abi-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hex-0.4.3\",\n sha256 = \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hex/0.4.3/download\"],\n strip_prefix = \"hex-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hex-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hkdf-0.12.4\",\n sha256 = \"7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hkdf/0.12.4/download\"],\n strip_prefix = \"hkdf-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hkdf-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hmac-0.12.1\",\n sha256 = \"6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hmac/0.12.1/download\"],\n strip_prefix = \"hmac-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hmac-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__home-0.5.12\",\n sha256 = \"cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/home/0.5.12/download\"],\n strip_prefix = \"home-0.5.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.home-0.5.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hostname-0.3.1\",\n sha256 = \"3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hostname/0.3.1/download\"],\n strip_prefix = \"hostname-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hostname-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hpke-0.11.0\",\n sha256 = \"e04a5933a381bb81f00b083fce6b4528e16d735dbeecbb2bdb45e0dbbf3f7e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hpke/0.11.0/download\"],\n strip_prefix = \"hpke-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hpke-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-1.4.0\",\n sha256 = \"e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http/1.4.0/download\"],\n strip_prefix = \"http-1.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-1.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-auth-0.1.10\",\n sha256 = \"150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-auth/0.1.10/download\"],\n strip_prefix = \"http-auth-0.1.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-auth-0.1.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-1.0.1\",\n sha256 = \"1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body/1.0.1/download\"],\n strip_prefix = \"http-body-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-util-0.1.3\",\n sha256 = \"b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body-util/0.1.3/download\"],\n strip_prefix = \"http-body-util-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-util-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httparse-1.10.1\",\n sha256 = \"6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httparse/1.10.1/download\"],\n strip_prefix = \"httparse-1.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httparse-1.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httpdate-1.0.3\",\n sha256 = \"df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httpdate/1.0.3/download\"],\n strip_prefix = \"httpdate-1.0.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httpdate-1.0.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-2.3.0\",\n sha256 = \"135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime/2.3.0/download\"],\n strip_prefix = \"humantime-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-serde-1.1.1\",\n sha256 = \"57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime-serde/1.1.1/download\"],\n strip_prefix = \"humantime-serde-1.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-serde-1.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-1.9.0\",\n sha256 = \"6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper/1.9.0/download\"],\n strip_prefix = \"hyper-1.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-1.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-rustls-0.27.9\",\n sha256 = \"33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-rustls/0.27.9/download\"],\n strip_prefix = \"hyper-rustls-0.27.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-rustls-0.27.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-timeout-0.5.2\",\n sha256 = \"2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-timeout/0.5.2/download\"],\n strip_prefix = \"hyper-timeout-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-timeout-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-util-0.1.20\",\n sha256 = \"96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-util/0.1.20/download\"],\n strip_prefix = \"hyper-util-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-util-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-0.1.65\",\n sha256 = \"e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone/0.1.65/download\"],\n strip_prefix = \"iana-time-zone-0.1.65\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-0.1.65.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-haiku-0.1.2\",\n sha256 = \"f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download\"],\n strip_prefix = \"iana-time-zone-haiku-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-haiku-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_collections-2.2.0\",\n sha256 = \"2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_collections/2.2.0/download\"],\n strip_prefix = \"icu_collections-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_collections-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_locale_core-2.2.0\",\n sha256 = \"92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_locale_core/2.2.0/download\"],\n strip_prefix = \"icu_locale_core-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_locale_core-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer-2.2.0\",\n sha256 = \"c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer/2.2.0/download\"],\n strip_prefix = \"icu_normalizer-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer_data-2.2.0\",\n sha256 = \"da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer_data/2.2.0/download\"],\n strip_prefix = \"icu_normalizer_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties-2.2.0\",\n sha256 = \"bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties/2.2.0/download\"],\n strip_prefix = \"icu_properties-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties_data-2.2.0\",\n sha256 = \"8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties_data/2.2.0/download\"],\n strip_prefix = \"icu_properties_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_provider-2.2.0\",\n sha256 = \"139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_provider/2.2.0/download\"],\n strip_prefix = \"icu_provider-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_provider-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__id-arena-2.3.0\",\n sha256 = \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/id-arena/2.3.0/download\"],\n strip_prefix = \"id-arena-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.id-arena-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ident_case-1.0.1\",\n sha256 = \"b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ident_case/1.0.1/download\"],\n strip_prefix = \"ident_case-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ident_case-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna-1.1.0\",\n sha256 = \"3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna/1.1.0/download\"],\n strip_prefix = \"idna-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna_adapter-1.2.1\",\n sha256 = \"3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna_adapter/1.2.1/download\"],\n strip_prefix = \"idna_adapter-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna_adapter-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-nostd-0.4.0\",\n sha256 = \"8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap-nostd/0.4.0/download\"],\n strip_prefix = \"indexmap-nostd-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-nostd-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indicatif-0.17.11\",\n sha256 = \"183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indicatif/0.17.11/download\"],\n strip_prefix = \"indicatif-0.17.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indicatif-0.17.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inferno-0.11.21\",\n sha256 = \"232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inferno/0.11.21/download\"],\n strip_prefix = \"inferno-0.11.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inferno-0.11.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-extras-0.18.4\",\n sha256 = \"2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-extras/0.18.4/download\"],\n strip_prefix = \"io-extras-0.18.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-extras-0.18.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-lifetimes-2.0.4\",\n sha256 = \"06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-lifetimes/2.0.4/download\"],\n strip_prefix = \"io-lifetimes-2.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-lifetimes-2.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ipnet-2.12.0\",\n sha256 = \"d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ipnet/2.12.0/download\"],\n strip_prefix = \"ipnet-2.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ipnet-2.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iri-string-0.7.12\",\n sha256 = \"25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iri-string/0.7.12/download\"],\n strip_prefix = \"iri-string-0.7.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iri-string-0.7.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is-terminal-0.4.17\",\n sha256 = \"3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is-terminal/0.4.17/download\"],\n strip_prefix = \"is-terminal-0.4.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is-terminal-0.4.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is_terminal_polyfill-1.70.2\",\n sha256 = \"a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is_terminal_polyfill/1.70.2/download\"],\n strip_prefix = \"is_terminal_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is_terminal_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.10.5\",\n sha256 = \"b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.10.5/download\"],\n strip_prefix = \"itertools-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.12.1\",\n sha256 = \"ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.12.1/download\"],\n strip_prefix = \"itertools-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.13.0\",\n sha256 = \"413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.13.0/download\"],\n strip_prefix = \"itertools-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.14.0\",\n sha256 = \"2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.14.0/download\"],\n strip_prefix = \"itertools-0.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itoa-1.0.18\",\n sha256 = \"8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itoa/1.0.18/download\"],\n strip_prefix = \"itoa-1.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itoa-1.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-0.2.24\",\n sha256 = \"f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff/0.2.24/download\"],\n strip_prefix = \"jiff-0.2.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-0.2.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-static-0.2.24\",\n sha256 = \"e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff-static/0.2.24/download\"],\n strip_prefix = \"jiff-static-0.2.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-static-0.2.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-0.21.1\",\n sha256 = \"1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni/0.21.1/download\"],\n strip_prefix = \"jni-0.21.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-0.21.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.3.1\",\n sha256 = \"41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.3.1/download\"],\n strip_prefix = \"jni-sys-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.4.1\",\n sha256 = \"c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.4.1/download\"],\n strip_prefix = \"jni-sys-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-macros-0.4.1\",\n sha256 = \"38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys-macros/0.4.1/download\"],\n strip_prefix = \"jni-sys-macros-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-macros-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jobserver-0.1.34\",\n sha256 = \"9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jobserver/0.1.34/download\"],\n strip_prefix = \"jobserver-0.1.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jobserver-0.1.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__js-sys-0.3.95\",\n sha256 = \"2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/js-sys/0.3.95/download\"],\n strip_prefix = \"js-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.js-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jwt-0.16.0\",\n sha256 = \"6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jwt/0.16.0/download\"],\n strip_prefix = \"jwt-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jwt-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__keccak-0.1.6\",\n sha256 = \"cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/keccak/0.1.6/download\"],\n strip_prefix = \"keccak-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.keccak-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst-0.2.20\",\n sha256 = \"128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst/0.2.20/download\"],\n strip_prefix = \"konst-0.2.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst-0.2.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst_macro_rules-0.2.19\",\n sha256 = \"a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst_macro_rules/0.2.19/download\"],\n strip_prefix = \"konst_macro_rules-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst_macro_rules-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lazy_static-1.5.0\",\n sha256 = \"bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lazy_static/1.5.0/download\"],\n strip_prefix = \"lazy_static-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lazy_static-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128-0.2.6\",\n sha256 = \"6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128/0.2.6/download\"],\n strip_prefix = \"leb128-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128fmt-0.1.0\",\n sha256 = \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128fmt/0.1.0/download\"],\n strip_prefix = \"leb128fmt-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128fmt-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libm-0.2.16\",\n sha256 = \"b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libm/0.2.16/download\"],\n strip_prefix = \"libm-0.2.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libm-0.2.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libredox-0.1.16\",\n sha256 = \"e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libredox/0.1.16/download\"],\n strip_prefix = \"libredox-0.1.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libredox-0.1.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libyaml-rs-0.3.0\",\n sha256 = \"2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libyaml-rs/0.3.0/download\"],\n strip_prefix = \"libyaml-rs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libyaml-rs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linked_list_allocator-0.10.5\",\n sha256 = \"9afa463f5405ee81cdb9cc2baf37e08ec7e4c8209442b5d72c04cfb2cd6e6286\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linked_list_allocator/0.10.5/download\"],\n strip_prefix = \"linked_list_allocator-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linked_list_allocator-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.12.1\",\n sha256 = \"32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.12.1/download\"],\n strip_prefix = \"linux-raw-sys-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.4.15\",\n sha256 = \"d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.4.15/download\"],\n strip_prefix = \"linux-raw-sys-0.4.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.4.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__litemap-0.8.2\",\n sha256 = \"92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/litemap/0.8.2/download\"],\n strip_prefix = \"litemap-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.litemap-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lock_api-0.4.14\",\n sha256 = \"224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lock_api/0.4.14/download\"],\n strip_prefix = \"lock_api-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lock_api-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__log-0.4.29\",\n sha256 = \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/log/0.4.29/download\"],\n strip_prefix = \"log-0.4.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.log-0.4.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lru-slab-0.1.2\",\n sha256 = \"112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lru-slab/0.1.2/download\"],\n strip_prefix = \"lru-slab-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lru-slab-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lzma-sys-0.1.20\",\n sha256 = \"5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lzma-sys/0.1.20/download\"],\n strip_prefix = \"lzma-sys-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lzma-sys-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mach2-0.4.3\",\n sha256 = \"d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mach2/0.4.3/download\"],\n strip_prefix = \"mach2-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mach2-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maplit-1.0.2\",\n sha256 = \"3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maplit/1.0.2/download\"],\n strip_prefix = \"maplit-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maplit-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__match_cfg-0.1.0\",\n sha256 = \"ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/match_cfg/0.1.0/download\"],\n strip_prefix = \"match_cfg-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.match_cfg-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.7.3\",\n sha256 = \"0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.7.3/download\"],\n strip_prefix = \"matchit-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.8.4\",\n sha256 = \"47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.8.4/download\"],\n strip_prefix = \"matchit-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maybe-owned-0.3.4\",\n sha256 = \"4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maybe-owned/0.3.4/download\"],\n strip_prefix = \"maybe-owned-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maybe-owned-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memchr-2.8.0\",\n sha256 = \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memchr/2.8.0/download\"],\n strip_prefix = \"memchr-2.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memchr-2.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memfd-0.6.5\",\n sha256 = \"ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memfd/0.6.5/download\"],\n strip_prefix = \"memfd-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memfd-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memmap2-0.9.10\",\n sha256 = \"714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memmap2/0.9.10/download\"],\n strip_prefix = \"memmap2-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memmap2-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memoffset-0.9.1\",\n sha256 = \"488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memoffset/0.9.1/download\"],\n strip_prefix = \"memoffset-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memoffset-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mime-0.3.17\",\n sha256 = \"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mime/0.3.17/download\"],\n strip_prefix = \"mime-0.3.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mime-0.3.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__minimal-lexical-0.2.1\",\n sha256 = \"68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/minimal-lexical/0.2.1/download\"],\n strip_prefix = \"minimal-lexical-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.minimal-lexical-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__miniz_oxide-0.8.9\",\n sha256 = \"1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/miniz_oxide/0.8.9/download\"],\n strip_prefix = \"miniz_oxide-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.miniz_oxide-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mio-1.2.0\",\n sha256 = \"50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mio/1.2.0/download\"],\n strip_prefix = \"mio-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mio-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall-0.13.1\",\n sha256 = \"39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall/0.13.1/download\"],\n strip_prefix = \"mockall-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall_derive-0.13.1\",\n sha256 = \"25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall_derive/0.13.1/download\"],\n strip_prefix = \"mockall_derive-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall_derive-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__multimap-0.10.1\",\n sha256 = \"1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/multimap/0.10.1/download\"],\n strip_prefix = \"multimap-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.multimap-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-core-0.7.0\",\n sha256 = \"72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-core/0.7.0/download\"],\n strip_prefix = \"netlink-packet-core-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-core-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-route-0.19.0\",\n sha256 = \"74c171cd77b4ee8c7708da746ce392440cb7bcf618d122ec9ecc607b12938bf4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-route/0.19.0/download\"],\n strip_prefix = \"netlink-packet-route-0.19.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-route-0.19.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-utils-0.5.2\",\n sha256 = \"0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-utils/0.5.2/download\"],\n strip_prefix = \"netlink-packet-utils-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-utils-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-proto-0.11.5\",\n sha256 = \"72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-proto/0.11.5/download\"],\n strip_prefix = \"netlink-proto-0.11.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-proto-0.11.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-sys-0.8.8\",\n sha256 = \"cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-sys/0.8.8/download\"],\n strip_prefix = \"netlink-sys-0.8.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-sys-0.8.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.26.4\",\n sha256 = \"598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.26.4/download\"],\n strip_prefix = \"nix-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.27.1\",\n sha256 = \"2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.27.1/download\"],\n strip_prefix = \"nix-0.27.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.27.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.31.2\",\n sha256 = \"5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.31.2/download\"],\n strip_prefix = \"nix-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-7.1.3\",\n sha256 = \"d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/7.1.3/download\"],\n strip_prefix = \"nom-7.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-7.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-8.0.0\",\n sha256 = \"df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/8.0.0/download\"],\n strip_prefix = \"nom-8.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-8.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nu-ansi-term-0.50.3\",\n sha256 = \"7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nu-ansi-term/0.50.3/download\"],\n strip_prefix = \"nu-ansi-term-0.50.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nu-ansi-term-0.50.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-0.4.6\",\n sha256 = \"a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint/0.4.6/download\"],\n strip_prefix = \"num-bigint-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-dig-0.8.6\",\n sha256 = \"e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint-dig/0.8.6/download\"],\n strip_prefix = \"num-bigint-dig-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-dig-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-conv-0.1.0\",\n sha256 = \"51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-conv/0.1.0/download\"],\n strip_prefix = \"num-conv-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-conv-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-format-0.4.4\",\n sha256 = \"a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-format/0.4.4/download\"],\n strip_prefix = \"num-format-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-format-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-integer-0.1.46\",\n sha256 = \"7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-integer/0.1.46/download\"],\n strip_prefix = \"num-integer-0.1.46\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-integer-0.1.46.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-iter-0.1.45\",\n sha256 = \"1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-iter/0.1.45/download\"],\n strip_prefix = \"num-iter-0.1.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-iter-0.1.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-traits-0.2.19\",\n sha256 = \"071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-traits/0.2.19/download\"],\n strip_prefix = \"num-traits-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-traits-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num_threads-0.1.7\",\n sha256 = \"5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num_threads/0.1.7/download\"],\n strip_prefix = \"num_threads-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num_threads-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__number_prefix-0.4.0\",\n sha256 = \"830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/number_prefix/0.4.0/download\"],\n strip_prefix = \"number_prefix-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.number_prefix-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.36.7\",\n sha256 = \"62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.36.7/download\"],\n strip_prefix = \"object-0.36.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.36.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.37.3\",\n sha256 = \"ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.37.3/download\"],\n strip_prefix = \"object-0.37.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.37.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-client-0.15.0\",\n sha256 = \"9b74df13319e08bc386d333d3dc289c774c88cc543cae31f5347db07b5ec2172\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-client/0.15.0/download\"],\n strip_prefix = \"oci-client-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-client-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-spec-0.8.4\",\n sha256 = \"fc3da52b83ce3258fbf29f66ac784b279453c2ac3c22c5805371b921ede0d308\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-spec/0.8.4/download\"],\n strip_prefix = \"oci-spec-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-spec-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oid-registry-0.7.1\",\n sha256 = \"a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oid-registry/0.7.1/download\"],\n strip_prefix = \"oid-registry-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oid-registry-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__olpc-cjson-0.1.4\",\n sha256 = \"696183c9b5fe81a7715d074fd632e8bd46f4ccc0231a3ed7fc580a80de5f7083\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/olpc-cjson/0.1.4/download\"],\n strip_prefix = \"olpc-cjson-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.olpc-cjson-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell-1.21.4\",\n sha256 = \"9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell/1.21.4/download\"],\n strip_prefix = \"once_cell-1.21.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell-1.21.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell_polyfill-1.70.2\",\n sha256 = \"384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell_polyfill/1.70.2/download\"],\n strip_prefix = \"once_cell_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oorandom-11.1.5\",\n sha256 = \"d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oorandom/11.1.5/download\"],\n strip_prefix = \"oorandom-11.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oorandom-11.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-0.10.78\",\n sha256 = \"f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl/0.10.78/download\"],\n strip_prefix = \"openssl-0.10.78\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-0.10.78.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-macros-0.1.1\",\n sha256 = \"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-macros/0.1.1/download\"],\n strip_prefix = \"openssl-macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-probe-0.2.1\",\n sha256 = \"7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-probe/0.2.1/download\"],\n strip_prefix = \"openssl-probe-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-probe-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-sys-0.9.114\",\n sha256 = \"13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-sys/0.9.114/download\"],\n strip_prefix = \"openssl-sys-0.9.114\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-sys-0.9.114.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-0.31.0\",\n sha256 = \"b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry/0.31.0/download\"],\n strip_prefix = \"opentelemetry-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\",\n sha256 = \"ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-appender-tracing/0.31.1/download\"],\n strip_prefix = \"opentelemetry-appender-tracing-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-appender-tracing-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-http-0.31.0\",\n sha256 = \"d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-http/0.31.0/download\"],\n strip_prefix = \"opentelemetry-http-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-http-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-otlp-0.31.1\",\n sha256 = \"1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-otlp/0.31.1/download\"],\n strip_prefix = \"opentelemetry-otlp-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-otlp-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-proto-0.31.0\",\n sha256 = \"a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-proto/0.31.0/download\"],\n strip_prefix = \"opentelemetry-proto-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-proto-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry_sdk-0.31.0\",\n sha256 = \"e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry_sdk/0.31.0/download\"],\n strip_prefix = \"opentelemetry_sdk-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry_sdk-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__os_pipe-1.2.3\",\n sha256 = \"7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/os_pipe/1.2.3/download\"],\n strip_prefix = \"os_pipe-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.os_pipe-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros-0.18.5\",\n sha256 = \"1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros/0.18.5/download\"],\n strip_prefix = \"ouroboros-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros_macro-0.18.5\",\n sha256 = \"3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros_macro/0.18.5/download\"],\n strip_prefix = \"ouroboros_macro-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros_macro-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p256-0.13.2\",\n sha256 = \"c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p256/0.13.2/download\"],\n strip_prefix = \"p256-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p256-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p384-0.13.1\",\n sha256 = \"fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p384/0.13.1/download\"],\n strip_prefix = \"p384-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p384-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot-0.12.5\",\n sha256 = \"93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot/0.12.5/download\"],\n strip_prefix = \"parking_lot-0.12.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot-0.12.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot_core-0.9.12\",\n sha256 = \"2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot_core/0.9.12/download\"],\n strip_prefix = \"parking_lot_core-0.9.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot_core-0.9.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__paste-1.0.15\",\n sha256 = \"57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/paste/1.0.15/download\"],\n strip_prefix = \"paste-1.0.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.paste-1.0.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-3.0.6\",\n sha256 = \"1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem/3.0.6/download\"],\n strip_prefix = \"pem-3.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-3.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-rfc7468-0.7.0\",\n sha256 = \"88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem-rfc7468/0.7.0/download\"],\n strip_prefix = \"pem-rfc7468-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-rfc7468-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__percent-encoding-2.3.2\",\n sha256 = \"9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/percent-encoding/2.3.2/download\"],\n strip_prefix = \"percent-encoding-2.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.percent-encoding-2.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.6.5\",\n sha256 = \"b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.6.5/download\"],\n strip_prefix = \"petgraph-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.8.3\",\n sha256 = \"8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.8.3/download\"],\n strip_prefix = \"petgraph-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-1.1.11\",\n sha256 = \"f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project/1.1.11/download\"],\n strip_prefix = \"pin-project-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-internal-1.1.11\",\n sha256 = \"d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-internal/1.1.11/download\"],\n strip_prefix = \"pin-project-internal-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-internal-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-lite-0.2.17\",\n sha256 = \"a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-lite/0.2.17/download\"],\n strip_prefix = \"pin-project-lite-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-lite-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs1-0.7.5\",\n sha256 = \"c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs1/0.7.5/download\"],\n strip_prefix = \"pkcs1-0.7.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs1-0.7.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs8-0.10.2\",\n sha256 = \"f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs8/0.10.2/download\"],\n strip_prefix = \"pkcs8-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs8-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkg-config-0.3.33\",\n sha256 = \"19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkg-config/0.3.33/download\"],\n strip_prefix = \"pkg-config-0.3.33\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkg-config-0.3.33.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plain-0.2.3\",\n sha256 = \"b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plain/0.2.3/download\"],\n strip_prefix = \"plain-0.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plain-0.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-0.3.7\",\n sha256 = \"5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters/0.3.7/download\"],\n strip_prefix = \"plotters-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-backend-0.3.7\",\n sha256 = \"df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-backend/0.3.7/download\"],\n strip_prefix = \"plotters-backend-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-backend-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-svg-0.3.7\",\n sha256 = \"51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-svg/0.3.7/download\"],\n strip_prefix = \"plotters-svg-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-svg-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__poly1305-0.8.0\",\n sha256 = \"8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/poly1305/0.8.0/download\"],\n strip_prefix = \"poly1305-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.poly1305-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__port_check-0.1.5\",\n sha256 = \"f6519412c9e0d4be579b9f0618364d19cb434b324fc6ddb1b27b1e682c7105ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/port_check/0.1.5/download\"],\n strip_prefix = \"port_check-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.port_check-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-1.13.1\",\n sha256 = \"c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic/1.13.1/download\"],\n strip_prefix = \"portable-atomic-1.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-1.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-util-0.2.7\",\n sha256 = \"c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic-util/0.2.7/download\"],\n strip_prefix = \"portable-atomic-util-0.2.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-util-0.2.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portpicker-0.1.1\",\n sha256 = \"be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portpicker/0.1.1/download\"],\n strip_prefix = \"portpicker-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portpicker-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__postcard-1.1.3\",\n sha256 = \"6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/postcard/1.1.3/download\"],\n strip_prefix = \"postcard-1.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.postcard-1.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__potential_utf-0.1.5\",\n sha256 = \"0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/potential_utf/0.1.5/download\"],\n strip_prefix = \"potential_utf-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.potential_utf-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__powerfmt-0.2.0\",\n sha256 = \"439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/powerfmt/0.2.0/download\"],\n strip_prefix = \"powerfmt-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.powerfmt-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pprof-0.15.0\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/pprof:pprof-prost13.patch\",\n ],\n sha256 = \"38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pprof/0.15.0/download\"],\n strip_prefix = \"pprof-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pprof-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-3.1.4\",\n sha256 = \"ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates/3.1.4/download\"],\n strip_prefix = \"predicates-3.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-3.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-core-1.0.10\",\n sha256 = \"cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-core/1.0.10/download\"],\n strip_prefix = \"predicates-core-1.0.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-core-1.0.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-tree-1.0.13\",\n sha256 = \"d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-tree/1.0.13/download\"],\n strip_prefix = \"predicates-tree-1.0.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-tree-1.0.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prettyplease-0.2.37\",\n sha256 = \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prettyplease/0.2.37/download\"],\n strip_prefix = \"prettyplease-0.2.37\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prettyplease-0.2.37.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__primeorder-0.13.6\",\n sha256 = \"353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/primeorder/0.13.6/download\"],\n strip_prefix = \"primeorder-0.13.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.primeorder-0.13.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error-attr2-2.0.0\",\n sha256 = \"96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error-attr2/2.0.0/download\"],\n strip_prefix = \"proc-macro-error-attr2-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error-attr2-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error2-2.0.1\",\n sha256 = \"11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error2/2.0.1/download\"],\n strip_prefix = \"proc-macro-error2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-diagnostics-0.10.1\",\n sha256 = \"af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2-diagnostics/0.10.1/download\"],\n strip_prefix = \"proc-macro2-diagnostics-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-diagnostics-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-0.16.0\",\n sha256 = \"731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs/0.16.0/download\"],\n strip_prefix = \"procfs-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-core-0.16.0\",\n sha256 = \"2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs-core/0.16.0/download\"],\n strip_prefix = \"procfs-core-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-core-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proptest-1.11.0\",\n sha256 = \"4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proptest/1.11.0/download\"],\n strip_prefix = \"proptest-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proptest-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.12.6\",\n sha256 = \"deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.12.6/download\"],\n strip_prefix = \"prost-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.14.3\",\n sha256 = \"d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.14.3/download\"],\n strip_prefix = \"prost-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.12.6\",\n sha256 = \"22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.12.6/download\"],\n strip_prefix = \"prost-build-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.14.3\",\n sha256 = \"343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.14.3/download\"],\n strip_prefix = \"prost-build-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.12.6\",\n sha256 = \"81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.12.6/download\"],\n strip_prefix = \"prost-derive-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.14.3\",\n sha256 = \"27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.14.3/download\"],\n strip_prefix = \"prost-derive-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.12.6\",\n sha256 = \"9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.12.6/download\"],\n strip_prefix = \"prost-types-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.14.3\",\n sha256 = \"8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.14.3/download\"],\n strip_prefix = \"prost-types-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__psm-0.1.31\",\n sha256 = \"645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/psm/0.1.31/download\"],\n strip_prefix = \"psm-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.psm-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-0.13.3\",\n sha256 = \"7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark/0.13.3/download\"],\n strip_prefix = \"pulldown-cmark-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-to-cmark-22.0.0\",\n sha256 = \"50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark-to-cmark/22.0.0/download\"],\n strip_prefix = \"pulldown-cmark-to-cmark-22.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-to-cmark-22.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulley-interpreter-32.0.1\",\n sha256 = \"210168e10de0449154698532069f4b7164fda92ba8c7ed382f58241658de3430\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulley-interpreter/32.0.1/download\"],\n strip_prefix = \"pulley-interpreter-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulley-interpreter-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-error-1.2.3\",\n sha256 = \"a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-error/1.2.3/download\"],\n strip_prefix = \"quick-error-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-error-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-xml-0.26.0\",\n sha256 = \"7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-xml/0.26.0/download\"],\n strip_prefix = \"quick-xml-0.26.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-xml-0.26.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-0.11.9\",\n sha256 = \"b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn/0.11.9/download\"],\n strip_prefix = \"quinn-0.11.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-0.11.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-proto-0.11.14\",\n sha256 = \"434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-proto/0.11.14/download\"],\n strip_prefix = \"quinn-proto-0.11.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-proto-0.11.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-udp-0.5.14\",\n sha256 = \"addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-udp/0.5.14/download\"],\n strip_prefix = \"quinn-udp-0.5.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-udp-0.5.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-6.0.0\",\n sha256 = \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/6.0.0/download\"],\n strip_prefix = \"r-efi-6.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-6.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__radium-0.7.0\",\n sha256 = \"dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/radium/0.7.0/download\"],\n strip_prefix = \"radium-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.radium-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.8.6\",\n sha256 = \"5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.8.6/download\"],\n strip_prefix = \"rand-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.3.1\",\n sha256 = \"e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.3.1/download\"],\n strip_prefix = \"rand_chacha-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_xorshift-0.4.0\",\n sha256 = \"513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_xorshift/0.4.0/download\"],\n strip_prefix = \"rand_xorshift-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_xorshift-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__raw-cpuid-10.7.0\",\n sha256 = \"6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/raw-cpuid/10.7.0/download\"],\n strip_prefix = \"raw-cpuid-10.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.raw-cpuid-10.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-1.12.0\",\n sha256 = \"fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon/1.12.0/download\"],\n strip_prefix = \"rayon-1.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-1.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-core-1.13.0\",\n sha256 = \"22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon-core/1.13.0/download\"],\n strip_prefix = \"rayon-core-1.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-core-1.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rcgen-0.13.2\",\n sha256 = \"75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rcgen/0.13.2/download\"],\n strip_prefix = \"rcgen-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rcgen-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.5.18\",\n sha256 = \"ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.5.18/download\"],\n strip_prefix = \"redox_syscall-0.5.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.5.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.7.4\",\n sha256 = \"f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.7.4/download\"],\n strip_prefix = \"redox_syscall-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_users-0.4.6\",\n sha256 = \"ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_users/0.4.6/download\"],\n strip_prefix = \"redox_users-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_users-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-1.0.25\",\n sha256 = \"f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast/1.0.25/download\"],\n strip_prefix = \"ref-cast-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-impl-1.0.25\",\n sha256 = \"b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast-impl/1.0.25/download\"],\n strip_prefix = \"ref-cast-impl-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-impl-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regalloc2-0.11.2\",\n sha256 = \"dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regalloc2/0.11.2/download\"],\n strip_prefix = \"regalloc2-0.11.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regalloc2-0.11.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-1.12.3\",\n sha256 = \"e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex/1.12.3/download\"],\n strip_prefix = \"regex-1.12.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-1.12.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-automata-0.4.14\",\n sha256 = \"6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-automata/0.4.14/download\"],\n strip_prefix = \"regex-automata-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-automata-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-lite-0.1.9\",\n sha256 = \"cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-lite/0.1.9/download\"],\n strip_prefix = \"regex-lite-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-lite-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-syntax-0.8.10\",\n sha256 = \"dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-syntax/0.8.10/download\"],\n strip_prefix = \"regex-syntax-0.8.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-syntax-0.8.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__reqwest-0.12.28\",\n sha256 = \"eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/reqwest/0.12.28/download\"],\n strip_prefix = \"reqwest-0.12.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.reqwest-0.12.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rfc6979-0.4.0\",\n sha256 = \"f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rfc6979/0.4.0/download\"],\n strip_prefix = \"rfc6979-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rfc6979-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rgb-0.8.53\",\n sha256 = \"47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rgb/0.8.53/download\"],\n strip_prefix = \"rgb-0.8.53\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rgb-0.8.53.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ring-0.17.14\",\n sha256 = \"a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ring/0.17.14/download\"],\n strip_prefix = \"ring-0.17.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ring-0.17.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rlsf-0.2.2\",\n sha256 = \"1646a59a9734b8b7a0ac51689388a60fe1625d4b956348e9de07591a1478457a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rlsf/0.2.2/download\"],\n strip_prefix = \"rlsf-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rlsf-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-0.8.5\",\n sha256 = \"e5947688160b56fb6c827e3c20a72c90392a1d7e9dec74749197aa1780ac42ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp/0.8.5/download\"],\n strip_prefix = \"rmcp-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-macros-0.8.5\",\n sha256 = \"01263441d3f8635c628e33856c468b96ebbce1af2d3699ea712ca71432d4ee7a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp-macros/0.8.5/download\"],\n strip_prefix = \"rmcp-macros-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-macros-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rpassword-7.4.0\",\n sha256 = \"66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rpassword/7.4.0/download\"],\n strip_prefix = \"rpassword-7.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rpassword-7.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rs_merkle-1.5.0\",\n sha256 = \"bb09b49230ba22e8c676e7b75dfe2887dea8121f18b530ae0ba519ce442d2b21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rs_merkle/1.5.0/download\"],\n strip_prefix = \"rs_merkle-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rs_merkle-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rsa-0.9.10\",\n sha256 = \"b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rsa/0.9.10/download\"],\n strip_prefix = \"rsa-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rsa-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtnetlink-0.14.1\",\n sha256 = \"b684475344d8df1859ddb2d395dd3dac4f8f3422a1aa0725993cb375fc5caba5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtnetlink/0.14.1/download\"],\n strip_prefix = \"rtnetlink-0.14.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtnetlink-0.14.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtoolbox-0.0.5\",\n sha256 = \"50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtoolbox/0.0.5/download\"],\n strip_prefix = \"rtoolbox-0.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtoolbox-0.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-demangle-0.1.27\",\n sha256 = \"b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-demangle/0.1.27/download\"],\n strip_prefix = \"rustc-demangle-0.1.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-demangle-0.1.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-hash-2.1.2\",\n sha256 = \"94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-hash/2.1.2/download\"],\n strip_prefix = \"rustc-hash-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-hash-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc_version-0.4.1\",\n sha256 = \"cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc_version/0.4.1/download\"],\n strip_prefix = \"rustc_version-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc_version-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusticata-macros-4.1.0\",\n sha256 = \"faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusticata-macros/4.1.0/download\"],\n strip_prefix = \"rusticata-macros-4.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusticata-macros-4.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-0.38.44\",\n sha256 = \"fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/0.38.44/download\"],\n strip_prefix = \"rustix-0.38.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-0.38.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-1.1.4\",\n sha256 = \"b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/1.1.4/download\"],\n strip_prefix = \"rustix-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-linux-procfs-0.1.1\",\n sha256 = \"2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix-linux-procfs/0.1.1/download\"],\n strip_prefix = \"rustix-linux-procfs-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-linux-procfs-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.22.4\",\n sha256 = \"bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.22.4/download\"],\n strip_prefix = \"rustls-0.22.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.22.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.23.39\",\n sha256 = \"7c2c118cb077cca2822033836dfb1b975355dfb784b5e8da48f7b6c5db74e60e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.23.39/download\"],\n strip_prefix = \"rustls-0.23.39\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.23.39.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-native-certs-0.8.3\",\n sha256 = \"612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-native-certs/0.8.3/download\"],\n strip_prefix = \"rustls-native-certs-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-native-certs-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pemfile-2.2.0\",\n sha256 = \"dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pemfile/2.2.0/download\"],\n strip_prefix = \"rustls-pemfile-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pemfile-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pki-types-1.14.0\",\n sha256 = \"be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pki-types/1.14.0/download\"],\n strip_prefix = \"rustls-pki-types-1.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pki-types-1.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.102.8\",\n sha256 = \"64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.102.8/download\"],\n strip_prefix = \"rustls-webpki-0.102.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.102.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.103.13\",\n sha256 = \"61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.103.13/download\"],\n strip_prefix = \"rustls-webpki-0.103.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.103.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustversion-1.0.22\",\n sha256 = \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustversion/1.0.22/download\"],\n strip_prefix = \"rustversion-1.0.22\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustversion-1.0.22.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusty-fork-0.3.1\",\n sha256 = \"cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusty-fork/0.3.1/download\"],\n strip_prefix = \"rusty-fork-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusty-fork-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ryu-1.0.23\",\n sha256 = \"9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ryu/1.0.23/download\"],\n strip_prefix = \"ryu-1.0.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ryu-1.0.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__same-file-1.0.6\",\n sha256 = \"93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/same-file/1.0.6/download\"],\n strip_prefix = \"same-file-1.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.same-file-1.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schannel-0.1.29\",\n sha256 = \"91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schannel/0.1.29/download\"],\n strip_prefix = \"schannel-0.1.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schannel-0.1.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars-1.2.1\",\n sha256 = \"a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars/1.2.1/download\"],\n strip_prefix = \"schemars-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars_derive-1.2.1\",\n sha256 = \"7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars_derive/1.2.1/download\"],\n strip_prefix = \"schemars_derive-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars_derive-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scopeguard-1.2.0\",\n sha256 = \"94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scopeguard/1.2.0/download\"],\n strip_prefix = \"scopeguard-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scopeguard-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll-0.12.0\",\n sha256 = \"6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll/0.12.0/download\"],\n strip_prefix = \"scroll-0.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll-0.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll_derive-0.12.1\",\n sha256 = \"1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll_derive/0.12.1/download\"],\n strip_prefix = \"scroll_derive-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll_derive-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sec1-0.7.3\",\n sha256 = \"d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sec1/0.7.3/download\"],\n strip_prefix = \"sec1-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sec1-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-3.7.0\",\n sha256 = \"b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework/3.7.0/download\"],\n strip_prefix = \"security-framework-3.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-3.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-sys-2.17.0\",\n sha256 = \"6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework-sys/2.17.0/download\"],\n strip_prefix = \"security-framework-sys-2.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-sys-2.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__self_cell-1.2.2\",\n sha256 = \"b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/self_cell/1.2.2/download\"],\n strip_prefix = \"self_cell-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.self_cell-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__semver-1.0.28\",\n sha256 = \"8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/semver/1.0.28/download\"],\n strip_prefix = \"semver-1.0.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.semver-1.0.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive_internals-0.29.1\",\n sha256 = \"18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive_internals/0.29.1/download\"],\n strip_prefix = \"serde_derive_internals-0.29.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive_internals-0.29.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_json-1.0.149\",\n sha256 = \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_json/1.0.149/download\"],\n strip_prefix = \"serde_json-1.0.149\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_json-1.0.149.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_path_to_error-0.1.20\",\n sha256 = \"10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_path_to_error/0.1.20/download\"],\n strip_prefix = \"serde_path_to_error-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_path_to_error-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_spanned-0.6.9\",\n sha256 = \"bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_spanned/0.6.9/download\"],\n strip_prefix = \"serde_spanned-0.6.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_spanned-0.6.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_urlencoded-0.7.1\",\n sha256 = \"d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_urlencoded/0.7.1/download\"],\n strip_prefix = \"serde_urlencoded-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_urlencoded-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha1-0.10.6\",\n sha256 = \"e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha1/0.10.6/download\"],\n strip_prefix = \"sha1-0.10.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha1-0.10.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha2-0.10.9\",\n sha256 = \"a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha2/0.10.9/download\"],\n strip_prefix = \"sha2-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha2-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha3-0.10.9\",\n sha256 = \"77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha3/0.10.9/download\"],\n strip_prefix = \"sha3-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha3-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sharded-slab-0.1.7\",\n sha256 = \"f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sharded-slab/0.1.7/download\"],\n strip_prefix = \"sharded-slab-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sharded-slab-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shellexpand-2.1.2\",\n sha256 = \"7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shellexpand/2.1.2/download\"],\n strip_prefix = \"shellexpand-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shellexpand-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-0.3.18\",\n sha256 = \"d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook/0.3.18/download\"],\n strip_prefix = \"signal-hook-0.3.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-0.3.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-registry-1.4.8\",\n sha256 = \"c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-registry/1.4.8/download\"],\n strip_prefix = \"signal-hook-registry-1.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-registry-1.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-tokio-0.3.1\",\n sha256 = \"213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-tokio/0.3.1/download\"],\n strip_prefix = \"signal-hook-tokio-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-tokio-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signature-2.2.0\",\n sha256 = \"77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signature/2.2.0/download\"],\n strip_prefix = \"signature-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signature-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__simd-adler32-0.3.9\",\n sha256 = \"703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/simd-adler32/0.3.9/download\"],\n strip_prefix = \"simd-adler32-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.simd-adler32-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__slab-0.4.12\",\n sha256 = \"0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/slab/0.4.12/download\"],\n strip_prefix = \"slab-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.slab-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__smallvec-1.15.1\",\n sha256 = \"67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/smallvec/1.15.1/download\"],\n strip_prefix = \"smallvec-1.15.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.smallvec-1.15.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__socket2-0.6.3\",\n sha256 = \"3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/socket2/0.6.3/download\"],\n strip_prefix = \"socket2-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.socket2-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spdx-0.10.9\",\n sha256 = \"c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spdx/0.10.9/download\"],\n strip_prefix = \"spdx-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spdx-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.10.0\",\n sha256 = \"d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.10.0/download\"],\n strip_prefix = \"spin-0.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.9.8\",\n sha256 = \"6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.9.8/download\"],\n strip_prefix = \"spin-0.9.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.9.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.2.5\",\n sha256 = \"5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.2.5/download\"],\n strip_prefix = \"spinning_top-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.3.0\",\n sha256 = \"d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.3.0/download\"],\n strip_prefix = \"spinning_top-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spki-0.7.3\",\n sha256 = \"d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spki/0.7.3/download\"],\n strip_prefix = \"spki-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spki-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sptr-0.3.2\",\n sha256 = \"3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sptr/0.3.2/download\"],\n strip_prefix = \"sptr-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sptr-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sse-stream-0.2.2\",\n sha256 = \"2c5e6deb40826033bd7b11c7ef25ef71193fabd71f680f40dd16538a2704d2f4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sse-stream/0.2.2/download\"],\n strip_prefix = \"sse-stream-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sse-stream-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__stable_deref_trait-1.2.1\",\n sha256 = \"6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/stable_deref_trait/1.2.1/download\"],\n strip_prefix = \"stable_deref_trait-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.stable_deref_trait-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__static_assertions-1.1.0\",\n sha256 = \"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/static_assertions/1.1.0/download\"],\n strip_prefix = \"static_assertions-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.static_assertions-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__str_stack-0.1.0\",\n sha256 = \"9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/str_stack/0.1.0/download\"],\n strip_prefix = \"str_stack-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.str_stack-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strsim-0.11.1\",\n sha256 = \"7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strsim/0.11.1/download\"],\n strip_prefix = \"strsim-0.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strsim-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum-0.27.2\",\n sha256 = \"af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum/0.27.2/download\"],\n strip_prefix = \"strum-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum_macros-0.27.2\",\n sha256 = \"7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum_macros/0.27.2/download\"],\n strip_prefix = \"strum_macros-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum_macros-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__svgbobdoc-0.3.0\",\n sha256 = \"f2c04b93fc15d79b39c63218f15e3fdffaa4c227830686e3b7c5f41244eb3e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/svgbobdoc/0.3.0/download\"],\n strip_prefix = \"svgbobdoc-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.svgbobdoc-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-common-12.18.3\",\n sha256 = \"332615d90111d8eeaf86a84dc9bbe9f65d0d8c5cf11b4caccedc37754eb0dcfd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-common/12.18.3/download\"],\n strip_prefix = \"symbolic-common-12.18.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-common-12.18.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-demangle-12.18.3\",\n sha256 = \"912017718eb4d21930546245af9a3475c9dccf15675a5c215664e76621afc471\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-demangle/12.18.3/download\"],\n strip_prefix = \"symbolic-demangle-12.18.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-demangle-12.18.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-1.0.109\",\n sha256 = \"72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/1.0.109/download\"],\n strip_prefix = \"syn-1.0.109\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-1.0.109.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sync_wrapper-1.0.2\",\n sha256 = \"0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sync_wrapper/1.0.2/download\"],\n strip_prefix = \"sync_wrapper-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sync_wrapper-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__synstructure-0.13.2\",\n sha256 = \"728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/synstructure/0.13.2/download\"],\n strip_prefix = \"synstructure-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.synstructure-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syslog-6.1.1\",\n sha256 = \"dfc7e95b5b795122fafe6519e27629b5ab4232c73ebb2428f568e82b1a457ad3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syslog/6.1.1/download\"],\n strip_prefix = \"syslog-6.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syslog-6.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-0.7.0\",\n sha256 = \"a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration/0.7.0/download\"],\n strip_prefix = \"system-configuration-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-sys-0.6.0\",\n sha256 = \"8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration-sys/0.6.0/download\"],\n strip_prefix = \"system-configuration-sys-0.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-sys-0.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-interface-0.27.3\",\n sha256 = \"cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-interface/0.27.3/download\"],\n strip_prefix = \"system-interface-0.27.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-interface-0.27.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tap-1.0.1\",\n sha256 = \"55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tap/1.0.1/download\"],\n strip_prefix = \"tap-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tap-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tar-0.4.45\",\n sha256 = \"22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tar/0.4.45/download\"],\n strip_prefix = \"tar-0.4.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tar-0.4.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__target-lexicon-0.13.5\",\n sha256 = \"adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/target-lexicon/0.13.5/download\"],\n strip_prefix = \"target-lexicon-0.13.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.target-lexicon-0.13.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tempfile-3.27.0\",\n sha256 = \"32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tempfile/3.27.0/download\"],\n strip_prefix = \"tempfile-3.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tempfile-3.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termtree-0.5.1\",\n sha256 = \"8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termtree/0.5.1/download\"],\n strip_prefix = \"termtree-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termtree-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-1.0.69\",\n sha256 = \"b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/1.0.69/download\"],\n strip_prefix = \"thiserror-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-2.0.18\",\n sha256 = \"4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/2.0.18/download\"],\n strip_prefix = \"thiserror-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-1.0.69\",\n sha256 = \"4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/1.0.69/download\"],\n strip_prefix = \"thiserror-impl-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-2.0.18\",\n sha256 = \"ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/2.0.18/download\"],\n strip_prefix = \"thiserror-impl-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thread_local-1.1.9\",\n sha256 = \"f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thread_local/1.1.9/download\"],\n strip_prefix = \"thread_local-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thread_local-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemalloc-sys-0.5.4-5.3.0-patched\",\n sha256 = \"9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemalloc-sys/0.5.4+5.3.0-patched/download\"],\n strip_prefix = \"tikv-jemalloc-sys-0.5.4+5.3.0-patched\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemalloc-sys-0.5.4+5.3.0-patched.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemallocator-0.5.4\",\n sha256 = \"965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemallocator/0.5.4/download\"],\n strip_prefix = \"tikv-jemallocator-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemallocator-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-0.3.36\",\n sha256 = \"5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time/0.3.36/download\"],\n strip_prefix = \"time-0.3.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-0.3.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-core-0.1.2\",\n sha256 = \"ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-core/0.1.2/download\"],\n strip_prefix = \"time-core-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-core-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-macros-0.2.18\",\n sha256 = \"3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-macros/0.2.18/download\"],\n strip_prefix = \"time-macros-0.2.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-macros-0.2.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinystr-0.8.3\",\n sha256 = \"c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinystr/0.8.3/download\"],\n strip_prefix = \"tinystr-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinystr-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinytemplate-1.2.1\",\n sha256 = \"be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinytemplate/1.2.1/download\"],\n strip_prefix = \"tinytemplate-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinytemplate-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec-1.11.0\",\n sha256 = \"3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec/1.11.0/download\"],\n strip_prefix = \"tinyvec-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec_macros-0.1.1\",\n sha256 = \"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec_macros/0.1.1/download\"],\n strip_prefix = \"tinyvec_macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec_macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-1.52.1\",\n sha256 = \"b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio/1.52.1/download\"],\n strip_prefix = \"tokio-1.52.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-1.52.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-macros-2.7.0\",\n sha256 = \"385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-macros/2.7.0/download\"],\n strip_prefix = \"tokio-macros-2.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-macros-2.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.25.0\",\n sha256 = \"775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.25.0/download\"],\n strip_prefix = \"tokio-rustls-0.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.26.4\",\n sha256 = \"1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.26.4/download\"],\n strip_prefix = \"tokio-rustls-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-stream-0.1.18\",\n sha256 = \"32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-stream/0.1.18/download\"],\n strip_prefix = \"tokio-stream-0.1.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-stream-0.1.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-tungstenite-0.27.0\",\n sha256 = \"489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-tungstenite/0.27.0/download\"],\n strip_prefix = \"tokio-tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-util-0.7.18\",\n sha256 = \"9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-util/0.7.18/download\"],\n strip_prefix = \"tokio-util-0.7.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-util-0.7.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-vsock-0.7.2\",\n sha256 = \"8b319ef9394889dab2e1b4f0085b45ba11d0c79dc9d1a9d1afc057d009d0f1c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-vsock/0.7.2/download\"],\n strip_prefix = \"tokio-vsock-0.7.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-vsock-0.7.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml-0.8.23\",\n sha256 = \"dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml/0.8.23/download\"],\n strip_prefix = \"toml-0.8.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml-0.8.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_datetime-0.6.11\",\n sha256 = \"22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_datetime/0.6.11/download\"],\n strip_prefix = \"toml_datetime-0.6.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_datetime-0.6.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_edit-0.22.27\",\n sha256 = \"41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_edit/0.22.27/download\"],\n strip_prefix = \"toml_edit-0.22.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_edit-0.22.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_write-0.1.2\",\n sha256 = \"5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_write/0.1.2/download\"],\n strip_prefix = \"toml_write-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_write-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-0.14.5\",\n sha256 = \"fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic/0.14.5/download\"],\n strip_prefix = \"tonic-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-build-0.14.5\",\n sha256 = \"1882ac3bf5ef12877d7ed57aad87e75154c11931c2ba7e6cde5e22d63522c734\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-build/0.14.5/download\"],\n strip_prefix = \"tonic-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-0.14.5\",\n sha256 = \"a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost/0.14.5/download\"],\n strip_prefix = \"tonic-prost-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-build-0.14.5\",\n sha256 = \"f3144df636917574672e93d0f56d7edec49f90305749c668df5101751bb8f95a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost-build/0.14.5/download\"],\n strip_prefix = \"tonic-prost-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.4.13\",\n sha256 = \"b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.4.13/download\"],\n strip_prefix = \"tower-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.5.3\",\n sha256 = \"ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.5.3/download\"],\n strip_prefix = \"tower-0.5.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.5.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-http-0.6.8\",\n sha256 = \"d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-http/0.6.8/download\"],\n strip_prefix = \"tower-http-0.6.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-http-0.6.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-layer-0.3.3\",\n sha256 = \"121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-layer/0.3.3/download\"],\n strip_prefix = \"tower-layer-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-layer-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-service-0.3.3\",\n sha256 = \"8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-service/0.3.3/download\"],\n strip_prefix = \"tower-service-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-service-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-0.1.44\",\n sha256 = \"63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing/0.1.44/download\"],\n strip_prefix = \"tracing-0.1.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-0.1.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-attributes-0.1.31\",\n sha256 = \"7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-attributes/0.1.31/download\"],\n strip_prefix = \"tracing-attributes-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-attributes-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-core-0.1.36\",\n sha256 = \"db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-core/0.1.36/download\"],\n strip_prefix = \"tracing-core-0.1.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-core-0.1.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-subscriber-0.3.23\",\n sha256 = \"cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-subscriber/0.3.23/download\"],\n strip_prefix = \"tracing-subscriber-0.3.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-subscriber-0.3.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__trait-variant-0.1.2\",\n sha256 = \"70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/trait-variant/0.1.2/download\"],\n strip_prefix = \"trait-variant-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.trait-variant-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__try-lock-0.2.5\",\n sha256 = \"e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/try-lock/0.2.5/download\"],\n strip_prefix = \"try-lock-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.try-lock-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tungstenite-0.27.0\",\n sha256 = \"eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tungstenite/0.27.0/download\"],\n strip_prefix = \"tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uart_16550-0.3.2\",\n sha256 = \"e492212ac378a5e00da953718dafb1340d9fbaf4f27d6f3c5cab03d931d1c049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uart_16550/0.3.2/download\"],\n strip_prefix = \"uart_16550-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uart_16550-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ubyte-0.10.4\",\n sha256 = \"f720def6ce1ee2fc44d40ac9ed6d3a59c361c80a75a7aa8e75bb9baed31cf2ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ubyte/0.10.4/download\"],\n strip_prefix = \"ubyte-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ubyte-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unarray-0.1.4\",\n sha256 = \"eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unarray/0.1.4/download\"],\n strip_prefix = \"unarray-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unarray-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicase-2.9.0\",\n sha256 = \"dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicase/2.9.0/download\"],\n strip_prefix = \"unicase-2.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicase-2.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-normalization-0.1.25\",\n sha256 = \"5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-normalization/0.1.25/download\"],\n strip_prefix = \"unicode-normalization-0.1.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-normalization-0.1.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.1.14\",\n sha256 = \"7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.1.14/download\"],\n strip_prefix = \"unicode-width-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-xid-0.2.6\",\n sha256 = \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-xid/0.2.6/download\"],\n strip_prefix = \"unicode-xid-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-xid-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__untrusted-0.9.0\",\n sha256 = \"8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/untrusted/0.9.0/download\"],\n strip_prefix = \"untrusted-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.untrusted-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ureq-2.12.1\",\n sha256 = \"02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ureq/2.12.1/download\"],\n strip_prefix = \"ureq-2.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ureq-2.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__url-2.5.8\",\n sha256 = \"ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/url/2.5.8/download\"],\n strip_prefix = \"url-2.5.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.url-2.5.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf-8-0.7.6\",\n sha256 = \"09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf-8/0.7.6/download\"],\n strip_prefix = \"utf-8-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf-8-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8_iter-1.0.4\",\n sha256 = \"b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8_iter/1.0.4/download\"],\n strip_prefix = \"utf8_iter-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8_iter-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8parse-0.2.2\",\n sha256 = \"06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8parse/0.2.2/download\"],\n strip_prefix = \"utf8parse-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8parse-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uuid-1.23.1\",\n sha256 = \"ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uuid/1.23.1/download\"],\n strip_prefix = \"uuid-1.23.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uuid-1.23.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vcpkg-0.2.15\",\n sha256 = \"accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vcpkg/0.2.15/download\"],\n strip_prefix = \"vcpkg-0.2.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vcpkg-0.2.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__volatile-0.4.6\",\n sha256 = \"442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/volatile/0.4.6/download\"],\n strip_prefix = \"volatile-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.volatile-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vsock-0.5.4\",\n sha256 = \"6ba782755fc073877e567c2253c0be48e4aa9a254c232d36d3985dfae0bd5205\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vsock/0.5.4/download\"],\n strip_prefix = \"vsock-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vsock-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wait-timeout-0.2.1\",\n sha256 = \"09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wait-timeout/0.2.1/download\"],\n strip_prefix = \"wait-timeout-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wait-timeout-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-0.5.1\",\n sha256 = \"6e2db2daf1dfbadf228fd8b3c22b96a359135fd673b3d2c203274ee6a0df9c77\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki/0.5.1/download\"],\n strip_prefix = \"waki-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-macros-0.5.1\",\n sha256 = \"a061143f321cc5eeb523f60bdbcd45cfc3ee8851f8cf24f7a4b963bddc5642eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki-macros/0.5.1/download\"],\n strip_prefix = \"waki-macros-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-macros-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__walkdir-2.5.0\",\n sha256 = \"29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/walkdir/2.5.0/download\"],\n strip_prefix = \"walkdir-2.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.walkdir-2.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__want-0.3.1\",\n sha256 = \"bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/want/0.3.1/download\"],\n strip_prefix = \"want-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.want-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06\",\n sha256 = \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download\"],\n strip_prefix = \"wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-0.2.118\",\n sha256 = \"0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-futures-0.4.68\",\n sha256 = \"f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-futures/0.4.68/download\"],\n strip_prefix = \"wasm-bindgen-futures-0.4.68\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-futures-0.4.68.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-0.2.118\",\n sha256 = \"eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-support-0.2.118\",\n sha256 = \"9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-support-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-support-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-shared-0.2.118\",\n sha256 = \"5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-shared-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-shared-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.218.1\",\n sha256 = \"491f7e48672d0a1efdeadf897d98ac1f45942c26c3829cb44a6b828f6f26155f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.218.1/download\"],\n strip_prefix = \"wasm-encoder-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.219.2\",\n sha256 = \"8aa79bcd666a043b58f5fa62b221b0b914dd901e6f620e8ab7371057a797f3e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.219.2/download\"],\n strip_prefix = \"wasm-encoder-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.228.0\",\n sha256 = \"05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.228.0/download\"],\n strip_prefix = \"wasm-encoder-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.244.0\",\n sha256 = \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.244.0/download\"],\n strip_prefix = \"wasm-encoder-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.218.1\",\n sha256 = \"ca31626e08c121a67fe7cbca87e2ead2ed84ccc16043346c2a1d7cf38936c251\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.218.1/download\"],\n strip_prefix = \"wasm-metadata-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.219.2\",\n sha256 = \"b1ef51bd442042a2a7b562dddb6016ead52c4abab254c376dcffc83add2c9c34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.219.2/download\"],\n strip_prefix = \"wasm-metadata-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.244.0\",\n sha256 = \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.244.0/download\"],\n strip_prefix = \"wasm-metadata-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-streams-0.4.2\",\n sha256 = \"15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-streams/0.4.2/download\"],\n strip_prefix = \"wasm-streams-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-streams-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi-0.31.2\",\n sha256 = \"77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi/0.31.2/download\"],\n strip_prefix = \"wasmi-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_arena-0.4.1\",\n sha256 = \"104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_arena/0.4.1/download\"],\n strip_prefix = \"wasmi_arena-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_arena-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_core-0.13.0\",\n sha256 = \"dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_core/0.13.0/download\"],\n strip_prefix = \"wasmi_core-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_core-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.218.1\",\n sha256 = \"059739c2eac26eea736389a7d6d30b41a8201490bea204d0facde19183359849\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.218.1/download\"],\n strip_prefix = \"wasmparser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.219.2\",\n sha256 = \"5220ee4c6ffcc0cb9d7c47398052203bc902c8ef3985b0c8134118440c0b2921\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.219.2/download\"],\n strip_prefix = \"wasmparser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.228.0\",\n sha256 = \"4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.228.0/download\"],\n strip_prefix = \"wasmparser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.244.0\",\n sha256 = \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.244.0/download\"],\n strip_prefix = \"wasmparser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-nostd-0.100.2\",\n sha256 = \"d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser-nostd/0.100.2/download\"],\n strip_prefix = \"wasmparser-nostd-0.100.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-nostd-0.100.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmprinter-0.228.0\",\n sha256 = \"0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmprinter/0.228.0/download\"],\n strip_prefix = \"wasmprinter-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmprinter-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-32.0.1\",\n sha256 = \"ad01fc006f2c40ae475412c4d8d41ecb8790b3cc2b04cfb6c802bf845a93231e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime/32.0.1/download\"],\n strip_prefix = \"wasmtime-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-asm-macros-32.0.1\",\n sha256 = \"936dc7dcea4bcb11964c62e6e0a78a360b888b2fa8ffeec37cacf22ac43b7b03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-asm-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-asm-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-asm-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cache-32.0.1\",\n sha256 = \"4e714cd20f559743c8daf9b5c992630765a329507a95cdd77204b99cc0a5f252\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cache/32.0.1/download\"],\n strip_prefix = \"wasmtime-cache-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cache-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-macro-32.0.1\",\n sha256 = \"dad44c6c446b99a0a5459798bb580824c424c82cd28d8498aa60f7c34a4c917a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-macro/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-util-32.0.1\",\n sha256 = \"d9aa325c17140d69de9a03dda4ce75d2f47eb90376c0cd9e01d54a9cb19cb7ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-util/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-util-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-util-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cranelift-32.0.1\",\n sha256 = \"4fc41e93228c2d5862e49c5cc7e6ecba29c5b4c9afcbd8ae2ca07622f75a439b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cranelift/32.0.1/download\"],\n strip_prefix = \"wasmtime-cranelift-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cranelift-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-environ-32.0.1\",\n sha256 = \"72985be5115421ea4f40bd3dc6081c0ced281171eba508c6d0cfe3e184a84e60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-environ/32.0.1/download\"],\n strip_prefix = \"wasmtime-environ-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-environ-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-fiber-32.0.1\",\n sha256 = \"ff64b883df8e177c64b69ee68889c62913353bf20774ff5ce55aba0aa99aeb78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-fiber/32.0.1/download\"],\n strip_prefix = \"wasmtime-fiber-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-fiber-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-jit-icache-coherence-32.0.1\",\n sha256 = \"23ccb3dd740a0601addd260f4a6d91470cd3f7a2058efe46662054ca6b6da592\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-jit-icache-coherence/32.0.1/download\"],\n strip_prefix = \"wasmtime-jit-icache-coherence-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-jit-icache-coherence-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-math-32.0.1\",\n sha256 = \"7cdb839281525419d67958e37629d71da696b525756222d6cc1596df960a0112\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-math/32.0.1/download\"],\n strip_prefix = \"wasmtime-math-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-math-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-slab-32.0.1\",\n sha256 = \"06f9cbf0710c55c617a6cf016aecb6d76abaffb7b26511a6111808ff96d9233c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-slab/32.0.1/download\"],\n strip_prefix = \"wasmtime-slab-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-slab-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-versioned-export-macros-32.0.1\",\n sha256 = \"dbb192336c60c672de6d8d96e5ea9c92b11c41be78acf8af9bfecf6f1e72b546\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-versioned-export-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-versioned-export-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-versioned-export-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-32.0.1\",\n sha256 = \"7513ec128fbe590a33a10f3b144b86aaa633a65b857d108bad7b835877ae62bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-http-32.0.1\",\n sha256 = \"a53f8d62d9c85ae9845b2523765607f26e6f6923dfcb6e34e8e6bd14df77017c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-http/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-http-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-http-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-io-32.0.1\",\n sha256 = \"f52b6decdc45591a05c698d66c50c6258a0741472ed28d0de51f13c71fd4583b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-io/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-io-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-io-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-winch-32.0.1\",\n sha256 = \"3fcb97439811c7ff8283ee44ac13c1889b270a39187f2bac16889067d2a9f438\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-winch/32.0.1/download\"],\n strip_prefix = \"wasmtime-winch-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-winch-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wit-bindgen-32.0.1\",\n sha256 = \"5bd0a7ffc24aa19a2784849662d2ba93344a41bd956132da7b2f5fee41cdb7d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wit-bindgen/32.0.1/download\"],\n strip_prefix = \"wasmtime-wit-bindgen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wit-bindgen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wast-35.0.2\",\n sha256 = \"2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wast/35.0.2/download\"],\n strip_prefix = \"wast-35.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wast-35.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-sys-0.3.95\",\n sha256 = \"4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-sys/0.3.95/download\"],\n strip_prefix = \"web-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-time-1.1.0\",\n sha256 = \"5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-time/1.1.0/download\"],\n strip_prefix = \"web-time-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-time-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-0.26.11\",\n sha256 = \"521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/0.26.11/download\"],\n strip_prefix = \"webpki-roots-0.26.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-0.26.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-1.0.7\",\n sha256 = \"52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/1.0.7/download\"],\n strip_prefix = \"webpki-roots-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__which-5.0.0\",\n sha256 = \"9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/which/5.0.0/download\"],\n strip_prefix = \"which-5.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.which-5.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-32.0.1\",\n sha256 = \"b69703366897a920a393581773a0a928ad5547125b1db84099a875f105497068\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle/32.0.1/download\"],\n strip_prefix = \"wiggle-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-generate-32.0.1\",\n sha256 = \"3288f30a93cebce9bb5f85825bae0ba6ae11f1caa22e87e68b1195ddfc292cb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-generate/32.0.1/download\"],\n strip_prefix = \"wiggle-generate-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-generate-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-macro-32.0.1\",\n sha256 = \"3a7946f6957c3d1ab24584f5e8cf93f35af197eeaeab71abee77e4d422ec983e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-macro/32.0.1/download\"],\n strip_prefix = \"wiggle-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-0.3.9\",\n sha256 = \"5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi/0.3.9/download\"],\n strip_prefix = \"winapi-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-i686-pc-windows-gnu-0.4.0\",\n sha256 = \"ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-i686-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-x86_64-pc-windows-gnu-0.4.0\",\n sha256 = \"712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-x86_64-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winch-codegen-32.0.1\",\n sha256 = \"1e7e8521de7cf48d6b6dd8c737b7ca72b40ce850b86a57b57ecf2e6f5bd233e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winch-codegen/32.0.1/download\"],\n strip_prefix = \"winch-codegen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winch-codegen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-core-0.62.2\",\n sha256 = \"b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-core/0.62.2/download\"],\n strip_prefix = \"windows-core-0.62.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-core-0.62.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-implement-0.60.2\",\n sha256 = \"053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-implement/0.60.2/download\"],\n strip_prefix = \"windows-implement-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-implement-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-interface-0.59.3\",\n sha256 = \"3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-interface/0.59.3/download\"],\n strip_prefix = \"windows-interface-0.59.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-interface-0.59.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-registry-0.6.1\",\n sha256 = \"02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-registry/0.6.1/download\"],\n strip_prefix = \"windows-registry-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-registry-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-result-0.4.1\",\n sha256 = \"7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-result/0.4.1/download\"],\n strip_prefix = \"windows-result-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-result-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-strings-0.5.1\",\n sha256 = \"7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-strings/0.5.1/download\"],\n strip_prefix = \"windows-strings-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-strings-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.45.0\",\n sha256 = \"75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.45.0/download\"],\n strip_prefix = \"windows-sys-0.45.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.45.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.48.0\",\n sha256 = \"677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.48.0/download\"],\n strip_prefix = \"windows-sys-0.48.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.48.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.52.0\",\n sha256 = \"282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.52.0/download\"],\n strip_prefix = \"windows-sys-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.59.0\",\n sha256 = \"1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.59.0/download\"],\n strip_prefix = \"windows-sys-0.59.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.59.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.60.2\",\n sha256 = \"f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.60.2/download\"],\n strip_prefix = \"windows-sys-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.42.2\",\n sha256 = \"8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.42.2/download\"],\n strip_prefix = \"windows-targets-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.48.5\",\n sha256 = \"9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.48.5/download\"],\n strip_prefix = \"windows-targets-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.52.6\",\n sha256 = \"9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.52.6/download\"],\n strip_prefix = \"windows-targets-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.53.5\",\n sha256 = \"4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.53.5/download\"],\n strip_prefix = \"windows-targets-0.53.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.53.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.42.2\",\n sha256 = \"597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.48.5\",\n sha256 = \"2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.52.6\",\n sha256 = \"32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.53.1\",\n sha256 = \"a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.42.2\",\n sha256 = \"e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.48.5\",\n sha256 = \"dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.52.6\",\n sha256 = \"09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.53.1\",\n sha256 = \"b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.42.2\",\n sha256 = \"c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.42.2/download\"],\n strip_prefix = \"windows_i686_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.48.5\",\n sha256 = \"a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.48.5/download\"],\n strip_prefix = \"windows_i686_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.52.6\",\n sha256 = \"8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.53.1\",\n sha256 = \"960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.52.6\",\n sha256 = \"0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.53.1\",\n sha256 = \"fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.42.2\",\n sha256 = \"44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.42.2/download\"],\n strip_prefix = \"windows_i686_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.48.5\",\n sha256 = \"8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.48.5/download\"],\n strip_prefix = \"windows_i686_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.52.6\",\n sha256 = \"240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.52.6/download\"],\n strip_prefix = \"windows_i686_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.53.1\",\n sha256 = \"1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.53.1/download\"],\n strip_prefix = \"windows_i686_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.42.2\",\n sha256 = \"8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.48.5\",\n sha256 = \"53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.52.6\",\n sha256 = \"147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.53.1\",\n sha256 = \"9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.42.2\",\n sha256 = \"26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.48.5\",\n sha256 = \"0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.52.6\",\n sha256 = \"24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.53.1\",\n sha256 = \"0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.42.2\",\n sha256 = \"9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.48.5\",\n sha256 = \"ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.52.6\",\n sha256 = \"589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.53.1\",\n sha256 = \"d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winnow-0.7.15\",\n sha256 = \"df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winnow/0.7.15/download\"],\n strip_prefix = \"winnow-0.7.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winnow-0.7.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winx-0.36.4\",\n sha256 = \"3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winx/0.36.4/download\"],\n strip_prefix = \"winx-0.36.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winx-0.36.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.33.0\",\n sha256 = \"8fcf26778671a2327bd237a32c6f2d1d9bb0ec077e482b0839552b00d4566544\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.34.0\",\n sha256 = \"7e11ad55616555605a60a8b2d1d89e006c2076f46c465c892cc2c153b20d4b30\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.51.0\",\n sha256 = \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.33.0\",\n sha256 = \"4b885a00e1c428fd12b7b7c4bccc4bad8b2a3ca0abe8eaf1e0f90adabb4c7ac7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.34.0\",\n sha256 = \"163cee59d3d5ceec0b256735f3ab0dccac434afb0ec38c406276de9c5a11e906\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.51.0\",\n sha256 = \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.33.0\",\n sha256 = \"3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.34.0\",\n sha256 = \"744845cde309b8fa32408d6fb67456449278c66ea4dcd96de29797b302721f02\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.33.0\",\n sha256 = \"542608877814a54f6bea6b24dcbe249a2e293d67d709f4f8ec578d06b1c00730\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.34.0\",\n sha256 = \"f6919521fc7807f927a739181db93100ca7ed03c29509b84d5f96b27b2e49a9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.51.0\",\n sha256 = \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.33.0\",\n sha256 = \"30d462025f670fff96606ddbfe62500255b4fe3de7298cd9cbabb2de3d567183\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.34.0\",\n sha256 = \"c967731fc5d50244d7241ecfc9302a8929db508eea3c601fbc5371b196ba38a5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.51.0\",\n sha256 = \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.218.1\",\n sha256 = \"5152dd199894d1b3b0907738b1a3d2b2809cd492440204f5339cfa1bb4c9fc92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.218.1/download\"],\n strip_prefix = \"wit-component-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.219.2\",\n sha256 = \"4b8479a29d81c063264c3ab89d496787ef78f8345317a2dcf6dece0f129e5fcd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.219.2/download\"],\n strip_prefix = \"wit-component-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.244.0\",\n sha256 = \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.244.0/download\"],\n strip_prefix = \"wit-component-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.218.1\",\n sha256 = \"f104473e8546f8096f1fa483d337101a98dc9525d67f4275816bcd177fe3e2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.218.1/download\"],\n strip_prefix = \"wit-parser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.219.2\",\n sha256 = \"ca004bb251010fe956f4a5b9d4bf86b4e415064160dd6669569939e8cbf2504f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.219.2/download\"],\n strip_prefix = \"wit-parser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.228.0\",\n sha256 = \"399ce56e28d79fd3abfa03fdc7ceb89ffec4d4b2674fe3a92056b7d845653c38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.228.0/download\"],\n strip_prefix = \"wit-parser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.244.0\",\n sha256 = \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.244.0/download\"],\n strip_prefix = \"wit-parser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__witx-0.9.1\",\n sha256 = \"e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/witx/0.9.1/download\"],\n strip_prefix = \"witx-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.witx-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__writeable-0.6.3\",\n sha256 = \"1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/writeable/0.6.3/download\"],\n strip_prefix = \"writeable-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.writeable-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wyz-0.5.1\",\n sha256 = \"05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wyz/0.5.1/download\"],\n strip_prefix = \"wyz-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wyz-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x25519-dalek-2.0.1\",\n sha256 = \"c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x25519-dalek/2.0.1/download\"],\n strip_prefix = \"x25519-dalek-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x25519-dalek-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-cert-0.2.5\",\n sha256 = \"1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-cert/0.2.5/download\"],\n strip_prefix = \"x509-cert-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-cert-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-ocsp-0.2.1\",\n sha256 = \"5e54e695a31f0fecb826cf59ae2093c941d7ef932a1f8508185dd23b29ce2e2e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-ocsp/0.2.1/download\"],\n strip_prefix = \"x509-ocsp-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-ocsp-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-parser-0.16.0\",\n sha256 = \"fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-parser/0.16.0/download\"],\n strip_prefix = \"x509-parser-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-parser-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-verify-0.4.8\",\n sha256 = \"c43a49bf845cd2f3aff9603a4276409dbf2b8fa4454d3e9501bf5b0028342964\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-verify/0.4.8/download\"],\n strip_prefix = \"x509-verify-0.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-verify-0.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86-0.52.0\",\n sha256 = \"2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86/0.52.0/download\"],\n strip_prefix = \"x86-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86_64-0.15.4\",\n sha256 = \"f7841fa0098ceb15c567d93d3fae292c49e10a7662b4936d5f6a9728594555ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86_64/0.15.4/download\"],\n strip_prefix = \"x86_64-0.15.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86_64-0.15.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xattr-1.6.1\",\n sha256 = \"32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xattr/1.6.1/download\"],\n strip_prefix = \"xattr-1.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xattr-1.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xz2-0.1.7\",\n sha256 = \"388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xz2/0.1.7/download\"],\n strip_prefix = \"xz2-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xz2-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yaml_serde-0.10.4\",\n sha256 = \"08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yaml_serde/0.10.4/download\"],\n strip_prefix = \"yaml_serde-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yaml_serde-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yansi-1.0.1\",\n sha256 = \"cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yansi/1.0.1/download\"],\n strip_prefix = \"yansi-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yansi-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yasna-0.5.2\",\n sha256 = \"e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yasna/0.5.2/download\"],\n strip_prefix = \"yasna-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yasna-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-0.8.2\",\n sha256 = \"abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke/0.8.2/download\"],\n strip_prefix = \"yoke-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-derive-0.8.2\",\n sha256 = \"de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke-derive/0.8.2/download\"],\n strip_prefix = \"yoke-derive-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-derive-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-0.1.7\",\n sha256 = \"69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom/0.1.7/download\"],\n strip_prefix = \"zerofrom-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-derive-0.1.7\",\n sha256 = \"11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom-derive/0.1.7/download\"],\n strip_prefix = \"zerofrom-derive-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-derive-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize_derive-1.4.3\",\n sha256 = \"85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize_derive/1.4.3/download\"],\n strip_prefix = \"zeroize_derive-1.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize_derive-1.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerotrie-0.2.4\",\n sha256 = \"0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerotrie/0.2.4/download\"],\n strip_prefix = \"zerotrie-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerotrie-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-0.11.6\",\n sha256 = \"90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec/0.11.6/download\"],\n strip_prefix = \"zerovec-0.11.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-0.11.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-derive-0.11.3\",\n sha256 = \"625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec-derive/0.11.3/download\"],\n strip_prefix = \"zerovec-derive-0.11.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-derive-0.11.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zmij-1.0.21\",\n sha256 = \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zmij/1.0.21/download\"],\n strip_prefix = \"zmij-1.0.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zmij-1.0.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-0.13.3\",\n sha256 = \"e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd/0.13.3/download\"],\n strip_prefix = \"zstd-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-safe-7.2.4\",\n sha256 = \"8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-safe/7.2.4/download\"],\n strip_prefix = \"zstd-safe-7.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-safe-7.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-sys-2.0.16-zstd.1.5.7\",\n sha256 = \"91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-sys/2.0.16+zstd.1.5.7/download\"],\n strip_prefix = \"zstd-sys-2.0.16+zstd.1.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-sys-2.0.16+zstd.1.5.7.bazel\"),\n )\n\n return [\n struct(repo=\"oak_std_crates_index__acpi-5.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aead-0.5.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aes-gcm-0.10.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aml-0.16.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__anyhow-1.0.102\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__arrayvec-0.7.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__assertables-7.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-stream-0.3.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-trait-0.1.89\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__atomic_refcell-0.1.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__axum-0.7.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__base64-0.21.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bincode-1.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitflags-2.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitvec-1.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bytes-1.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__chrono-0.4.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ciborium-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__clap-4.6.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__colored-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-fds-0.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-group-5.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__const-oid-0.9.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__coset-0.3.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-macro-0.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__derive_builder-0.20.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ecdsa-0.16.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ed25519-dalek-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__elf-0.7.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__env_logger-0.11.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__flate2-1.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-util-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__getrandom-0.2.17\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__goblin-0.8.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__googletest-0.14.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hashbrown-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hex-0.4.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hkdf-0.12.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hmac-0.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hpke-0.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-1.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-body-util-0.1.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__humantime-serde-1.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-1.9.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-util-0.1.20\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__indicatif-0.17.11\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__itertools-0.13.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jni-0.21.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jwt-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lazy_static-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__libm-0.2.16\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__linked_list_allocator-0.10.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lock_api-0.4.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__log-0.4.29\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__maplit-1.0.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__mockall-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nix-0.27.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nom-8.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-client-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-spec-0.8.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__once_cell-1.21.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__openssl-0.10.78\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-otlp-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-proto-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry_sdk-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__os_pipe-1.2.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ouroboros-0.18.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p256-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p384-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__parking_lot-0.12.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pem-3.0.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pkcs8-0.10.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__port_check-0.1.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__portpicker-0.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pprof-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__primeorder-0.13.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__procfs-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__proptest-1.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-build-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-derive-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-types-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__quote-1.0.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand-0.9.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_chacha-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_core-0.6.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rcgen-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-1.12.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-lite-0.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__reqwest-0.12.28\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rlsf-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-macros-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rpassword-7.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rs_merkle-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rsa-0.9.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rtnetlink-0.14.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-0.23.39\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pemfile-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pki-types-1.14.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__self_cell-1.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde-1.0.228\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde_json-1.0.149\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha2-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha3-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-0.3.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-tokio-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__spinning_top-0.3.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__static_assertions-1.1.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__strum-0.27.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syn-2.0.117\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syslog-6.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tar-0.4.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tempfile-3.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__thiserror-2.0.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tikv-jemallocator-0.5.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__time-macros-0.2.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-1.52.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-stream-0.1.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-util-0.7.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-vsock-0.7.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__toml-0.8.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-build-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-0.4.13\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-http-0.6.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-0.1.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-subscriber-0.3.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__uart_16550-0.3.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ubyte-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ureq-2.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__url-2.5.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__waki-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__walkdir-2.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmi-0.31.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-http-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__which-5.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wit-bindgen-0.33.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-cert-0.2.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-verify-0.4.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x86_64-0.15.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__xz2-0.1.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__yaml_serde-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zerocopy-0.8.48\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zeroize-1.8.2\", is_dev_dep = False),\n ]\n" } } }, @@ -6346,7 +6922,7 @@ "https://static.crates.io/crates/env_logger/0.11.10/download" ], "strip_prefix": "env_logger-0.11.10", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"env_logger\",\n deps = [\n \"@oak_std_crates_index__anstream-1.0.0//:anstream\",\n \"@oak_std_crates_index__anstyle-1.0.14//:anstyle\",\n \"@oak_std_crates_index__env_filter-1.0.1//:env_filter\",\n \"@oak_std_crates_index__jiff-0.2.23//:jiff\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"auto-color\",\n \"color\",\n \"default\",\n \"humantime\",\n \"regex\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=env_logger\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.11.10\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"env_logger\",\n deps = [\n \"@oak_std_crates_index__anstream-1.0.0//:anstream\",\n \"@oak_std_crates_index__anstyle-1.0.14//:anstyle\",\n \"@oak_std_crates_index__env_filter-1.0.1//:env_filter\",\n \"@oak_std_crates_index__jiff-0.2.24//:jiff\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"auto-color\",\n \"color\",\n \"default\",\n \"humantime\",\n \"regex\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=env_logger\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.11.10\",\n)\n" } }, "oak_std_crates_index__equator-0.4.2": { @@ -7466,7 +8042,7 @@ "https://static.crates.io/crates/hyper-rustls/0.27.9/download" ], "strip_prefix": "hyper-rustls-0.27.9", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hyper_rustls\",\n deps = [\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\",\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"http1\",\n \"ring\",\n \"tls12\",\n \"webpki-roots\",\n \"webpki-tokio\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hyper-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.9\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hyper_rustls\",\n deps = [\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\",\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"http1\",\n \"ring\",\n \"tls12\",\n \"webpki-roots\",\n \"webpki-tokio\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hyper-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.9\",\n)\n" } }, "oak_std_crates_index__hyper-timeout-0.5.2": { @@ -7965,36 +8541,36 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"itoa\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=itoa\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.18\",\n)\n" } }, - "oak_std_crates_index__jiff-0.2.23": { + "oak_std_crates_index__jiff-0.2.24": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359", + "sha256": "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/jiff/0.2.23/download" + "https://static.crates.io/crates/jiff/0.2.24/download" ], - "strip_prefix": "jiff-0.2.23", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"jiff\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.23\",\n)\n" + "strip_prefix": "jiff-0.2.24", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"jiff\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.24\",\n)\n" } }, - "oak_std_crates_index__jiff-static-0.2.23": { + "oak_std_crates_index__jiff-static-0.2.24": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4", + "sha256": "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/jiff-static/0.2.23/download" + "https://static.crates.io/crates/jiff-static/0.2.24/download" ], - "strip_prefix": "jiff-static-0.2.23", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"jiff_static\",\n deps = [\n \"@oak_std_crates_index__proc-macro2-1.0.106//:proc_macro2\",\n \"@oak_std_crates_index__quote-1.0.45//:quote\",\n \"@oak_std_crates_index__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff-static\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.23\",\n)\n" + "strip_prefix": "jiff-static-0.2.24", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"jiff_static\",\n deps = [\n \"@oak_std_crates_index__proc-macro2-1.0.106//:proc_macro2\",\n \"@oak_std_crates_index__quote-1.0.45//:quote\",\n \"@oak_std_crates_index__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff-static\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.24\",\n)\n" } }, "oak_std_crates_index__jni-0.21.1": { @@ -9839,7 +10415,7 @@ "https://static.crates.io/crates/pprof/0.15.0/download" ], "strip_prefix": "pprof-0.15.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"pprof\",\n deps = [\n \"@oak_std_crates_index__aligned-vec-0.6.4//:aligned_vec\",\n \"@oak_std_crates_index__backtrace-0.3.76//:backtrace\",\n \"@oak_std_crates_index__cfg-if-1.0.4//:cfg_if\",\n \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n \"@oak_std_crates_index__findshlibs-0.10.2//:findshlibs\",\n \"@oak_std_crates_index__inferno-0.11.21//:inferno\",\n \"@oak_std_crates_index__libc-0.2.185//:libc\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__nix-0.26.4//:nix\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__pprof-0.15.0//:build_script_build\",\n \"@oak_std_crates_index__prost-0.12.6//:prost\",\n \"@oak_std_crates_index__smallvec-1.15.1//:smallvec\",\n \"@oak_std_crates_index__spin-0.10.0//:spin\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.2//:symbolic_demangle\",\n \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n ],\n proc_macro_deps = [\n \"@oak_std_crates_index__prost-derive-0.12.6//:prost_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.15.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n deps = [\n \"@oak_std_crates_index__prost-build-0.12.6//:prost_build\",\n \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n ],\n edition = \"2021\",\n pkg_name = \"pprof\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.15.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"pprof\",\n deps = [\n \"@oak_std_crates_index__aligned-vec-0.6.4//:aligned_vec\",\n \"@oak_std_crates_index__backtrace-0.3.76//:backtrace\",\n \"@oak_std_crates_index__cfg-if-1.0.4//:cfg_if\",\n \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n \"@oak_std_crates_index__findshlibs-0.10.2//:findshlibs\",\n \"@oak_std_crates_index__inferno-0.11.21//:inferno\",\n \"@oak_std_crates_index__libc-0.2.185//:libc\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__nix-0.26.4//:nix\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__pprof-0.15.0//:build_script_build\",\n \"@oak_std_crates_index__prost-0.12.6//:prost\",\n \"@oak_std_crates_index__smallvec-1.15.1//:smallvec\",\n \"@oak_std_crates_index__spin-0.10.0//:spin\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.3//:symbolic_demangle\",\n \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n ],\n proc_macro_deps = [\n \"@oak_std_crates_index__prost-derive-0.12.6//:prost_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.15.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n deps = [\n \"@oak_std_crates_index__prost-build-0.12.6//:prost_build\",\n \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n ],\n edition = \"2021\",\n pkg_name = \"pprof\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.15.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "oak_std_crates_index__ppv-lite86-0.2.21": { @@ -10735,7 +11311,7 @@ "https://static.crates.io/crates/reqwest/0.12.28/download" ], "strip_prefix": "reqwest-0.12.28", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"reqwest\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__futures-core-0.3.32//:futures_core\",\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__serde-1.0.228//:serde\",\n \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n \"@oak_std_crates_index__serde_urlencoded-0.7.1//:serde_urlencoded\",\n \"@oak_std_crates_index__sync_wrapper-1.0.2//:sync_wrapper\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # aarch64-apple-darwin\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-unknown-unknown\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-wasip2\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-none\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-none\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls\",\n \"__rustls-ring\",\n \"__tls\",\n \"blocking\",\n \"json\",\n \"rustls-tls\",\n \"rustls-tls-webpki-roots\",\n \"rustls-tls-webpki-roots-no-provider\",\n \"stream\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=reqwest\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.12.28\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"reqwest\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__futures-core-0.3.32//:futures_core\",\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__serde-1.0.228//:serde\",\n \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n \"@oak_std_crates_index__serde_urlencoded-0.7.1//:serde_urlencoded\",\n \"@oak_std_crates_index__sync_wrapper-1.0.2//:sync_wrapper\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # aarch64-apple-darwin\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-unknown-unknown\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-wasip2\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-none\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-none\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls\",\n \"__rustls-ring\",\n \"__tls\",\n \"blocking\",\n \"json\",\n \"rustls-tls\",\n \"rustls-tls-webpki-roots\",\n \"rustls-tls-webpki-roots-no-provider\",\n \"stream\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=reqwest\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.12.28\",\n)\n" } }, "oak_std_crates_index__rfc6979-0.4.0": { @@ -11042,20 +11618,20 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rustls\",\n deps = [\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n \"@oak_std_crates_index__rustls-0.22.4//:build_script_build\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__rustls-webpki-0.102.8//:webpki\",\n \"@oak_std_crates_index__subtle-2.6.1//:subtle\",\n \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n ],\n aliases = {\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\": \"pki_types\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"log\",\n \"logging\",\n \"ring\",\n \"tls12\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.22.4\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"log\",\n \"logging\",\n \"ring\",\n \"tls12\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n ],\n edition = \"2021\",\n pkg_name = \"rustls\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.22.4\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, - "oak_std_crates_index__rustls-0.23.38": { + "oak_std_crates_index__rustls-0.23.39": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21", + "sha256": "7c2c118cb077cca2822033836dfb1b975355dfb784b5e8da48f7b6c5db74e60e", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/rustls/0.23.38/download" + "https://static.crates.io/crates/rustls/0.23.39/download" ], - "strip_prefix": "rustls-0.23.38", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rustls\",\n deps = [\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n \"@oak_std_crates_index__rustls-0.23.38//:build_script_build\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__rustls-webpki-0.103.13//:webpki\",\n \"@oak_std_crates_index__subtle-2.6.1//:subtle\",\n \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n ],\n aliases = {\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\": \"pki_types\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.23.38\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n ],\n edition = \"2021\",\n pkg_name = \"rustls\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.23.38\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "strip_prefix": "rustls-0.23.39", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rustls\",\n deps = [\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n \"@oak_std_crates_index__rustls-0.23.39//:build_script_build\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__rustls-webpki-0.103.13//:webpki\",\n \"@oak_std_crates_index__subtle-2.6.1//:subtle\",\n \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n ],\n aliases = {\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\": \"pki_types\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.23.39\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n ],\n edition = \"2021\",\n pkg_name = \"rustls\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.23.39\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "oak_std_crates_index__rustls-native-certs-0.8.3": { @@ -11986,36 +12562,36 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"svgbobdoc\",\n deps = [\n \"@oak_std_crates_index__base64-0.13.1//:base64\",\n \"@oak_std_crates_index__proc-macro2-1.0.106//:proc_macro2\",\n \"@oak_std_crates_index__quote-1.0.45//:quote\",\n \"@oak_std_crates_index__syn-1.0.109//:syn\",\n \"@oak_std_crates_index__unicode-width-0.1.14//:unicode_width\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=svgbobdoc\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.3.0\",\n)\n" } }, - "oak_std_crates_index__symbolic-common-12.18.2": { + "oak_std_crates_index__symbolic-common-12.18.3": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "4bbc8b4f883265fb2207a0d6ce67095f4bd6cf13e5f9183eb8b3e73fa1b2466a", + "sha256": "332615d90111d8eeaf86a84dc9bbe9f65d0d8c5cf11b4caccedc37754eb0dcfd", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/symbolic-common/12.18.2/download" + "https://static.crates.io/crates/symbolic-common/12.18.3/download" ], - "strip_prefix": "symbolic-common-12.18.2", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_common\",\n deps = [\n \"@oak_std_crates_index__debugid-0.8.0//:debugid\",\n \"@oak_std_crates_index__memmap2-0.9.10//:memmap2\",\n \"@oak_std_crates_index__stable_deref_trait-1.2.1//:stable_deref_trait\",\n \"@oak_std_crates_index__uuid-1.23.1//:uuid\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-common\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.2\",\n)\n" + "strip_prefix": "symbolic-common-12.18.3", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_common\",\n deps = [\n \"@oak_std_crates_index__debugid-0.8.0//:debugid\",\n \"@oak_std_crates_index__memmap2-0.9.10//:memmap2\",\n \"@oak_std_crates_index__stable_deref_trait-1.2.1//:stable_deref_trait\",\n \"@oak_std_crates_index__uuid-1.23.1//:uuid\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-common\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.3\",\n)\n" } }, - "oak_std_crates_index__symbolic-demangle-12.18.2": { + "oak_std_crates_index__symbolic-demangle-12.18.3": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "8eda470a26ea40eb5cafc35487718e23a2f19153d3a589affb9e8f7fa1aa73b3", + "sha256": "912017718eb4d21930546245af9a3475c9dccf15675a5c215664e76621afc471", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/symbolic-demangle/12.18.2/download" + "https://static.crates.io/crates/symbolic-demangle/12.18.3/download" ], - "strip_prefix": "symbolic-demangle-12.18.2", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_demangle\",\n deps = [\n \"@oak_std_crates_index__cpp_demangle-0.4.5//:cpp_demangle\",\n \"@oak_std_crates_index__rustc-demangle-0.1.27//:rustc_demangle\",\n \"@oak_std_crates_index__symbolic-common-12.18.2//:symbolic_common\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.2//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.2\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"symbolic-demangle\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"12.18.2\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "strip_prefix": "symbolic-demangle-12.18.3", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_demangle\",\n deps = [\n \"@oak_std_crates_index__cpp_demangle-0.4.5//:cpp_demangle\",\n \"@oak_std_crates_index__rustc-demangle-0.1.27//:rustc_demangle\",\n \"@oak_std_crates_index__symbolic-common-12.18.3//:symbolic_common\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.3//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.3\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"symbolic-demangle\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"12.18.3\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "oak_std_crates_index__syn-1.0.109": { @@ -12527,7 +13103,7 @@ "https://static.crates.io/crates/tokio-rustls/0.26.4/download" ], "strip_prefix": "tokio-rustls-0.26.4", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_rustls\",\n deps = [\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"logging\",\n \"tls12\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"ring\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"ring\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"ring\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.26.4\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_rustls\",\n deps = [\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"logging\",\n \"tls12\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"ring\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"ring\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"ring\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.26.4\",\n)\n" } }, "oak_std_crates_index__tokio-stream-0.1.18": { @@ -12559,7 +13135,7 @@ "https://static.crates.io/crates/tokio-tungstenite/0.27.0/download" ], "strip_prefix": "tokio-tungstenite-0.27.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_tungstenite\",\n deps = [\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__rustls-native-certs-0.8.3//:rustls_native_certs\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"connect\",\n \"default\",\n \"handshake\",\n \"rustls\",\n \"rustls-native-certs\",\n \"rustls-pki-types\",\n \"rustls-tls-native-roots\",\n \"stream\",\n \"tokio-rustls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_tungstenite\",\n deps = [\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__rustls-native-certs-0.8.3//:rustls_native_certs\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"connect\",\n \"default\",\n \"handshake\",\n \"rustls\",\n \"rustls-native-certs\",\n \"rustls-pki-types\",\n \"rustls-tls-native-roots\",\n \"stream\",\n \"tokio-rustls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" } }, "oak_std_crates_index__tokio-util-0.7.18": { @@ -12911,7 +13487,7 @@ "https://static.crates.io/crates/tungstenite/0.27.0/download" ], "strip_prefix": "tungstenite-0.27.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tungstenite\",\n deps = [\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__data-encoding-2.10.0//:data_encoding\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__httparse-1.10.1//:httparse\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rand-0.9.4//:rand\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__sha1-0.10.6//:sha1\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__utf-8-0.7.6//:utf8\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"data-encoding\",\n \"default\",\n \"handshake\",\n \"http\",\n \"httparse\",\n \"rustls\",\n \"rustls-pki-types\",\n \"sha1\",\n \"url\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tungstenite\",\n deps = [\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__data-encoding-2.10.0//:data_encoding\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__httparse-1.10.1//:httparse\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rand-0.9.4//:rand\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__sha1-0.10.6//:sha1\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__utf-8-0.7.6//:utf8\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"data-encoding\",\n \"default\",\n \"handshake\",\n \"http\",\n \"httparse\",\n \"rustls\",\n \"rustls-pki-types\",\n \"sha1\",\n \"url\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" } }, "oak_std_crates_index__typenum-1.20.0": { @@ -13119,7 +13695,7 @@ "https://static.crates.io/crates/ureq/2.12.1/download" ], "strip_prefix": "ureq-2.12.1", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"ureq\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__webpki-roots-0.26.11//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"gzip\",\n \"tls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=ureq\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.12.1\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"ureq\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__webpki-roots-0.26.11//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"gzip\",\n \"tls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=ureq\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.12.1\",\n)\n" } }, "oak_std_crates_index__url-2.5.8": { diff --git a/oak_private_memory/database/BUILD b/oak_private_memory/database/BUILD index 181668ad10..5fe42d87ee 100644 --- a/oak_private_memory/database/BUILD +++ b/oak_private_memory/database/BUILD @@ -68,6 +68,7 @@ rust_library( "@oak_crates_index//:tonic", "@pm_crates//:cxx", "@pm_crates//:rand", + "@pm_crates//:uuid", ], ) diff --git a/oak_private_memory/database/icing.rs b/oak_private_memory/database/icing.rs index 99a69187ec..e254067975 100644 --- a/oak_private_memory/database/icing.rs +++ b/oak_private_memory/database/icing.rs @@ -633,9 +633,12 @@ impl IcingMetaDatabase { let mut pending_views: Vec = Vec::new(); if let Some(views) = memory.views.as_ref() { for view in &views.llm_views { - // TODO: yongheng - Generate view id if not provided. + let mut view = view.clone(); + if view.id.is_empty() { + view.id = uuid::Uuid::new_v4().to_string(); + } if let Some(pending_view_metadata) = - PendingLlmViewMetadata::new(memory, view, &blob_id)? + PendingLlmViewMetadata::new(memory, &view, &blob_id)? { pending_views.push(pending_view_metadata); } From 6e4ec0bf995966c5279caca5ef10b4241128f51b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:06:17 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=A7=B9=20Fix=20code=20health=20issue:?= =?UTF-8?q?=20Generate=20view=20id=20if=20not=20provided?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added `uuid` dependency to `oak_private_memory`'s `MODULE.bazel` and `database/BUILD`. Used `uuid::Uuid::new_v4()` to generate a UUID string in `add_memory` in `icing.rs` if an `LlmView` has an empty `id`. Co-authored-by: tiziano88 <387628+tiziano88@users.noreply.github.com> From 27f41974d38411ebce3d8ff49180b6580563a96b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:55:57 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=A7=B9=20Fix=20code=20health=20issue:?= =?UTF-8?q?=20Generate=20view=20id=20if=20not=20provided?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolved TODO to generate a view ID using the already available `rand` crate to avoid introducing an extra dependency (`uuid`). It generates a 128-bit random number and formats it as a 32-character hexadecimal string, consistent with typical UUIDv4 structures without specific version/variant bits, fulfilling the uniqueness requirements perfectly well for private memory metadata contexts. Co-authored-by: tiziano88 <387628+tiziano88@users.noreply.github.com> From 2bb0a3c3919b989735ef0c48a1379c762cc81dce Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 21:07:43 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=A7=B9=20Fix=20code=20health=20issue:?= =?UTF-8?q?=20Generate=20view=20id=20if=20not=20provided?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolved TODO to generate a view ID using the already available `rand` crate to avoid introducing an extra dependency (`uuid`). It generates a 128-bit random number and formats it as a 32-character hexadecimal string, consistent with typical UUIDv4 structures without specific version/variant bits, fulfilling the uniqueness requirements perfectly well for private memory metadata contexts. Co-authored-by: tiziano88 <387628+tiziano88@users.noreply.github.com> --- oak_private_memory/MODULE.bazel | 5 - oak_private_memory/MODULE.bazel.lock | 662 ++------------------------- oak_private_memory/database/BUILD | 1 - oak_private_memory/database/icing.rs | 3 +- 4 files changed, 45 insertions(+), 626 deletions(-) diff --git a/oak_private_memory/MODULE.bazel b/oak_private_memory/MODULE.bazel index cb79ccec40..09dceba170 100644 --- a/oak_private_memory/MODULE.bazel +++ b/oak_private_memory/MODULE.bazel @@ -145,11 +145,6 @@ crate.spec( package = "rand", version = "0.9.1", ) -crate.spec( - package = "uuid", - version = "1.12.1", - features = ["v4"], -) crate.from_specs( name = "pm_crates", ) diff --git a/oak_private_memory/MODULE.bazel.lock b/oak_private_memory/MODULE.bazel.lock index 46629892b6..a9e6613688 100644 --- a/oak_private_memory/MODULE.bazel.lock +++ b/oak_private_memory/MODULE.bazel.lock @@ -2838,7 +2838,7 @@ "@@rules_rust+//crate_universe:extensions.bzl%crate": { "general": { "bzlTransitiveDigest": "R599cxxDkC/ZLrUDOgMQEP6Kuwa9jjqxQMRGEDpzKFE=", - "usagesDigest": "4tDEltzedUwIYBEFCWqNqoZTXfON+/AxITyAG2zqvcI=", + "usagesDigest": "PgupUBNFipT5Yy4x9XOF9ipsXNwelVc3EUxehFnwdCM=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": { @@ -2856,9 +2856,9 @@ "repoRuleId": "@@rules_rust+//crate_universe:extensions.bzl%_generate_repo", "attributes": { "contents": { - "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"aes-gcm-siv-0.11.1\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-siv\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx-1.0.194\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx_cc\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx_cc\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uuid-1.23.1\",\n actual = \"@pm_crates__uuid-1.23.1//:uuid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uuid\",\n actual = \"@pm_crates__uuid-1.23.1//:uuid\",\n tags = [\"manual\"],\n)\n", + "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"aes-gcm-siv-0.11.1\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-siv\",\n actual = \"@pm_crates__aes-gcm-siv-0.11.1//:aes_gcm_siv\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx-1.0.194\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"cxx_cc\",\n actual = \"@pm_crates__cxx-1.0.194//:cxx_cc\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@pm_crates__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n", "alias_rules.bzl": "\"\"\"Alias that transitions its target to `compilation_mode=opt`. Use `transition_alias=\"opt\"` to enable.\"\"\"\n\nload(\"@rules_cc//cc:defs.bzl\", \"CcInfo\")\nload(\"@rules_rust//rust:rust_common.bzl\", \"COMMON_PROVIDERS\")\n\ndef _transition_alias_impl(ctx):\n # `ctx.attr.actual` is a list of 1 item due to the transition\n providers = [ctx.attr.actual[0][provider] for provider in COMMON_PROVIDERS]\n if CcInfo in ctx.attr.actual[0]:\n providers.append(ctx.attr.actual[0][CcInfo])\n return providers\n\ndef _change_compilation_mode(compilation_mode):\n def _change_compilation_mode_impl(_settings, _attr):\n return {\n \"//command_line_option:compilation_mode\": compilation_mode,\n }\n\n return transition(\n implementation = _change_compilation_mode_impl,\n inputs = [],\n outputs = [\n \"//command_line_option:compilation_mode\",\n ],\n )\n\ndef _transition_alias_rule(compilation_mode):\n return rule(\n implementation = _transition_alias_impl,\n provides = COMMON_PROVIDERS,\n attrs = {\n \"actual\": attr.label(\n mandatory = True,\n doc = \"`rust_library()` target to transition to `compilation_mode=opt`.\",\n providers = COMMON_PROVIDERS,\n cfg = _change_compilation_mode(compilation_mode),\n ),\n \"_allowlist_function_transition\": attr.label(\n default = \"@bazel_tools//tools/allowlists/function_transition_allowlist\",\n ),\n },\n doc = \"Transitions a Rust library crate to the `compilation_mode=opt`.\",\n )\n\ntransition_alias_dbg = _transition_alias_rule(\"dbg\")\ntransition_alias_fastbuild = _transition_alias_rule(\"fastbuild\")\ntransition_alias_opt = _transition_alias_rule(\"opt\")\n", - "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"aes-gcm-siv\": Label(\"@pm_crates//:aes-gcm-siv-0.11.1\"),\n \"cxx\": Label(\"@pm_crates//:cxx-1.0.194\"),\n \"rand\": Label(\"@pm_crates//:rand-0.9.4\"),\n \"uuid\": Label(\"@pm_crates//:uuid-1.23.1\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p3\\\"))\": [],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(windows)\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip1\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"x86_64-pc-windows-msvc\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"x86_64-unknown-nixos-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"pm_crates__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-gcm-siv-0.11.1\",\n sha256 = \"ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm-siv/0.11.1/download\"],\n strip_prefix = \"aes-gcm-siv-0.11.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-gcm-siv-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__anyhow-1.0.102\",\n sha256 = \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anyhow/1.0.102/download\"],\n strip_prefix = \"anyhow-1.0.102\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.anyhow-1.0.102.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__bitflags-2.11.1\",\n sha256 = \"c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/2.11.1/download\"],\n strip_prefix = \"bitflags-2.11.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.bitflags-2.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__bumpalo-3.20.2\",\n sha256 = \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bumpalo/3.20.2/download\"],\n strip_prefix = \"bumpalo-3.20.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.bumpalo-3.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__codespan-reporting-0.13.1\",\n sha256 = \"af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/codespan-reporting/0.13.1/download\"],\n strip_prefix = \"codespan-reporting-0.13.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.codespan-reporting-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-1.0.194\",\n sha256 = \"747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx/1.0.194/download\"],\n strip_prefix = \"cxx-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-build-1.0.194\",\n sha256 = \"b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx-build/1.0.194/download\"],\n strip_prefix = \"cxx-build-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-build-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-flags-1.0.194\",\n sha256 = \"23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-flags/1.0.194/download\"],\n strip_prefix = \"cxxbridge-flags-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-flags-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-macro-1.0.194\",\n sha256 = \"e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-macro/1.0.194/download\"],\n strip_prefix = \"cxxbridge-macro-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-macro-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__foldhash-0.1.5\",\n sha256 = \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.1.5/download\"],\n strip_prefix = \"foldhash-0.1.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.foldhash-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__foldhash-0.2.0\",\n sha256 = \"77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.2.0/download\"],\n strip_prefix = \"foldhash-0.2.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.foldhash-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.4.2\",\n sha256 = \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.4.2/download\"],\n strip_prefix = \"getrandom-0.4.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__hashbrown-0.15.5\",\n sha256 = \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.15.5/download\"],\n strip_prefix = \"hashbrown-0.15.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.hashbrown-0.15.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__heck-0.5.0\",\n sha256 = \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.5.0/download\"],\n strip_prefix = \"heck-0.5.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.heck-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__id-arena-2.3.0\",\n sha256 = \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/id-arena/2.3.0/download\"],\n strip_prefix = \"id-arena-2.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.id-arena-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__itoa-1.0.18\",\n sha256 = \"8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itoa/1.0.18/download\"],\n strip_prefix = \"itoa-1.0.18\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.itoa-1.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__js-sys-0.3.95\",\n sha256 = \"2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/js-sys/0.3.95/download\"],\n strip_prefix = \"js-sys-0.3.95\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.js-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__leb128fmt-0.1.0\",\n sha256 = \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128fmt/0.1.0/download\"],\n strip_prefix = \"leb128fmt-0.1.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.leb128fmt-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__link-cplusplus-1.0.12\",\n sha256 = \"7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/link-cplusplus/1.0.12/download\"],\n strip_prefix = \"link-cplusplus-1.0.12\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.link-cplusplus-1.0.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__log-0.4.29\",\n sha256 = \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/log/0.4.29/download\"],\n strip_prefix = \"log-0.4.29\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.log-0.4.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__memchr-2.8.0\",\n sha256 = \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memchr/2.8.0/download\"],\n strip_prefix = \"memchr-2.8.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.memchr-2.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__once_cell-1.21.4\",\n sha256 = \"9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell/1.21.4/download\"],\n strip_prefix = \"once_cell-1.21.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.once_cell-1.21.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__prettyplease-0.2.37\",\n sha256 = \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prettyplease/0.2.37/download\"],\n strip_prefix = \"prettyplease-0.2.37\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.prettyplease-0.2.37.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__r-efi-6.0.0\",\n sha256 = \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/6.0.0/download\"],\n strip_prefix = \"r-efi-6.0.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.r-efi-6.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rustversion-1.0.22\",\n sha256 = \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustversion/1.0.22/download\"],\n strip_prefix = \"rustversion-1.0.22\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rustversion-1.0.22.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__scratch-1.0.9\",\n sha256 = \"d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scratch/1.0.9/download\"],\n strip_prefix = \"scratch-1.0.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.scratch-1.0.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__semver-1.0.28\",\n sha256 = \"8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/semver/1.0.28/download\"],\n strip_prefix = \"semver-1.0.28\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.semver-1.0.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_json-1.0.149\",\n sha256 = \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_json/1.0.149/download\"],\n strip_prefix = \"serde_json-1.0.149\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_json-1.0.149.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-xid-0.2.6\",\n sha256 = \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-xid/0.2.6/download\"],\n strip_prefix = \"unicode-xid-0.2.6\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-xid-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__uuid-1.23.1\",\n sha256 = \"ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uuid/1.23.1/download\"],\n strip_prefix = \"uuid-1.23.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.uuid-1.23.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06\",\n sha256 = \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download\"],\n strip_prefix = \"wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-0.2.118\",\n sha256 = \"0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-macro-0.2.118\",\n sha256 = \"eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-macro-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-macro-support-0.2.118\",\n sha256 = \"9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-support-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-macro-support-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-bindgen-shared-0.2.118\",\n sha256 = \"5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-shared-0.2.118\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-bindgen-shared-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-encoder-0.244.0\",\n sha256 = \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.244.0/download\"],\n strip_prefix = \"wasm-encoder-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-encoder-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasm-metadata-0.244.0\",\n sha256 = \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.244.0/download\"],\n strip_prefix = \"wasm-metadata-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasm-metadata-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasmparser-0.244.0\",\n sha256 = \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.244.0/download\"],\n strip_prefix = \"wasmparser-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasmparser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-0.51.0\",\n sha256 = \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-core-0.51.0\",\n sha256 = \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-core-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-rust-0.51.0\",\n sha256 = \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-rust-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-rust-macro-0.51.0\",\n sha256 = \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.51.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-rust-macro-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-component-0.244.0\",\n sha256 = \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.244.0/download\"],\n strip_prefix = \"wit-component-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-component-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-parser-0.244.0\",\n sha256 = \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.244.0/download\"],\n strip_prefix = \"wit-parser-0.244.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-parser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zmij-1.0.21\",\n sha256 = \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zmij/1.0.21/download\"],\n strip_prefix = \"zmij-1.0.21\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zmij-1.0.21.bazel\"),\n )\n\n return [\n struct(repo=\"pm_crates__aes-gcm-siv-0.11.1\", is_dev_dep = False),\n struct(repo=\"pm_crates__cxx-1.0.194\", is_dev_dep = False),\n struct(repo=\"pm_crates__rand-0.9.4\", is_dev_dep = False),\n struct(repo=\"pm_crates__uuid-1.23.1\", is_dev_dep = False),\n ]\n" + "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"aes-gcm-siv\": Label(\"@pm_crates//:aes-gcm-siv-0.11.1\"),\n \"cxx\": Label(\"@pm_crates//:cxx-1.0.194\"),\n \"rand\": Label(\"@pm_crates//:rand-0.9.4\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n \"cfg(windows)\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip1\": [\"@rules_rust//rust/platform:wasm32-wasip1\"],\n \"x86_64-pc-windows-msvc\": [\"@rules_rust//rust/platform:x86_64-pc-windows-msvc\"],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"x86_64-unknown-nixos-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\"],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"pm_crates__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__aes-gcm-siv-0.11.1\",\n sha256 = \"ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm-siv/0.11.1/download\"],\n strip_prefix = \"aes-gcm-siv-0.11.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.aes-gcm-siv-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__codespan-reporting-0.13.1\",\n sha256 = \"af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/codespan-reporting/0.13.1/download\"],\n strip_prefix = \"codespan-reporting-0.13.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.codespan-reporting-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-1.0.194\",\n sha256 = \"747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx/1.0.194/download\"],\n strip_prefix = \"cxx-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxx-build-1.0.194\",\n sha256 = \"b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxx-build/1.0.194/download\"],\n strip_prefix = \"cxx-build-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxx-build-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-flags-1.0.194\",\n sha256 = \"23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-flags/1.0.194/download\"],\n strip_prefix = \"cxxbridge-flags-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-flags-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__cxxbridge-macro-1.0.194\",\n sha256 = \"e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cxxbridge-macro/1.0.194/download\"],\n strip_prefix = \"cxxbridge-macro-1.0.194\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.cxxbridge-macro-1.0.194.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__foldhash-0.2.0\",\n sha256 = \"77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.2.0/download\"],\n strip_prefix = \"foldhash-0.2.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.foldhash-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__link-cplusplus-1.0.12\",\n sha256 = \"7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/link-cplusplus/1.0.12/download\"],\n strip_prefix = \"link-cplusplus-1.0.12\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.link-cplusplus-1.0.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__scratch-1.0.9\",\n sha256 = \"d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scratch/1.0.9/download\"],\n strip_prefix = \"scratch-1.0.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.scratch-1.0.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"pm_crates__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@pm_crates//pm_crates:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n return [\n struct(repo=\"pm_crates__aes-gcm-siv-0.11.1\", is_dev_dep = False),\n struct(repo=\"pm_crates__cxx-1.0.194\", is_dev_dep = False),\n struct(repo=\"pm_crates__rand-0.9.4\", is_dev_dep = False),\n ]\n" } } }, @@ -2910,54 +2910,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"aes_gcm_siv\",\n deps = [\n \"@pm_crates__aead-0.5.2//:aead\",\n \"@pm_crates__aes-0.8.4//:aes\",\n \"@pm_crates__cipher-0.4.4//:cipher\",\n \"@pm_crates__ctr-0.9.2//:ctr\",\n \"@pm_crates__polyval-0.6.2//:polyval\",\n \"@pm_crates__subtle-2.6.1//:subtle\",\n \"@pm_crates__zeroize-1.8.2//:zeroize\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"aes\",\n \"alloc\",\n \"default\",\n \"getrandom\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=aes-gcm-siv\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.11.1\",\n)\n" } }, - "pm_crates__anyhow-1.0.102": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/anyhow/1.0.102/download" - ], - "strip_prefix": "anyhow-1.0.102", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"anyhow\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=anyhow\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.102\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"anyhow\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=anyhow\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.102\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, - "pm_crates__bitflags-2.11.1": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/bitflags/2.11.1/download" - ], - "strip_prefix": "bitflags-2.11.1", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"bitflags\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=bitflags\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.11.1\",\n)\n" - } - }, - "pm_crates__bumpalo-3.20.2": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/bumpalo/3.20.2/download" - ], - "strip_prefix": "bumpalo-3.20.2", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"bumpalo\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=bumpalo\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"3.20.2\",\n)\n" - } - }, "pm_crates__cc-1.2.60": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3166,22 +3118,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"find_msvc_tools\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=find-msvc-tools\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.9\",\n)\n" } }, - "pm_crates__foldhash-0.1.5": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/foldhash/0.1.5/download" - ], - "strip_prefix": "foldhash-0.1.5", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"foldhash\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=foldhash\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.5\",\n)\n" - } - }, "pm_crates__foldhash-0.2.0": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3246,38 +3182,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"getrandom\",\n deps = [\n \"@pm_crates__cfg-if-1.0.4//:cfg_if\",\n \"@pm_crates__getrandom-0.3.4//:build_script_build\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))\n ],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.3.4\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"getrandom\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.3.4\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, - "pm_crates__getrandom-0.4.2": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/getrandom/0.4.2/download" - ], - "strip_prefix": "getrandom-0.4.2", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"getrandom\",\n deps = [\n \"@pm_crates__cfg-if-1.0.4//:cfg_if\",\n \"@pm_crates__getrandom-0.4.2//:build_script_build\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))\n ],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [\n \"@pm_crates__libc-0.2.185//:libc\", # cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.4.2\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2024\",\n pkg_name = \"getrandom\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=getrandom\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.4.2\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, - "pm_crates__hashbrown-0.15.5": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/hashbrown/0.15.5/download" - ], - "strip_prefix": "hashbrown-0.15.5", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hashbrown\",\n deps = [\n \"@pm_crates__foldhash-0.1.5//:foldhash\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default-hasher\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hashbrown\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.15.5\",\n)\n" - } - }, "pm_crates__hashbrown-0.17.0": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3294,38 +3198,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hashbrown\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hashbrown\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.17.0\",\n)\n" } }, - "pm_crates__heck-0.5.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/heck/0.5.0/download" - ], - "strip_prefix": "heck-0.5.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"heck\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=heck\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.5.0\",\n)\n" - } - }, - "pm_crates__id-arena-2.3.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/id-arena/2.3.0/download" - ], - "strip_prefix": "id-arena-2.3.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"id_arena\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=id-arena\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.3.0\",\n)\n" - } - }, "pm_crates__indexmap-2.14.0": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3339,7 +3211,7 @@ "https://static.crates.io/crates/indexmap/2.14.0/download" ], "strip_prefix": "indexmap-2.14.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"indexmap\",\n deps = [\n \"@pm_crates__equivalent-1.0.2//:equivalent\",\n \"@pm_crates__hashbrown-0.17.0//:hashbrown\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"serde\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=indexmap\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.14.0\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"indexmap\",\n deps = [\n \"@pm_crates__equivalent-1.0.2//:equivalent\",\n \"@pm_crates__hashbrown-0.17.0//:hashbrown\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=indexmap\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.14.0\",\n)\n" } }, "pm_crates__inout-0.1.4": { @@ -3358,54 +3230,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"inout\",\n deps = [\n \"@pm_crates__generic-array-0.14.7//:generic_array\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=inout\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.4\",\n)\n" } }, - "pm_crates__itoa-1.0.18": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/itoa/1.0.18/download" - ], - "strip_prefix": "itoa-1.0.18", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"itoa\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=itoa\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.18\",\n)\n" - } - }, - "pm_crates__js-sys-0.3.95": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/js-sys/0.3.95/download" - ], - "strip_prefix": "js-sys-0.3.95", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"js_sys\",\n deps = [\n \"@pm_crates__once_cell-1.21.4//:once_cell\",\n \"@pm_crates__wasm-bindgen-0.2.118//:wasm_bindgen\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=js-sys\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.3.95\",\n)\n" - } - }, - "pm_crates__leb128fmt-0.1.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/leb128fmt/0.1.0/download" - ], - "strip_prefix": "leb128fmt-0.1.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"leb128fmt\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=leb128fmt\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.1.0\",\n)\n" - } - }, "pm_crates__libc-0.2.185": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3438,54 +3262,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"link_cplusplus\",\n deps = [\n \"@pm_crates__link-cplusplus-1.0.12//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=link-cplusplus\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.12\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n deps = [\n \"@pm_crates__cc-1.2.60//:cc\",\n ],\n edition = \"2018\",\n links = \"cplusplus\",\n pkg_name = \"link-cplusplus\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=link-cplusplus\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.12\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, - "pm_crates__log-0.4.29": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/log/0.4.29/download" - ], - "strip_prefix": "log-0.4.29", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"log\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=log\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.4.29\",\n)\n" - } - }, - "pm_crates__memchr-2.8.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/memchr/2.8.0/download" - ], - "strip_prefix": "memchr-2.8.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"memchr\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=memchr\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.8.0\",\n)\n" - } - }, - "pm_crates__once_cell-1.21.4": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/once_cell/1.21.4/download" - ], - "strip_prefix": "once_cell-1.21.4", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"once_cell\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=once_cell\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.21.4\",\n)\n" - } - }, "pm_crates__opaque-debug-0.3.1": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3534,22 +3310,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"ppv_lite86\",\n deps = [\n \"@pm_crates__zerocopy-0.8.48//:zerocopy\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"simd\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=ppv-lite86\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.21\",\n)\n" } }, - "pm_crates__prettyplease-0.2.37": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/prettyplease/0.2.37/download" - ], - "strip_prefix": "prettyplease-0.2.37", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"prettyplease\",\n deps = [\n \"@pm_crates__prettyplease-0.2.37//:build_script_build\",\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=prettyplease\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.37\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n links = \"prettyplease02\",\n pkg_name = \"prettyplease\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=prettyplease\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.2.37\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, "pm_crates__proc-macro2-1.0.106": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3598,22 +3358,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"r_efi\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=r-efi\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"5.3.0\",\n)\n" } }, - "pm_crates__r-efi-6.0.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/r-efi/6.0.0/download" - ], - "strip_prefix": "r-efi-6.0.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"r_efi\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=r-efi\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"6.0.0\",\n)\n" - } - }, "pm_crates__rand-0.9.4": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3678,22 +3422,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rand_core\",\n deps = [\n \"@pm_crates__getrandom-0.3.4//:getrandom\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"os_rng\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rand_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.9.5\",\n)\n" } }, - "pm_crates__rustversion-1.0.22": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/rustversion/1.0.22/download" - ], - "strip_prefix": "rustversion-1.0.22", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"rustversion\",\n deps = [\n \"@pm_crates__rustversion-1.0.22//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustversion\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.22\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build/build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2018\",\n pkg_name = \"rustversion\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustversion\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.22\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, "pm_crates__scratch-1.0.9": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3710,22 +3438,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"scratch\",\n deps = [\n \"@pm_crates__scratch-1.0.9//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2015\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=scratch\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.9\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2015\",\n pkg_name = \"scratch\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=scratch\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.9\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, - "pm_crates__semver-1.0.28": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/semver/1.0.28/download" - ], - "strip_prefix": "semver-1.0.28", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"semver\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=semver\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.28\",\n)\n" - } - }, "pm_crates__serde-1.0.228": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3739,7 +3451,7 @@ "https://static.crates.io/crates/serde/1.0.228/download" ], "strip_prefix": "serde-1.0.228", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde\",\n deps = [\n \"@pm_crates__serde-1.0.228//:build_script_build\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde\",\n deps = [\n \"@pm_crates__serde-1.0.228//:build_script_build\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "pm_crates__serde_core-1.0.228": { @@ -3755,7 +3467,7 @@ "https://static.crates.io/crates/serde_core/1.0.228/download" ], "strip_prefix": "serde_core-1.0.228", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde_core\",\n deps = [\n \"@pm_crates__serde_core-1.0.228//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"result\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"result\",\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde_core\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde_core\",\n deps = [\n \"@pm_crates__serde_core-1.0.228//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde_core\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.228\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "pm_crates__serde_derive-1.0.228": { @@ -3771,23 +3483,7 @@ "https://static.crates.io/crates/serde_derive/1.0.228/download" ], "strip_prefix": "serde_derive-1.0.228", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"serde_derive\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_derive\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n" - } - }, - "pm_crates__serde_json-1.0.149": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/serde_json/1.0.149/download" - ], - "strip_prefix": "serde_json-1.0.149", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"serde_json\",\n deps = [\n \"@pm_crates__itoa-1.0.18//:itoa\",\n \"@pm_crates__memchr-2.8.0//:memchr\",\n \"@pm_crates__serde_core-1.0.228//:serde_core\",\n \"@pm_crates__serde_json-1.0.149//:build_script_build\",\n \"@pm_crates__zmij-1.0.21//:zmij\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_json\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.149\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"std\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"serde_json\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_json\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.149\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"serde_derive\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=serde_derive\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.228\",\n)\n" } }, "pm_crates__shlex-1.3.0": { @@ -3835,7 +3531,7 @@ "https://static.crates.io/crates/syn/2.0.117/download" ], "strip_prefix": "syn-2.0.117", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"syn\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__unicode-ident-1.0.24//:unicode_ident\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"clone-impls\",\n \"default\",\n \"derive\",\n \"extra-traits\",\n \"full\",\n \"parsing\",\n \"printing\",\n \"proc-macro\",\n \"visit\",\n \"visit-mut\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=syn\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.0.117\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"syn\",\n deps = [\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__unicode-ident-1.0.24//:unicode_ident\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"clone-impls\",\n \"default\",\n \"derive\",\n \"full\",\n \"parsing\",\n \"printing\",\n \"proc-macro\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=syn\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.0.117\",\n)\n" } }, "pm_crates__termcolor-1.4.1": { @@ -3902,22 +3598,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"unicode_width\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=unicode-width\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.2\",\n)\n" } }, - "pm_crates__unicode-xid-0.2.6": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/unicode-xid/0.2.6/download" - ], - "strip_prefix": "unicode-xid-0.2.6", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"unicode_xid\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2015\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=unicode-xid\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.6\",\n)\n" - } - }, "pm_crates__universal-hash-0.5.1": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3934,22 +3614,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"universal_hash\",\n deps = [\n \"@pm_crates__crypto-common-0.1.7//:crypto_common\",\n \"@pm_crates__subtle-2.6.1//:subtle\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=universal-hash\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.5.1\",\n)\n" } }, - "pm_crates__uuid-1.23.1": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/uuid/1.23.1/download" - ], - "strip_prefix": "uuid-1.23.1", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"uuid\",\n deps = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # aarch64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # wasm32-wasip1\n ],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # x86_64-pc-windows-msvc\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [\n \"@pm_crates__getrandom-0.4.2//:getrandom\", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"rng\",\n \"std\",\n \"v4\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=uuid\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.23.1\",\n)\n" - } - }, "pm_crates__version_check-0.9.5": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -3998,134 +3662,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasip2\",\n deps = [\n \"@pm_crates__wit-bindgen-0.57.1//:wit_bindgen\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasip2\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.3+wasi-0.2.9\",\n)\n" } }, - "pm_crates__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download" - ], - "strip_prefix": "wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasip3\",\n deps = [\n \"@pm_crates__wit-bindgen-0.51.0//:wit_bindgen\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasip3\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.4.0+wasi-0.3.0-rc-2026-01-06\",\n)\n" - } - }, - "pm_crates__wasm-bindgen-0.2.118": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasm-bindgen/0.2.118/download" - ], - "strip_prefix": "wasm-bindgen-0.2.118", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_bindgen\",\n deps = [\n \"@pm_crates__cfg-if-1.0.4//:cfg_if\",\n \"@pm_crates__once_cell-1.21.4//:once_cell\",\n \"@pm_crates__wasm-bindgen-0.2.118//:build_script_build\",\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:wasm_bindgen_shared\",\n ],\n proc_macro_deps = [\n \"@pm_crates__wasm-bindgen-macro-0.2.118//:wasm_bindgen_macro\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n aliases = {\n \"@pm_crates__rustversion-1.0.22//:rustversion\": \"rustversion_compat\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:wasm_bindgen_shared\",\n ],\n edition = \"2021\",\n pkg_name = \"wasm-bindgen\",\n proc_macro_deps = [\n \"@pm_crates__rustversion-1.0.22//:rustversion\",\n ],\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.2.118\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, - "pm_crates__wasm-bindgen-macro-0.2.118": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download" - ], - "strip_prefix": "wasm-bindgen-macro-0.2.118", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"wasm_bindgen_macro\",\n deps = [\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__wasm-bindgen-macro-support-0.2.118//:wasm_bindgen_macro_support\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-macro\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n" - } - }, - "pm_crates__wasm-bindgen-macro-support-0.2.118": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download" - ], - "strip_prefix": "wasm-bindgen-macro-support-0.2.118", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_bindgen_macro_support\",\n deps = [\n \"@pm_crates__bumpalo-3.20.2//:bumpalo\",\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:wasm_bindgen_shared\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-macro-support\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n" - } - }, - "pm_crates__wasm-bindgen-shared-0.2.118": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download" - ], - "strip_prefix": "wasm-bindgen-shared-0.2.118", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_bindgen_shared\",\n deps = [\n \"@pm_crates__unicode-ident-1.0.24//:unicode_ident\",\n \"@pm_crates__wasm-bindgen-shared-0.2.118//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-shared\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.118\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n links = \"wasm_bindgen\",\n pkg_name = \"wasm-bindgen-shared\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-bindgen-shared\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.2.118\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, - "pm_crates__wasm-encoder-0.244.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasm-encoder/0.244.0/download" - ], - "strip_prefix": "wasm-encoder-0.244.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_encoder\",\n deps = [\n \"@pm_crates__leb128fmt-0.1.0//:leb128fmt\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"component-model\",\n \"std\",\n \"wasmparser\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-encoder\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" - } - }, - "pm_crates__wasm-metadata-0.244.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasm-metadata/0.244.0/download" - ], - "strip_prefix": "wasm-metadata-0.244.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasm_metadata\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__wasm-encoder-0.244.0//:wasm_encoder\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasm-metadata\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" - } - }, - "pm_crates__wasmparser-0.244.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wasmparser/0.244.0/download" - ], - "strip_prefix": "wasmparser-0.244.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wasmparser\",\n deps = [\n \"@pm_crates__bitflags-2.11.1//:bitflags\",\n \"@pm_crates__hashbrown-0.15.5//:hashbrown\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__semver-1.0.28//:semver\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"component-model\",\n \"features\",\n \"hash-collections\",\n \"simd\",\n \"std\",\n \"validate\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wasmparser\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" - } - }, "pm_crates__winapi-util-0.1.11": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -4174,22 +3710,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"windows_sys\",\n deps = [\n \"@pm_crates__windows-link-0.2.1//:windows_link\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=windows-sys\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.61.2\",\n)\n" } }, - "pm_crates__wit-bindgen-0.51.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wit-bindgen/0.51.0/download" - ], - "strip_prefix": "wit-bindgen-0.51.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen\",\n deps = [\n \"@pm_crates__wit-bindgen-0.51.0//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2024\",\n pkg_name = \"wit-bindgen\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.51.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, "pm_crates__wit-bindgen-0.57.1": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -4206,86 +3726,6 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen\",\n deps = [\n \"@pm_crates__wit-bindgen-0.57.1//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.57.1\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2024\",\n pkg_name = \"wit-bindgen\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.57.1\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, - "pm_crates__wit-bindgen-core-0.51.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wit-bindgen-core/0.51.0/download" - ], - "strip_prefix": "wit-bindgen-core-0.51.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen_core\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__heck-0.5.0//:heck\",\n \"@pm_crates__wit-parser-0.244.0//:wit_parser\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-core\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n" - } - }, - "pm_crates__wit-bindgen-rust-0.51.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download" - ], - "strip_prefix": "wit-bindgen-rust-0.51.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_bindgen_rust\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__heck-0.5.0//:heck\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n \"@pm_crates__syn-2.0.117//:syn\",\n \"@pm_crates__wasm-metadata-0.244.0//:wasm_metadata\",\n \"@pm_crates__wit-bindgen-core-0.51.0//:wit_bindgen_core\",\n \"@pm_crates__wit-bindgen-rust-0.51.0//:build_script_build\",\n \"@pm_crates__wit-component-0.244.0//:wit_component\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n ],\n edition = \"2024\",\n pkg_name = \"wit-bindgen-rust\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.51.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, - "pm_crates__wit-bindgen-rust-macro-0.51.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download" - ], - "strip_prefix": "wit-bindgen-rust-macro-0.51.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"wit_bindgen_rust_macro\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n \"@pm_crates__proc-macro2-1.0.106//:proc_macro2\",\n \"@pm_crates__quote-1.0.45//:quote\",\n \"@pm_crates__syn-2.0.117//:syn\",\n \"@pm_crates__wit-bindgen-core-0.51.0//:wit_bindgen_core\",\n \"@pm_crates__wit-bindgen-rust-0.51.0//:wit_bindgen_rust\",\n \"@pm_crates__wit-bindgen-rust-macro-0.51.0//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2024\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust-macro\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.51.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@pm_crates__prettyplease-0.2.37//:prettyplease\",\n ],\n edition = \"2024\",\n pkg_name = \"wit-bindgen-rust-macro\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-bindgen-rust-macro\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.51.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, - "pm_crates__wit-component-0.244.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wit-component/0.244.0/download" - ], - "strip_prefix": "wit-component-0.244.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_component\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__bitflags-2.11.1//:bitflags\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__log-0.4.29//:log\",\n \"@pm_crates__serde-1.0.228//:serde\",\n \"@pm_crates__serde_json-1.0.149//:serde_json\",\n \"@pm_crates__wasm-encoder-0.244.0//:wasm_encoder\",\n \"@pm_crates__wasm-metadata-0.244.0//:wasm_metadata\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n \"@pm_crates__wit-parser-0.244.0//:wit_parser\",\n ],\n proc_macro_deps = [\n \"@pm_crates__serde_derive-1.0.228//:serde_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-component\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" - } - }, - "pm_crates__wit-parser-0.244.0": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/wit-parser/0.244.0/download" - ], - "strip_prefix": "wit-parser-0.244.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"wit_parser\",\n deps = [\n \"@pm_crates__anyhow-1.0.102//:anyhow\",\n \"@pm_crates__id-arena-2.3.0//:id_arena\",\n \"@pm_crates__indexmap-2.14.0//:indexmap\",\n \"@pm_crates__log-0.4.29//:log\",\n \"@pm_crates__semver-1.0.28//:semver\",\n \"@pm_crates__serde-1.0.228//:serde\",\n \"@pm_crates__serde_json-1.0.149//:serde_json\",\n \"@pm_crates__unicode-xid-0.2.6//:unicode_xid\",\n \"@pm_crates__wasmparser-0.244.0//:wasmparser\",\n ],\n proc_macro_deps = [\n \"@pm_crates__serde_derive-1.0.228//:serde_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"decoding\",\n \"default\",\n \"serde\",\n \"serde_json\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=wit-parser\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.244.0\",\n)\n" - } - }, "pm_crates__zerocopy-0.8.48": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { @@ -4334,29 +3774,13 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"zeroize\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=zeroize\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.8.2\",\n)\n" } }, - "pm_crates__zmij-1.0.21": { - "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", - "attributes": { - "patch_args": [], - "patch_tool": "", - "patches": [], - "remote_patch_strip": 1, - "sha256": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa", - "type": "tar.gz", - "urls": [ - "https://static.crates.io/crates/zmij/1.0.21/download" - ], - "strip_prefix": "zmij-1.0.21", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak_private_memory'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"zmij\",\n deps = [\n \"@pm_crates__zmij-1.0.21//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=zmij\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:aarch64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip1\": [],\n \"@rules_rust//rust/platform:x86_64-pc-windows-msvc\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.21\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"zmij\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=zmij\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"1.0.21\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" - } - }, "oak_std_crates_index": { "repoRuleId": "@@rules_rust+//crate_universe:extensions.bzl%_generate_repo", "attributes": { "contents": { - "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"acpi-5.2.0\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"acpi\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead-0.5.2\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-0.10.3\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml-0.16.4\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow-1.0.102\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec-0.7.6\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables-7.0.1\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream-0.3.6\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait-0.1.89\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell-0.1.14\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum-0.7.9\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64-0.21.7\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode-1.3.3\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags-2.11.1\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec-1.0.1\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes-1.11.1\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono-0.4.44\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium-0.2.2\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap-4.6.1\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored-2.2.0\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds-0.3.3\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group-5.0.1\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid-0.9.6\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset-0.3.8\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-0.5.1\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro-0.4.0\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder-0.20.2\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa-0.16.9\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek-2.2.0\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf-0.7.4\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger-0.11.10\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2-1.1.9\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-0.3.32\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util-0.3.32\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom-0.2.17\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin-0.8.2\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest-0.14.2\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown-0.14.5\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex-0.4.3\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf-0.12.4\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac-0.12.1\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke-0.11.0\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-1.4.0\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util-0.1.3\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde-1.1.1\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-1.9.0\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util-0.1.20\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif-0.17.11\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools-0.13.0\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni-0.21.1\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt-0.16.0\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static-1.5.0\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm-0.2.16\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator-0.10.5\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api-0.4.14\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log-0.4.29\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit-1.0.2\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall-0.13.1\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix-0.27.1\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom-8.0.0\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client-0.15.0\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec-0.8.4\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell-1.21.4\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl-0.10.78\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe-1.2.3\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros-0.18.5\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256-0.13.2\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384-0.13.1\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot-0.12.5\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem-3.0.6\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8-0.10.2\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check-0.1.5\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker-0.1.1\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof-0.15.0\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder-0.13.6\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs-0.16.0\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest-1.11.0\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-0.14.3\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build-0.14.3\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive-0.14.3\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types-0.14.3\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote-1.0.45\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha-0.3.1\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core-0.6.4\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen-0.13.2\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-1.12.3\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite-0.1.9\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest-0.12.28\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf-0.2.2\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword-7.4.0\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle-1.5.0\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa-0.9.10\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink-0.14.1\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-0.23.39\",\n actual = \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls\",\n actual = \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile-2.2.0\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types-1.14.0\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell-1.2.2\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde-1.0.228\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json-1.0.149\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2-0.10.9\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3-0.10.9\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-0.3.18\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio-0.3.1\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top-0.3.0\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions-1.1.0\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum-0.27.2\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn-2.0.117\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog-6.1.1\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar-0.4.45\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile-3.27.0\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror-2.0.18\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator-0.5.4\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros-0.2.18\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-1.52.1\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream-0.1.18\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util-0.7.18\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock-0.7.2\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml-0.8.23\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-0.4.13\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http-0.6.8\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-0.1.44\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber-0.3.23\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550-0.3.2\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte-0.10.4\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq-2.12.1\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url-2.5.8\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki-0.5.1\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir-2.5.0\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi-0.31.2\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which-5.0.0\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen-0.33.0\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert-0.2.5\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify-0.4.8\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64-0.15.4\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2-0.1.7\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde-0.10.4\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy-0.8.48\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize-1.8.2\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n", + "BUILD.bazel": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files(\n [\n \"cargo-bazel.json\",\n \"crates.bzl\",\n \"defs.bzl\",\n ] + glob(\n allow_empty = True,\n include = [\"*.bazel\"],\n ),\n)\n\nfilegroup(\n name = \"srcs\",\n srcs = glob(\n allow_empty = True,\n include = [\n \"*.bazel\",\n \"*.bzl\",\n ],\n ),\n)\n\n# Workspace Member Dependencies\nalias(\n name = \"acpi-5.2.0\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"acpi\",\n actual = \"@oak_std_crates_index__acpi-5.2.0//:acpi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead-0.5.2\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aead\",\n actual = \"@oak_std_crates_index__aead-0.5.2//:aead\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm-0.10.3\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aes-gcm\",\n actual = \"@oak_std_crates_index__aes-gcm-0.10.3//:aes_gcm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml-0.16.4\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"aml\",\n actual = \"@oak_std_crates_index__aml-0.16.4//:aml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow-1.0.102\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"anyhow\",\n actual = \"@oak_std_crates_index__anyhow-1.0.102//:anyhow\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec-0.7.6\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"arrayvec\",\n actual = \"@oak_std_crates_index__arrayvec-0.7.6//:arrayvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables-7.0.1\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"assertables\",\n actual = \"@oak_std_crates_index__assertables-7.0.1//:assertables\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream-0.3.6\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-stream\",\n actual = \"@oak_std_crates_index__async-stream-0.3.6//:async_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait-0.1.89\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"async-trait\",\n actual = \"@oak_std_crates_index__async-trait-0.1.89//:async_trait\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell-0.1.14\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"atomic_refcell\",\n actual = \"@oak_std_crates_index__atomic_refcell-0.1.14//:atomic_refcell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum-0.7.9\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"axum\",\n actual = \"@oak_std_crates_index__axum-0.7.9//:axum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64-0.21.7\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"base64\",\n actual = \"@oak_std_crates_index__base64-0.21.7//:base64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode-1.3.3\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bincode\",\n actual = \"@oak_std_crates_index__bincode-1.3.3//:bincode\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags-2.11.1\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitflags\",\n actual = \"@oak_std_crates_index__bitflags-2.11.1//:bitflags\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec-1.0.1\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bitvec\",\n actual = \"@oak_std_crates_index__bitvec-1.0.1//:bitvec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes-1.11.1\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"bytes\",\n actual = \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono-0.4.44\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"chrono\",\n actual = \"@oak_std_crates_index__chrono-0.4.44//:chrono\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium-0.2.2\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ciborium\",\n actual = \"@oak_std_crates_index__ciborium-0.2.2//:ciborium\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap-4.6.1\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"clap\",\n actual = \"@oak_std_crates_index__clap-4.6.1//:clap\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored-2.2.0\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"colored\",\n actual = \"@oak_std_crates_index__colored-2.2.0//:colored\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds-0.3.3\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-fds\",\n actual = \"@oak_std_crates_index__command-fds-0.3.3//:command_fds\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group-5.0.1\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"command-group\",\n actual = \"@oak_std_crates_index__command-group-5.0.1//:command_group\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid-0.9.6\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"const-oid\",\n actual = \"@oak_std_crates_index__const-oid-0.9.6//:const_oid\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset-0.3.8\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"coset\",\n actual = \"@oak_std_crates_index__coset-0.3.8//:coset\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-0.5.1\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion\",\n actual = \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro-0.4.0\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"criterion-macro\",\n actual = \"@oak_std_crates_index__criterion-macro-0.4.0//:criterion_macro\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder-0.20.2\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"derive_builder\",\n actual = \"@oak_std_crates_index__derive_builder-0.20.2//:derive_builder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa-0.16.9\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ecdsa\",\n actual = \"@oak_std_crates_index__ecdsa-0.16.9//:ecdsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek-2.2.0\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ed25519-dalek\",\n actual = \"@oak_std_crates_index__ed25519-dalek-2.2.0//:ed25519_dalek\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf-0.7.4\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"elf\",\n actual = \"@oak_std_crates_index__elf-0.7.4//:elf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger-0.11.10\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"env_logger\",\n actual = \"@oak_std_crates_index__env_logger-0.11.10//:env_logger\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2-1.1.9\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"flate2\",\n actual = \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-0.3.32\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures\",\n actual = \"@oak_std_crates_index__futures-0.3.32//:futures\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util-0.3.32\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"futures-util\",\n actual = \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom-0.2.17\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"getrandom\",\n actual = \"@oak_std_crates_index__getrandom-0.2.17//:getrandom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin-0.8.2\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"goblin\",\n actual = \"@oak_std_crates_index__goblin-0.8.2//:goblin\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest-0.14.2\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"googletest\",\n actual = \"@oak_std_crates_index__googletest-0.14.2//:googletest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown-0.14.5\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hashbrown\",\n actual = \"@oak_std_crates_index__hashbrown-0.14.5//:hashbrown\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex-0.4.3\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hex\",\n actual = \"@oak_std_crates_index__hex-0.4.3//:hex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf-0.12.4\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hkdf\",\n actual = \"@oak_std_crates_index__hkdf-0.12.4//:hkdf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac-0.12.1\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hmac\",\n actual = \"@oak_std_crates_index__hmac-0.12.1//:hmac\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke-0.11.0\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hpke\",\n actual = \"@oak_std_crates_index__hpke-0.11.0//:hpke\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-1.4.0\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http\",\n actual = \"@oak_std_crates_index__http-1.4.0//:http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util-0.1.3\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"http-body-util\",\n actual = \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde-1.1.1\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"humantime-serde\",\n actual = \"@oak_std_crates_index__humantime-serde-1.1.1//:humantime_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-1.9.0\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper\",\n actual = \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util-0.1.20\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"hyper-util\",\n actual = \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif-0.17.11\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"indicatif\",\n actual = \"@oak_std_crates_index__indicatif-0.17.11//:indicatif\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools-0.13.0\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"itertools\",\n actual = \"@oak_std_crates_index__itertools-0.13.0//:itertools\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni-0.21.1\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jni\",\n actual = \"@oak_std_crates_index__jni-0.21.1//:jni\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt-0.16.0\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"jwt\",\n actual = \"@oak_std_crates_index__jwt-0.16.0//:jwt\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static-1.5.0\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lazy_static\",\n actual = \"@oak_std_crates_index__lazy_static-1.5.0//:lazy_static\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm-0.2.16\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"libm\",\n actual = \"@oak_std_crates_index__libm-0.2.16//:libm\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator-0.10.5\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"linked_list_allocator\",\n actual = \"@oak_std_crates_index__linked_list_allocator-0.10.5//:linked_list_allocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api-0.4.14\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"lock_api\",\n actual = \"@oak_std_crates_index__lock_api-0.4.14//:lock_api\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log-0.4.29\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"log\",\n actual = \"@oak_std_crates_index__log-0.4.29//:log\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit-1.0.2\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"maplit\",\n actual = \"@oak_std_crates_index__maplit-1.0.2//:maplit\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall-0.13.1\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"mockall\",\n actual = \"@oak_std_crates_index__mockall-0.13.1//:mockall\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix-0.27.1\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nix\",\n actual = \"@oak_std_crates_index__nix-0.27.1//:nix\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom-8.0.0\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"nom\",\n actual = \"@oak_std_crates_index__nom-8.0.0//:nom\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client-0.15.0\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-client\",\n actual = \"@oak_std_crates_index__oci-client-0.15.0//:oci_client\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec-0.8.4\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"oci-spec\",\n actual = \"@oak_std_crates_index__oci-spec-0.8.4//:oci_spec\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell-1.21.4\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"once_cell\",\n actual = \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl-0.10.78\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"openssl\",\n actual = \"@oak_std_crates_index__openssl-0.10.78//:openssl\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry\",\n actual = \"@oak_std_crates_index__opentelemetry-0.31.0//:opentelemetry\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-appender-tracing\",\n actual = \"@oak_std_crates_index__opentelemetry-appender-tracing-0.31.1//:opentelemetry_appender_tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp-0.31.1\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-otlp\",\n actual = \"@oak_std_crates_index__opentelemetry-otlp-0.31.1//:opentelemetry_otlp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry-proto\",\n actual = \"@oak_std_crates_index__opentelemetry-proto-0.31.0//:opentelemetry_proto\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk-0.31.0\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"opentelemetry_sdk\",\n actual = \"@oak_std_crates_index__opentelemetry_sdk-0.31.0//:opentelemetry_sdk\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe-1.2.3\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"os_pipe\",\n actual = \"@oak_std_crates_index__os_pipe-1.2.3//:os_pipe\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros-0.18.5\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ouroboros\",\n actual = \"@oak_std_crates_index__ouroboros-0.18.5//:ouroboros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256-0.13.2\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p256\",\n actual = \"@oak_std_crates_index__p256-0.13.2//:p256\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384-0.13.1\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"p384\",\n actual = \"@oak_std_crates_index__p384-0.13.1//:p384\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot-0.12.5\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"parking_lot\",\n actual = \"@oak_std_crates_index__parking_lot-0.12.5//:parking_lot\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem-3.0.6\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pem\",\n actual = \"@oak_std_crates_index__pem-3.0.6//:pem\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8-0.10.2\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pkcs8\",\n actual = \"@oak_std_crates_index__pkcs8-0.10.2//:pkcs8\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check-0.1.5\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"port_check\",\n actual = \"@oak_std_crates_index__port_check-0.1.5//:port_check\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker-0.1.1\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"portpicker\",\n actual = \"@oak_std_crates_index__portpicker-0.1.1//:portpicker\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof-0.15.0\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"pprof\",\n actual = \"@oak_std_crates_index__pprof-0.15.0//:pprof\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder-0.13.6\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"primeorder\",\n actual = \"@oak_std_crates_index__primeorder-0.13.6//:primeorder\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs-0.16.0\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"procfs\",\n actual = \"@oak_std_crates_index__procfs-0.16.0//:procfs\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest-1.11.0\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"proptest\",\n actual = \"@oak_std_crates_index__proptest-1.11.0//:proptest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-0.14.3\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost\",\n actual = \"@oak_std_crates_index__prost-0.14.3//:prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build-0.14.3\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-build\",\n actual = \"@oak_std_crates_index__prost-build-0.14.3//:prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive-0.14.3\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-derive\",\n actual = \"@oak_std_crates_index__prost-derive-0.14.3//:prost_derive\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types-0.14.3\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"prost-types\",\n actual = \"@oak_std_crates_index__prost-types-0.14.3//:prost_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote-1.0.45\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"quote\",\n actual = \"@oak_std_crates_index__quote-1.0.45//:quote\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand-0.9.4\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand\",\n actual = \"@oak_std_crates_index__rand-0.9.4//:rand\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha-0.3.1\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_chacha\",\n actual = \"@oak_std_crates_index__rand_chacha-0.3.1//:rand_chacha\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core-0.6.4\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rand_core\",\n actual = \"@oak_std_crates_index__rand_core-0.6.4//:rand_core\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen-0.13.2\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rcgen\",\n actual = \"@oak_std_crates_index__rcgen-0.13.2//:rcgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-1.12.3\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex\",\n actual = \"@oak_std_crates_index__regex-1.12.3//:regex\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite-0.1.9\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"regex-lite\",\n actual = \"@oak_std_crates_index__regex-lite-0.1.9//:regex_lite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest-0.12.28\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"reqwest\",\n actual = \"@oak_std_crates_index__reqwest-0.12.28//:reqwest\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf-0.2.2\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rlsf\",\n actual = \"@oak_std_crates_index__rlsf-0.2.2//:rlsf\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp\",\n actual = \"@oak_std_crates_index__rmcp-0.8.5//:rmcp\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros-0.8.5\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rmcp-macros\",\n actual = \"@oak_std_crates_index__rmcp-macros-0.8.5//:rmcp_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword-7.4.0\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rpassword\",\n actual = \"@oak_std_crates_index__rpassword-7.4.0//:rpassword\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle-1.5.0\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rs_merkle\",\n actual = \"@oak_std_crates_index__rs_merkle-1.5.0//:rs_merkle\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa-0.9.10\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rsa\",\n actual = \"@oak_std_crates_index__rsa-0.9.10//:rsa\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink-0.14.1\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rtnetlink\",\n actual = \"@oak_std_crates_index__rtnetlink-0.14.1//:rtnetlink\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-0.23.38\",\n actual = \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls\",\n actual = \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile-2.2.0\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pemfile\",\n actual = \"@oak_std_crates_index__rustls-pemfile-2.2.0//:rustls_pemfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types-1.14.0\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"rustls-pki-types\",\n actual = \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell-1.2.2\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"self_cell\",\n actual = \"@oak_std_crates_index__self_cell-1.2.2//:self_cell\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde-1.0.228\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde\",\n actual = \"@oak_std_crates_index__serde-1.0.228//:serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json-1.0.149\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"serde_json\",\n actual = \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2-0.10.9\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha2\",\n actual = \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3-0.10.9\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"sha3\",\n actual = \"@oak_std_crates_index__sha3-0.10.9//:sha3\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-0.3.18\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook\",\n actual = \"@oak_std_crates_index__signal-hook-0.3.18//:signal_hook\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio-0.3.1\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"signal-hook-tokio\",\n actual = \"@oak_std_crates_index__signal-hook-tokio-0.3.1//:signal_hook_tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top-0.3.0\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"spinning_top\",\n actual = \"@oak_std_crates_index__spinning_top-0.3.0//:spinning_top\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions-1.1.0\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"static_assertions\",\n actual = \"@oak_std_crates_index__static_assertions-1.1.0//:static_assertions\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum-0.27.2\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"strum\",\n actual = \"@oak_std_crates_index__strum-0.27.2//:strum\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn-2.0.117\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syn\",\n actual = \"@oak_std_crates_index__syn-2.0.117//:syn\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog-6.1.1\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"syslog\",\n actual = \"@oak_std_crates_index__syslog-6.1.1//:syslog\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar-0.4.45\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tar\",\n actual = \"@oak_std_crates_index__tar-0.4.45//:tar\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile-3.27.0\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tempfile\",\n actual = \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror-2.0.18\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"thiserror\",\n actual = \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator-0.5.4\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tikv-jemallocator\",\n actual = \"@oak_std_crates_index__tikv-jemallocator-0.5.4//:tikv_jemallocator\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros-0.2.18\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"time-macros\",\n actual = \"@oak_std_crates_index__time-macros-0.2.18//:time_macros\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-1.52.1\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio\",\n actual = \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream-0.1.18\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-stream\",\n actual = \"@oak_std_crates_index__tokio-stream-0.1.18//:tokio_stream\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-tungstenite\",\n actual = \"@oak_std_crates_index__tokio-tungstenite-0.27.0//:tokio_tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util-0.7.18\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-util\",\n actual = \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock-0.7.2\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tokio-vsock\",\n actual = \"@oak_std_crates_index__tokio-vsock-0.7.2//:tokio_vsock\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml-0.8.23\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"toml\",\n actual = \"@oak_std_crates_index__toml-0.8.23//:toml\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic\",\n actual = \"@oak_std_crates_index__tonic-0.14.5//:tonic\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost\",\n actual = \"@oak_std_crates_index__tonic-prost-0.14.5//:tonic_prost\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build-0.14.5\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tonic-prost-build\",\n actual = \"@oak_std_crates_index__tonic-prost-build-0.14.5//:tonic_prost_build\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-0.4.13\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower\",\n actual = \"@oak_std_crates_index__tower-0.4.13//:tower\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http-0.6.8\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tower-http\",\n actual = \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-0.1.44\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing\",\n actual = \"@oak_std_crates_index__tracing-0.1.44//:tracing\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber-0.3.23\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tracing-subscriber\",\n actual = \"@oak_std_crates_index__tracing-subscriber-0.3.23//:tracing_subscriber\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite-0.27.0\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"tungstenite\",\n actual = \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550-0.3.2\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"uart_16550\",\n actual = \"@oak_std_crates_index__uart_16550-0.3.2//:uart_16550\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte-0.10.4\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ubyte\",\n actual = \"@oak_std_crates_index__ubyte-0.10.4//:ubyte\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq-2.12.1\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"ureq\",\n actual = \"@oak_std_crates_index__ureq-2.12.1//:ureq\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url-2.5.8\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"url\",\n actual = \"@oak_std_crates_index__url-2.5.8//:url\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki-0.5.1\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"waki\",\n actual = \"@oak_std_crates_index__waki-0.5.1//:waki\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir-2.5.0\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"walkdir\",\n actual = \"@oak_std_crates_index__walkdir-2.5.0//:walkdir\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi-0.31.2\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmi\",\n actual = \"@oak_std_crates_index__wasmi-0.31.2//:wasmi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime\",\n actual = \"@oak_std_crates_index__wasmtime-32.0.1//:wasmtime\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-32.0.1//:wasmtime_wasi\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http-32.0.1\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wasmtime-wasi-http\",\n actual = \"@oak_std_crates_index__wasmtime-wasi-http-32.0.1//:wasmtime_wasi_http\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which-5.0.0\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"which\",\n actual = \"@oak_std_crates_index__which-5.0.0//:which\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen-0.33.0\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"wit-bindgen\",\n actual = \"@oak_std_crates_index__wit-bindgen-0.33.0//:wit_bindgen\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert-0.2.5\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-cert\",\n actual = \"@oak_std_crates_index__x509-cert-0.2.5//:x509_cert\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify-0.4.8\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x509-verify\",\n actual = \"@oak_std_crates_index__x509-verify-0.4.8//:x509_verify\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64-0.15.4\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"x86_64\",\n actual = \"@oak_std_crates_index__x86_64-0.15.4//:x86_64\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2-0.1.7\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"xz2\",\n actual = \"@oak_std_crates_index__xz2-0.1.7//:xz2\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde-0.10.4\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"yaml_serde\",\n actual = \"@oak_std_crates_index__yaml_serde-0.10.4//:yaml_serde\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy-0.8.48\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zerocopy\",\n actual = \"@oak_std_crates_index__zerocopy-0.8.48//:zerocopy\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize-1.8.2\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n\nalias(\n name = \"zeroize\",\n actual = \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n tags = [\"manual\"],\n)\n", "alias_rules.bzl": "\"\"\"Alias that transitions its target to `compilation_mode=opt`. Use `transition_alias=\"opt\"` to enable.\"\"\"\n\nload(\"@rules_cc//cc:defs.bzl\", \"CcInfo\")\nload(\"@rules_rust//rust:rust_common.bzl\", \"COMMON_PROVIDERS\")\n\ndef _transition_alias_impl(ctx):\n # `ctx.attr.actual` is a list of 1 item due to the transition\n providers = [ctx.attr.actual[0][provider] for provider in COMMON_PROVIDERS]\n if CcInfo in ctx.attr.actual[0]:\n providers.append(ctx.attr.actual[0][CcInfo])\n return providers\n\ndef _change_compilation_mode(compilation_mode):\n def _change_compilation_mode_impl(_settings, _attr):\n return {\n \"//command_line_option:compilation_mode\": compilation_mode,\n }\n\n return transition(\n implementation = _change_compilation_mode_impl,\n inputs = [],\n outputs = [\n \"//command_line_option:compilation_mode\",\n ],\n )\n\ndef _transition_alias_rule(compilation_mode):\n return rule(\n implementation = _transition_alias_impl,\n provides = COMMON_PROVIDERS,\n attrs = {\n \"actual\": attr.label(\n mandatory = True,\n doc = \"`rust_library()` target to transition to `compilation_mode=opt`.\",\n providers = COMMON_PROVIDERS,\n cfg = _change_compilation_mode(compilation_mode),\n ),\n \"_allowlist_function_transition\": attr.label(\n default = \"@bazel_tools//tools/allowlists/function_transition_allowlist\",\n ),\n },\n doc = \"Transitions a Rust library crate to the `compilation_mode=opt`.\",\n )\n\ntransition_alias_dbg = _transition_alias_rule(\"dbg\")\ntransition_alias_fastbuild = _transition_alias_rule(\"fastbuild\")\ntransition_alias_opt = _transition_alias_rule(\"opt\")\n", - "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"acpi\": Label(\"@oak_std_crates_index//:acpi-5.2.0\"),\n \"aead\": Label(\"@oak_std_crates_index//:aead-0.5.2\"),\n \"aes-gcm\": Label(\"@oak_std_crates_index//:aes-gcm-0.10.3\"),\n \"aml\": Label(\"@oak_std_crates_index//:aml-0.16.4\"),\n \"anyhow\": Label(\"@oak_std_crates_index//:anyhow-1.0.102\"),\n \"arrayvec\": Label(\"@oak_std_crates_index//:arrayvec-0.7.6\"),\n \"assertables\": Label(\"@oak_std_crates_index//:assertables-7.0.1\"),\n \"async-stream\": Label(\"@oak_std_crates_index//:async-stream-0.3.6\"),\n \"atomic_refcell\": Label(\"@oak_std_crates_index//:atomic_refcell-0.1.14\"),\n \"axum\": Label(\"@oak_std_crates_index//:axum-0.7.9\"),\n \"base64\": Label(\"@oak_std_crates_index//:base64-0.21.7\"),\n \"bincode\": Label(\"@oak_std_crates_index//:bincode-1.3.3\"),\n \"bitflags\": Label(\"@oak_std_crates_index//:bitflags-2.11.1\"),\n \"bitvec\": Label(\"@oak_std_crates_index//:bitvec-1.0.1\"),\n \"bytes\": Label(\"@oak_std_crates_index//:bytes-1.11.1\"),\n \"chrono\": Label(\"@oak_std_crates_index//:chrono-0.4.44\"),\n \"ciborium\": Label(\"@oak_std_crates_index//:ciborium-0.2.2\"),\n \"clap\": Label(\"@oak_std_crates_index//:clap-4.6.1\"),\n \"colored\": Label(\"@oak_std_crates_index//:colored-2.2.0\"),\n \"command-fds\": Label(\"@oak_std_crates_index//:command-fds-0.3.3\"),\n \"command-group\": Label(\"@oak_std_crates_index//:command-group-5.0.1\"),\n \"const-oid\": Label(\"@oak_std_crates_index//:const-oid-0.9.6\"),\n \"coset\": Label(\"@oak_std_crates_index//:coset-0.3.8\"),\n \"criterion\": Label(\"@oak_std_crates_index//:criterion-0.5.1\"),\n \"derive_builder\": Label(\"@oak_std_crates_index//:derive_builder-0.20.2\"),\n \"ecdsa\": Label(\"@oak_std_crates_index//:ecdsa-0.16.9\"),\n \"ed25519-dalek\": Label(\"@oak_std_crates_index//:ed25519-dalek-2.2.0\"),\n \"elf\": Label(\"@oak_std_crates_index//:elf-0.7.4\"),\n \"env_logger\": Label(\"@oak_std_crates_index//:env_logger-0.11.10\"),\n \"flate2\": Label(\"@oak_std_crates_index//:flate2-1.1.9\"),\n \"futures\": Label(\"@oak_std_crates_index//:futures-0.3.32\"),\n \"futures-util\": Label(\"@oak_std_crates_index//:futures-util-0.3.32\"),\n \"getrandom\": Label(\"@oak_std_crates_index//:getrandom-0.2.17\"),\n \"goblin\": Label(\"@oak_std_crates_index//:goblin-0.8.2\"),\n \"googletest\": Label(\"@oak_std_crates_index//:googletest-0.14.2\"),\n \"hashbrown\": Label(\"@oak_std_crates_index//:hashbrown-0.14.5\"),\n \"hex\": Label(\"@oak_std_crates_index//:hex-0.4.3\"),\n \"hkdf\": Label(\"@oak_std_crates_index//:hkdf-0.12.4\"),\n \"hmac\": Label(\"@oak_std_crates_index//:hmac-0.12.1\"),\n \"hpke\": Label(\"@oak_std_crates_index//:hpke-0.11.0\"),\n \"http\": Label(\"@oak_std_crates_index//:http-1.4.0\"),\n \"http-body-util\": Label(\"@oak_std_crates_index//:http-body-util-0.1.3\"),\n \"humantime-serde\": Label(\"@oak_std_crates_index//:humantime-serde-1.1.1\"),\n \"hyper\": Label(\"@oak_std_crates_index//:hyper-1.9.0\"),\n \"hyper-util\": Label(\"@oak_std_crates_index//:hyper-util-0.1.20\"),\n \"indicatif\": Label(\"@oak_std_crates_index//:indicatif-0.17.11\"),\n \"itertools\": Label(\"@oak_std_crates_index//:itertools-0.13.0\"),\n \"jni\": Label(\"@oak_std_crates_index//:jni-0.21.1\"),\n \"jwt\": Label(\"@oak_std_crates_index//:jwt-0.16.0\"),\n \"lazy_static\": Label(\"@oak_std_crates_index//:lazy_static-1.5.0\"),\n \"libm\": Label(\"@oak_std_crates_index//:libm-0.2.16\"),\n \"linked_list_allocator\": Label(\"@oak_std_crates_index//:linked_list_allocator-0.10.5\"),\n \"lock_api\": Label(\"@oak_std_crates_index//:lock_api-0.4.14\"),\n \"log\": Label(\"@oak_std_crates_index//:log-0.4.29\"),\n \"maplit\": Label(\"@oak_std_crates_index//:maplit-1.0.2\"),\n \"mockall\": Label(\"@oak_std_crates_index//:mockall-0.13.1\"),\n \"nix\": Label(\"@oak_std_crates_index//:nix-0.27.1\"),\n \"nom\": Label(\"@oak_std_crates_index//:nom-8.0.0\"),\n \"oci-client\": Label(\"@oak_std_crates_index//:oci-client-0.15.0\"),\n \"oci-spec\": Label(\"@oak_std_crates_index//:oci-spec-0.8.4\"),\n \"once_cell\": Label(\"@oak_std_crates_index//:once_cell-1.21.4\"),\n \"openssl\": Label(\"@oak_std_crates_index//:openssl-0.10.78\"),\n \"opentelemetry\": Label(\"@oak_std_crates_index//:opentelemetry-0.31.0\"),\n \"opentelemetry-appender-tracing\": Label(\"@oak_std_crates_index//:opentelemetry-appender-tracing-0.31.1\"),\n \"opentelemetry-otlp\": Label(\"@oak_std_crates_index//:opentelemetry-otlp-0.31.1\"),\n \"opentelemetry-proto\": Label(\"@oak_std_crates_index//:opentelemetry-proto-0.31.0\"),\n \"opentelemetry_sdk\": Label(\"@oak_std_crates_index//:opentelemetry_sdk-0.31.0\"),\n \"os_pipe\": Label(\"@oak_std_crates_index//:os_pipe-1.2.3\"),\n \"ouroboros\": Label(\"@oak_std_crates_index//:ouroboros-0.18.5\"),\n \"p256\": Label(\"@oak_std_crates_index//:p256-0.13.2\"),\n \"p384\": Label(\"@oak_std_crates_index//:p384-0.13.1\"),\n \"parking_lot\": Label(\"@oak_std_crates_index//:parking_lot-0.12.5\"),\n \"pem\": Label(\"@oak_std_crates_index//:pem-3.0.6\"),\n \"pkcs8\": Label(\"@oak_std_crates_index//:pkcs8-0.10.2\"),\n \"port_check\": Label(\"@oak_std_crates_index//:port_check-0.1.5\"),\n \"portpicker\": Label(\"@oak_std_crates_index//:portpicker-0.1.1\"),\n \"pprof\": Label(\"@oak_std_crates_index//:pprof-0.15.0\"),\n \"primeorder\": Label(\"@oak_std_crates_index//:primeorder-0.13.6\"),\n \"procfs\": Label(\"@oak_std_crates_index//:procfs-0.16.0\"),\n \"proptest\": Label(\"@oak_std_crates_index//:proptest-1.11.0\"),\n \"prost\": Label(\"@oak_std_crates_index//:prost-0.14.3\"),\n \"prost-build\": Label(\"@oak_std_crates_index//:prost-build-0.14.3\"),\n \"prost-types\": Label(\"@oak_std_crates_index//:prost-types-0.14.3\"),\n \"quote\": Label(\"@oak_std_crates_index//:quote-1.0.45\"),\n \"rand\": Label(\"@oak_std_crates_index//:rand-0.9.4\"),\n \"rand_chacha\": Label(\"@oak_std_crates_index//:rand_chacha-0.3.1\"),\n \"rand_core\": Label(\"@oak_std_crates_index//:rand_core-0.6.4\"),\n \"rcgen\": Label(\"@oak_std_crates_index//:rcgen-0.13.2\"),\n \"regex\": Label(\"@oak_std_crates_index//:regex-1.12.3\"),\n \"regex-lite\": Label(\"@oak_std_crates_index//:regex-lite-0.1.9\"),\n \"reqwest\": Label(\"@oak_std_crates_index//:reqwest-0.12.28\"),\n \"rlsf\": Label(\"@oak_std_crates_index//:rlsf-0.2.2\"),\n \"rmcp\": Label(\"@oak_std_crates_index//:rmcp-0.8.5\"),\n \"rpassword\": Label(\"@oak_std_crates_index//:rpassword-7.4.0\"),\n \"rs_merkle\": Label(\"@oak_std_crates_index//:rs_merkle-1.5.0\"),\n \"rsa\": Label(\"@oak_std_crates_index//:rsa-0.9.10\"),\n \"rtnetlink\": Label(\"@oak_std_crates_index//:rtnetlink-0.14.1\"),\n \"rustls\": Label(\"@oak_std_crates_index//:rustls-0.23.39\"),\n \"rustls-pemfile\": Label(\"@oak_std_crates_index//:rustls-pemfile-2.2.0\"),\n \"rustls-pki-types\": Label(\"@oak_std_crates_index//:rustls-pki-types-1.14.0\"),\n \"self_cell\": Label(\"@oak_std_crates_index//:self_cell-1.2.2\"),\n \"serde\": Label(\"@oak_std_crates_index//:serde-1.0.228\"),\n \"serde_json\": Label(\"@oak_std_crates_index//:serde_json-1.0.149\"),\n \"sha2\": Label(\"@oak_std_crates_index//:sha2-0.10.9\"),\n \"sha3\": Label(\"@oak_std_crates_index//:sha3-0.10.9\"),\n \"signal-hook\": Label(\"@oak_std_crates_index//:signal-hook-0.3.18\"),\n \"signal-hook-tokio\": Label(\"@oak_std_crates_index//:signal-hook-tokio-0.3.1\"),\n \"spinning_top\": Label(\"@oak_std_crates_index//:spinning_top-0.3.0\"),\n \"static_assertions\": Label(\"@oak_std_crates_index//:static_assertions-1.1.0\"),\n \"strum\": Label(\"@oak_std_crates_index//:strum-0.27.2\"),\n \"syn\": Label(\"@oak_std_crates_index//:syn-2.0.117\"),\n \"syslog\": Label(\"@oak_std_crates_index//:syslog-6.1.1\"),\n \"tar\": Label(\"@oak_std_crates_index//:tar-0.4.45\"),\n \"tempfile\": Label(\"@oak_std_crates_index//:tempfile-3.27.0\"),\n \"thiserror\": Label(\"@oak_std_crates_index//:thiserror-2.0.18\"),\n \"tikv-jemallocator\": Label(\"@oak_std_crates_index//:tikv-jemallocator-0.5.4\"),\n \"tokio\": Label(\"@oak_std_crates_index//:tokio-1.52.1\"),\n \"tokio-stream\": Label(\"@oak_std_crates_index//:tokio-stream-0.1.18\"),\n \"tokio-tungstenite\": Label(\"@oak_std_crates_index//:tokio-tungstenite-0.27.0\"),\n \"tokio-util\": Label(\"@oak_std_crates_index//:tokio-util-0.7.18\"),\n \"tokio-vsock\": Label(\"@oak_std_crates_index//:tokio-vsock-0.7.2\"),\n \"toml\": Label(\"@oak_std_crates_index//:toml-0.8.23\"),\n \"tonic\": Label(\"@oak_std_crates_index//:tonic-0.14.5\"),\n \"tonic-prost\": Label(\"@oak_std_crates_index//:tonic-prost-0.14.5\"),\n \"tonic-prost-build\": Label(\"@oak_std_crates_index//:tonic-prost-build-0.14.5\"),\n \"tower\": Label(\"@oak_std_crates_index//:tower-0.4.13\"),\n \"tower-http\": Label(\"@oak_std_crates_index//:tower-http-0.6.8\"),\n \"tracing\": Label(\"@oak_std_crates_index//:tracing-0.1.44\"),\n \"tracing-subscriber\": Label(\"@oak_std_crates_index//:tracing-subscriber-0.3.23\"),\n \"tungstenite\": Label(\"@oak_std_crates_index//:tungstenite-0.27.0\"),\n \"uart_16550\": Label(\"@oak_std_crates_index//:uart_16550-0.3.2\"),\n \"ubyte\": Label(\"@oak_std_crates_index//:ubyte-0.10.4\"),\n \"ureq\": Label(\"@oak_std_crates_index//:ureq-2.12.1\"),\n \"url\": Label(\"@oak_std_crates_index//:url-2.5.8\"),\n \"waki\": Label(\"@oak_std_crates_index//:waki-0.5.1\"),\n \"walkdir\": Label(\"@oak_std_crates_index//:walkdir-2.5.0\"),\n \"wasmi\": Label(\"@oak_std_crates_index//:wasmi-0.31.2\"),\n \"wasmtime\": Label(\"@oak_std_crates_index//:wasmtime-32.0.1\"),\n \"wasmtime-wasi\": Label(\"@oak_std_crates_index//:wasmtime-wasi-32.0.1\"),\n \"wasmtime-wasi-http\": Label(\"@oak_std_crates_index//:wasmtime-wasi-http-32.0.1\"),\n \"which\": Label(\"@oak_std_crates_index//:which-5.0.0\"),\n \"wit-bindgen\": Label(\"@oak_std_crates_index//:wit-bindgen-0.33.0\"),\n \"x509-cert\": Label(\"@oak_std_crates_index//:x509-cert-0.2.5\"),\n \"x509-verify\": Label(\"@oak_std_crates_index//:x509-verify-0.4.8\"),\n \"x86_64\": Label(\"@oak_std_crates_index//:x86_64-0.15.4\"),\n \"xz2\": Label(\"@oak_std_crates_index//:xz2-0.1.7\"),\n \"yaml_serde\": Label(\"@oak_std_crates_index//:yaml_serde-0.10.4\"),\n \"zerocopy\": Label(\"@oak_std_crates_index//:zerocopy-0.8.48\"),\n \"zeroize\": Label(\"@oak_std_crates_index//:zeroize-1.8.2\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"async-trait\": Label(\"@oak_std_crates_index//:async-trait-0.1.89\"),\n \"criterion-macro\": Label(\"@oak_std_crates_index//:criterion-macro-0.4.0\"),\n \"prost-derive\": Label(\"@oak_std_crates_index//:prost-derive-0.14.3\"),\n \"rmcp-macros\": Label(\"@oak_std_crates_index//:rmcp-macros-0.8.5\"),\n \"time-macros\": Label(\"@oak_std_crates_index//:time-macros-0.2.18\"),\n },\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-pc-windows-gnullvm\": [],\n \"aarch64-pc-windows-msvc\": [],\n \"aarch64-uwp-windows-msvc\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_os = \\\"windows\\\"))\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_vendor = \\\"apple\\\", any(target_os = \\\"ios\\\", target_os = \\\"macos\\\", target_os = \\\"tvos\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(any(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), all(target_arch = \\\"arm\\\", target_endian = \\\"little\\\")), any(target_os = \\\"android\\\", target_os = \\\"linux\\\")))\": [],\n \"cfg(all(any(target_arch = \\\"x86_64\\\", target_arch = \\\"arm64ec\\\"), target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(curve25519_dalek_backend = \\\"fiat\\\"), not(curve25519_dalek_backend = \\\"serial\\\"), target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", not(target_os = \\\"wasi\\\")))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p3\\\"))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(target_abi = \\\"llvm\\\"), not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"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\"],\n \"cfg(all(target_arch = \\\"x86_64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(all(unix, not(target_os = \\\"macos\\\")))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"s390x\\\", target_arch = \\\"riscv64\\\"))\": [],\n \"cfg(any(target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\", target_os = \\\"macos\\\", target_os = \\\"hurd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"freebsd\\\", target_os = \\\"netbsd\\\"))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"linux\\\", target_vendor = \\\"apple\\\", target_os = \\\"freebsd\\\", target_os = \\\"android\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\", target_os = \\\"freebsd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(unix, target_os = \\\"hermit\\\", target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(windows, target_os = \\\"cygwin\\\"))\": [],\n \"cfg(any(windows, unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(curve25519_dalek_backend = \\\"fiat\\\")\": [],\n \"cfg(not(all(target_arch = \\\"arm\\\", target_os = \\\"none\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(windows, target_env = \\\"msvc\\\", not(target_vendor = \\\"uwp\\\"))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_arch = \\\"wasm32\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_has_atomic = \\\"ptr\\\"))\": [],\n \"cfg(not(target_os = \\\"windows\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows_raw_dylib))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_arch = \\\"aarch64\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_arch = \\\"spirv\\\")\": [],\n \"cfg(target_arch = \\\"wasm32\\\")\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_arch = \\\"x86_64\\\")\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_os = \\\"android\\\")\": [],\n \"cfg(target_os = \\\"haiku\\\")\": [],\n \"cfg(target_os = \\\"hermit\\\")\": [],\n \"cfg(target_os = \\\"macos\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"redox\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_os = \\\"windows\\\")\": [],\n \"cfg(target_vendor = \\\"apple\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(windows)\": [],\n \"cfg(windows_raw_dylib)\": [],\n \"i686-pc-windows-gnu\": [],\n \"i686-pc-windows-gnullvm\": [],\n \"i686-pc-windows-msvc\": [],\n \"i686-uwp-windows-gnu\": [],\n \"i686-uwp-windows-msvc\": [],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip2\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"x86_64-pc-windows-gnu\": [],\n \"x86_64-pc-windows-gnullvm\": [],\n \"x86_64-pc-windows-msvc\": [],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"x86_64-unknown-none\": [\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"x86_64-uwp-windows-gnu\": [],\n \"x86_64-uwp-windows-msvc\": [],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"oak_std_crates_index__acpi-5.2.0\",\n sha256 = \"94476c7ef97af4c4d998b3f422c1b01d5211aad57c80ed200baf148d1f1efab6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/acpi/5.2.0/download\"],\n strip_prefix = \"acpi-5.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.acpi-5.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.24.2\",\n sha256 = \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.24.2/download\"],\n strip_prefix = \"addr2line-0.24.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.24.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.25.1\",\n sha256 = \"1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.25.1/download\"],\n strip_prefix = \"addr2line-0.25.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.25.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__adler2-2.0.1\",\n sha256 = \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/adler2/2.0.1/download\"],\n strip_prefix = \"adler2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.adler2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-gcm-0.10.3\",\n sha256 = \"831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm/0.10.3/download\"],\n strip_prefix = \"aes-gcm-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-gcm-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ahash-0.8.12\",\n sha256 = \"5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ahash/0.8.12/download\"],\n strip_prefix = \"ahash-0.8.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ahash-0.8.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aho-corasick-1.1.4\",\n sha256 = \"ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aho-corasick/1.1.4/download\"],\n strip_prefix = \"aho-corasick-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aho-corasick-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aliasable-0.1.3\",\n sha256 = \"250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aliasable/0.1.3/download\"],\n strip_prefix = \"aliasable-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aliasable-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aligned-vec-0.6.4\",\n sha256 = \"dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aligned-vec/0.6.4/download\"],\n strip_prefix = \"aligned-vec-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aligned-vec-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__allocator-api2-0.2.21\",\n sha256 = \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/allocator-api2/0.2.21/download\"],\n strip_prefix = \"allocator-api2-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.allocator-api2-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ambient-authority-0.0.2\",\n sha256 = \"e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ambient-authority/0.0.2/download\"],\n strip_prefix = \"ambient-authority-0.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ambient-authority-0.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aml-0.16.4\",\n sha256 = \"c4f8cba7d4260ea05671dda81029f6f718b54402a4ec926a0d9a41bdbb96b415\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aml/0.16.4/download\"],\n strip_prefix = \"aml-0.16.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aml-0.16.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__android_system_properties-0.1.5\",\n sha256 = \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/android_system_properties/0.1.5/download\"],\n strip_prefix = \"android_system_properties-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.android_system_properties-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anes-0.1.6\",\n sha256 = \"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anes/0.1.6/download\"],\n strip_prefix = \"anes-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anes-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstream-1.0.0\",\n sha256 = \"824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstream/1.0.0/download\"],\n strip_prefix = \"anstream-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstream-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-1.0.14\",\n sha256 = \"940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle/1.0.14/download\"],\n strip_prefix = \"anstyle-1.0.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-1.0.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-parse-1.0.0\",\n sha256 = \"52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-parse/1.0.0/download\"],\n strip_prefix = \"anstyle-parse-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-parse-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-query-1.1.5\",\n sha256 = \"40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-query/1.1.5/download\"],\n strip_prefix = \"anstyle-query-1.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-query-1.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-wincon-3.0.11\",\n sha256 = \"291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-wincon/3.0.11/download\"],\n strip_prefix = \"anstyle-wincon-3.0.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-wincon-3.0.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anyhow-1.0.102\",\n sha256 = \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anyhow/1.0.102/download\"],\n strip_prefix = \"anyhow-1.0.102\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anyhow-1.0.102.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ar_archive_writer-0.5.1\",\n sha256 = \"7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ar_archive_writer/0.5.1/download\"],\n strip_prefix = \"ar_archive_writer-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ar_archive_writer-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arbitrary-1.4.2\",\n sha256 = \"c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arbitrary/1.4.2/download\"],\n strip_prefix = \"arbitrary-1.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arbitrary-1.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arrayvec-0.7.6\",\n sha256 = \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arrayvec/0.7.6/download\"],\n strip_prefix = \"arrayvec-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arrayvec-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-0.6.2\",\n sha256 = \"5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs/0.6.2/download\"],\n strip_prefix = \"asn1-rs-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-derive-0.5.1\",\n sha256 = \"965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-derive/0.5.1/download\"],\n strip_prefix = \"asn1-rs-derive-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-derive-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-impl-0.2.0\",\n sha256 = \"7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-impl/0.2.0/download\"],\n strip_prefix = \"asn1-rs-impl-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-impl-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__assertables-7.0.1\",\n sha256 = \"0c24e9d990669fbd16806bff449e4ac644fd9b1fca014760087732fe4102f131\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/assertables/7.0.1/download\"],\n strip_prefix = \"assertables-7.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.assertables-7.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-0.3.6\",\n sha256 = \"0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream/0.3.6/download\"],\n strip_prefix = \"async-stream-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-impl-0.3.6\",\n sha256 = \"c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream-impl/0.3.6/download\"],\n strip_prefix = \"async-stream-impl-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-impl-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-trait-0.1.89\",\n sha256 = \"9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-trait/0.1.89/download\"],\n strip_prefix = \"async-trait-0.1.89\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-trait-0.1.89.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic-waker-1.1.2\",\n sha256 = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic-waker/1.1.2/download\"],\n strip_prefix = \"atomic-waker-1.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic-waker-1.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic_refcell-0.1.14\",\n sha256 = \"21e4227379beff4205943696e6c3e0cd809bacdf3f0edd6e3dd153e2269571a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic_refcell/0.1.14/download\"],\n strip_prefix = \"atomic_refcell-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic_refcell-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__autocfg-1.5.0\",\n sha256 = \"c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/autocfg/1.5.0/download\"],\n strip_prefix = \"autocfg-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.autocfg-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.7.9\",\n sha256 = \"edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.7.9/download\"],\n strip_prefix = \"axum-0.7.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.7.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.8.9\",\n sha256 = \"31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.8.9/download\"],\n strip_prefix = \"axum-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.4.5\",\n sha256 = \"09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.4.5/download\"],\n strip_prefix = \"axum-core-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.5.6\",\n sha256 = \"08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.5.6/download\"],\n strip_prefix = \"axum-core-0.5.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.5.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__backtrace-0.3.76\",\n sha256 = \"bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/backtrace/0.3.76/download\"],\n strip_prefix = \"backtrace-0.3.76\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.backtrace-0.3.76.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base16ct-0.2.0\",\n sha256 = \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base16ct/0.2.0/download\"],\n strip_prefix = \"base16ct-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base16ct-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.13.1\",\n sha256 = \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.13.1/download\"],\n strip_prefix = \"base64-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.21.7\",\n sha256 = \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.21.7/download\"],\n strip_prefix = \"base64-0.21.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.21.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.22.1\",\n sha256 = \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.22.1/download\"],\n strip_prefix = \"base64-0.22.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.22.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64ct-1.8.3\",\n sha256 = \"2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64ct/1.8.3/download\"],\n strip_prefix = \"base64ct-1.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64ct-1.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bincode-1.3.3\",\n sha256 = \"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bincode/1.3.3/download\"],\n strip_prefix = \"bincode-1.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bincode-1.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-set-0.8.0\",\n sha256 = \"08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-set/0.8.0/download\"],\n strip_prefix = \"bit-set-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-set-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-vec-0.8.0\",\n sha256 = \"5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-vec/0.8.0/download\"],\n strip_prefix = \"bit-vec-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-vec-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit_field-0.10.3\",\n sha256 = \"1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit_field/0.10.3/download\"],\n strip_prefix = \"bit_field-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit_field-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-1.3.2\",\n sha256 = \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/1.3.2/download\"],\n strip_prefix = \"bitflags-1.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-1.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-2.11.1\",\n sha256 = \"c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/2.11.1/download\"],\n strip_prefix = \"bitflags-2.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-2.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitvec-1.0.1\",\n sha256 = \"1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitvec/1.0.1/download\"],\n strip_prefix = \"bitvec-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitvec-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__block-buffer-0.10.4\",\n sha256 = \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/block-buffer/0.10.4/download\"],\n strip_prefix = \"block-buffer-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.block-buffer-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bumpalo-3.20.2\",\n sha256 = \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bumpalo/3.20.2/download\"],\n strip_prefix = \"bumpalo-3.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bumpalo-3.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytemuck-1.25.0\",\n sha256 = \"c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytemuck/1.25.0/download\"],\n strip_prefix = \"bytemuck-1.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytemuck-1.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__byteorder-1.5.0\",\n sha256 = \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/byteorder/1.5.0/download\"],\n strip_prefix = \"byteorder-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.byteorder-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytes-1.11.1\",\n sha256 = \"1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytes/1.11.1/download\"],\n strip_prefix = \"bytes-1.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytes-1.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-fs-ext-3.4.5\",\n sha256 = \"d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-fs-ext/3.4.5/download\"],\n strip_prefix = \"cap-fs-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-fs-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-net-ext-3.4.5\",\n sha256 = \"20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-net-ext/3.4.5/download\"],\n strip_prefix = \"cap-net-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-net-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-primitives-3.4.5\",\n sha256 = \"b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-primitives/3.4.5/download\"],\n strip_prefix = \"cap-primitives-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-primitives-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-rand-3.4.5\",\n sha256 = \"d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-rand/3.4.5/download\"],\n strip_prefix = \"cap-rand-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-rand-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-std-3.4.5\",\n sha256 = \"b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-std/3.4.5/download\"],\n strip_prefix = \"cap-std-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-std-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-time-ext-3.4.5\",\n sha256 = \"def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-time-ext/3.4.5/download\"],\n strip_prefix = \"cap-time-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-time-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cast-0.3.0\",\n sha256 = \"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cast/0.3.0/download\"],\n strip_prefix = \"cast-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cast-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cesu8-1.1.0\",\n sha256 = \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cesu8/1.1.0/download\"],\n strip_prefix = \"cesu8-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cesu8-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg_aliases-0.2.1\",\n sha256 = \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg_aliases/0.2.1/download\"],\n strip_prefix = \"cfg_aliases-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg_aliases-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20-0.9.1\",\n sha256 = \"c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20/0.9.1/download\"],\n strip_prefix = \"chacha20-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20poly1305-0.10.1\",\n sha256 = \"10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20poly1305/0.10.1/download\"],\n strip_prefix = \"chacha20poly1305-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20poly1305-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chrono-0.4.44\",\n sha256 = \"c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chrono/0.4.44/download\"],\n strip_prefix = \"chrono-0.4.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chrono-0.4.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-0.2.2\",\n sha256 = \"42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium/0.2.2/download\"],\n strip_prefix = \"ciborium-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-io-0.2.2\",\n sha256 = \"05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-io/0.2.2/download\"],\n strip_prefix = \"ciborium-io-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-io-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-ll-0.2.2\",\n sha256 = \"57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-ll/0.2.2/download\"],\n strip_prefix = \"ciborium-ll-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-ll-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap-4.6.1\",\n sha256 = \"1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap/4.6.1/download\"],\n strip_prefix = \"clap-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_builder-4.6.0\",\n sha256 = \"714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_builder/4.6.0/download\"],\n strip_prefix = \"clap_builder-4.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_builder-4.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_derive-4.6.1\",\n sha256 = \"f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_derive/4.6.1/download\"],\n strip_prefix = \"clap_derive-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_derive-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_lex-1.1.0\",\n sha256 = \"c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_lex/1.1.0/download\"],\n strip_prefix = \"clap_lex-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_lex-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cobs-0.3.0\",\n sha256 = \"0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cobs/0.3.0/download\"],\n strip_prefix = \"cobs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cobs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colorchoice-1.0.5\",\n sha256 = \"1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colorchoice/1.0.5/download\"],\n strip_prefix = \"colorchoice-1.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colorchoice-1.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colored-2.2.0\",\n sha256 = \"117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colored/2.2.0/download\"],\n strip_prefix = \"colored-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colored-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__combine-4.6.7\",\n sha256 = \"ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/combine/4.6.7/download\"],\n strip_prefix = \"combine-4.6.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.combine-4.6.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-fds-0.3.3\",\n sha256 = \"1b60b5124979fccd9addd89d8b97a1d6eebb4950694520c75ddd722535ea443f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-fds/0.3.3/download\"],\n strip_prefix = \"command-fds-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-fds-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-group-5.0.1\",\n sha256 = \"a68fa787550392a9d58f44c21a3022cfb3ea3e2458b7f85d3b399d0ceeccf409\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-group/5.0.1/download\"],\n strip_prefix = \"command-group-5.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-group-5.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__console-0.15.11\",\n sha256 = \"054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/console/0.15.11/download\"],\n strip_prefix = \"console-0.15.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.console-0.15.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-default-1.0.0\",\n sha256 = \"0b396d1f76d455557e1218ec8066ae14bba60b4b36ecd55577ba979f5db7ecaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-default/1.0.0/download\"],\n strip_prefix = \"const-default-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-default-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-hex-1.18.1\",\n sha256 = \"531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-hex/1.18.1/download\"],\n strip_prefix = \"const-hex-1.18.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-hex-1.18.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-oid-0.9.6\",\n sha256 = \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-oid/0.9.6/download\"],\n strip_prefix = \"const-oid-0.9.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-oid-0.9.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_fn-0.4.12\",\n sha256 = \"413d67b29ef1021b4d60f4aa1e925ca031751e213832b4b1d588fae623c05c60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_fn/0.4.12/download\"],\n strip_prefix = \"const_fn-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_fn-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format-0.2.36\",\n sha256 = \"4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format/0.2.36/download\"],\n strip_prefix = \"const_format-0.2.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format-0.2.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format_proc_macros-0.2.34\",\n sha256 = \"1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format_proc_macros/0.2.34/download\"],\n strip_prefix = \"const_format_proc_macros-0.2.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format_proc_macros-0.2.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.10.1\",\n sha256 = \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.10.1/download\"],\n strip_prefix = \"core-foundation-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.9.4\",\n sha256 = \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.9.4/download\"],\n strip_prefix = \"core-foundation-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-sys-0.8.7\",\n sha256 = \"773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation-sys/0.8.7/download\"],\n strip_prefix = \"core-foundation-sys-0.8.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-sys-0.8.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__coset-0.3.8\",\n sha256 = \"f4c8cc80f631f8307b887faca24dcc3abc427cd0367f6eb6188f6e8f5b7ad8fb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/coset/0.3.8/download\"],\n strip_prefix = \"coset-0.3.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.coset-0.3.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpp_demangle-0.4.5\",\n sha256 = \"f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpp_demangle/0.4.5/download\"],\n strip_prefix = \"cpp_demangle-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpp_demangle-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-0.119.1\",\n sha256 = \"359c047862387091eb0363ce8b5cabb4a8be1cc16a6fa151fe079c09796461f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-meta-0.119.1\",\n sha256 = \"6bf62afda29fcde09d922f125a7d47880b540fd1de069558bfa637b4ce7aa1ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bforest-0.119.1\",\n sha256 = \"3537273471ebdae55791869ee16f71a4a51e34ad47cdc64269a9c2255b5dce03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bforest/0.119.1/download\"],\n strip_prefix = \"cranelift-bforest-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bforest-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bitset-0.119.1\",\n sha256 = \"b872fde1717c508f842ad1ad8768fbe16caf7e8e049215b0e09429bbf00d3ce9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bitset/0.119.1/download\"],\n strip_prefix = \"cranelift-bitset-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bitset-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-0.119.1\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/cranelift-codegen:patch_build_rs.patch\",\n ],\n sha256 = \"52a74ef998eb9f985dc0d987d3aac0fe4bd1b59ec707461b2d6d20cda1b0a5e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-meta-0.119.1\",\n sha256 = \"7a04a532b9a7b69c28e7e37d15bca7f7f5cc56399df890ec399333e2d548004a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-shared-0.119.1\",\n sha256 = \"95c4556174c6eb7d586bd1715b7f9c3a43a0835d6a95715893718b2f263af895\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-shared/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-shared-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-shared-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-control-0.119.1\",\n sha256 = \"18d8e9ae221e352dbea7f6f389705365f8128e7e0a7de5cf787ab7b2ccd1c522\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-control/0.119.1/download\"],\n strip_prefix = \"cranelift-control-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-control-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-entity-0.119.1\",\n sha256 = \"40d10b531267cc86ba4fbb7b718b646df503713828b37841a867f332954b24ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-entity/0.119.1/download\"],\n strip_prefix = \"cranelift-entity-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-entity-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-frontend-0.119.1\",\n sha256 = \"07540e6f75357d655743008965018fe243434ec6755078794616fde31f783a03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-frontend/0.119.1/download\"],\n strip_prefix = \"cranelift-frontend-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-frontend-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-isle-0.119.1\",\n sha256 = \"3e0909e87af454a7ff542ece2d66f901f2cc9483ab36572a924eb5e58ce51fc0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-isle/0.119.1/download\"],\n strip_prefix = \"cranelift-isle-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-isle-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-native-0.119.1\",\n sha256 = \"5f2d3963401ea1f8f84bdb0b654f1ca186be97e6ca94ccd2a8037b9edee47e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-native/0.119.1/download\"],\n strip_prefix = \"cranelift-native-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-native-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-srcgen-0.119.1\",\n sha256 = \"823558b0a406b7f7d5dad0c925b29e8192792476faaa71615d40cb5a842a9040\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-srcgen/0.119.1/download\"],\n strip_prefix = \"cranelift-srcgen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-srcgen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crc32fast-1.5.0\",\n sha256 = \"9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crc32fast/1.5.0/download\"],\n strip_prefix = \"crc32fast-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crc32fast-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-0.5.1\",\n sha256 = \"f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion/0.5.1/download\"],\n strip_prefix = \"criterion-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-macro-0.4.0\",\n sha256 = \"288a8f36b28a19d7dbd572c76006c0a0eba1f3bf912a254dda211c6f665e7ffc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-macro/0.4.0/download\"],\n strip_prefix = \"criterion-macro-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-macro-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-plot-0.5.0\",\n sha256 = \"6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-plot/0.5.0/download\"],\n strip_prefix = \"criterion-plot-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-plot-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-deque-0.8.6\",\n sha256 = \"9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-deque/0.8.6/download\"],\n strip_prefix = \"crossbeam-deque-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-deque-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-epoch-0.9.18\",\n sha256 = \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-epoch/0.9.18/download\"],\n strip_prefix = \"crossbeam-epoch-0.9.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-epoch-0.9.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-utils-0.8.21\",\n sha256 = \"d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-utils/0.8.21/download\"],\n strip_prefix = \"crossbeam-utils-0.8.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-utils-0.8.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crunchy-0.2.4\",\n sha256 = \"460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crunchy/0.2.4/download\"],\n strip_prefix = \"crunchy-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crunchy-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-bigint-0.5.5\",\n sha256 = \"0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-bigint/0.5.5/download\"],\n strip_prefix = \"crypto-bigint-0.5.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-bigint-0.5.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-4.1.3\",\n sha256 = \"97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek/4.1.3/download\"],\n strip_prefix = \"curve25519-dalek-4.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-4.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-derive-0.1.1\",\n sha256 = \"f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek-derive/0.1.1/download\"],\n strip_prefix = \"curve25519-dalek-derive-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-derive-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.20.11\",\n sha256 = \"fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.20.11/download\"],\n strip_prefix = \"darling-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.21.3\",\n sha256 = \"9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.21.3/download\"],\n strip_prefix = \"darling-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.20.11\",\n sha256 = \"0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.20.11/download\"],\n strip_prefix = \"darling_core-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.21.3\",\n sha256 = \"1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.21.3/download\"],\n strip_prefix = \"darling_core-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.20.11\",\n sha256 = \"fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.20.11/download\"],\n strip_prefix = \"darling_macro-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.21.3\",\n sha256 = \"d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.21.3/download\"],\n strip_prefix = \"darling_macro-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__data-encoding-2.10.0\",\n sha256 = \"d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/data-encoding/2.10.0/download\"],\n strip_prefix = \"data-encoding-2.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.data-encoding-2.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__debugid-0.8.0\",\n sha256 = \"bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/debugid/0.8.0/download\"],\n strip_prefix = \"debugid-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.debugid-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-0.7.10\",\n sha256 = \"e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der/0.7.10/download\"],\n strip_prefix = \"der-0.7.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-0.7.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-parser-9.0.0\",\n sha256 = \"5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der-parser/9.0.0/download\"],\n strip_prefix = \"der-parser-9.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-parser-9.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der_derive-0.7.3\",\n sha256 = \"8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der_derive/0.7.3/download\"],\n strip_prefix = \"der_derive-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der_derive-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__deranged-0.3.11\",\n sha256 = \"b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/deranged/0.3.11/download\"],\n strip_prefix = \"deranged-0.3.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.deranged-0.3.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder-0.20.2\",\n sha256 = \"507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder/0.20.2/download\"],\n strip_prefix = \"derive_builder-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_core-0.20.2\",\n sha256 = \"2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_core/0.20.2/download\"],\n strip_prefix = \"derive_builder_core-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_core-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_macro-0.20.2\",\n sha256 = \"ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_macro/0.20.2/download\"],\n strip_prefix = \"derive_builder_macro-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_macro-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__digest-0.10.7\",\n sha256 = \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/digest/0.10.7/download\"],\n strip_prefix = \"digest-0.10.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.digest-0.10.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__directories-next-2.0.0\",\n sha256 = \"339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/directories-next/2.0.0/download\"],\n strip_prefix = \"directories-next-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.directories-next-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-4.0.0\",\n sha256 = \"ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs/4.0.0/download\"],\n strip_prefix = \"dirs-4.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-4.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-0.3.7\",\n sha256 = \"1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys/0.3.7/download\"],\n strip_prefix = \"dirs-sys-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-next-0.1.2\",\n sha256 = \"4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys-next/0.1.2/download\"],\n strip_prefix = \"dirs-sys-next-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-next-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__displaydoc-0.2.5\",\n sha256 = \"97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/displaydoc/0.2.5/download\"],\n strip_prefix = \"displaydoc-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.displaydoc-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-0.11.0\",\n sha256 = \"1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast/0.11.0/download\"],\n strip_prefix = \"downcast-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-rs-1.2.1\",\n sha256 = \"75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast-rs/1.2.1/download\"],\n strip_prefix = \"downcast-rs-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-rs-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dyn-clone-1.0.20\",\n sha256 = \"d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dyn-clone/1.0.20/download\"],\n strip_prefix = \"dyn-clone-1.0.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dyn-clone-1.0.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ecdsa-0.16.9\",\n sha256 = \"ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ecdsa/0.16.9/download\"],\n strip_prefix = \"ecdsa-0.16.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ecdsa-0.16.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-2.2.3\",\n sha256 = \"115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519/2.2.3/download\"],\n strip_prefix = \"ed25519-2.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-2.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-dalek-2.2.0\",\n sha256 = \"70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519-dalek/2.2.0/download\"],\n strip_prefix = \"ed25519-dalek-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-dalek-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__either-1.15.0\",\n sha256 = \"48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/either/1.15.0/download\"],\n strip_prefix = \"either-1.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.either-1.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elf-0.7.4\",\n sha256 = \"4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elf/0.7.4/download\"],\n strip_prefix = \"elf-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elf-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elliptic-curve-0.13.8\",\n sha256 = \"b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elliptic-curve/0.13.8/download\"],\n strip_prefix = \"elliptic-curve-0.13.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elliptic-curve-0.13.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.4.0\",\n sha256 = \"ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.4.0/download\"],\n strip_prefix = \"embedded-io-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.6.1\",\n sha256 = \"edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.6.1/download\"],\n strip_prefix = \"embedded-io-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encode_unicode-1.0.0\",\n sha256 = \"34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encode_unicode/1.0.0/download\"],\n strip_prefix = \"encode_unicode-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encode_unicode-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encoding_rs-0.8.35\",\n sha256 = \"75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encoding_rs/0.8.35/download\"],\n strip_prefix = \"encoding_rs-0.8.35\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encoding_rs-0.8.35.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_filter-1.0.1\",\n sha256 = \"32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_filter/1.0.1/download\"],\n strip_prefix = \"env_filter-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_filter-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_logger-0.11.10\",\n sha256 = \"0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_logger/0.11.10/download\"],\n strip_prefix = \"env_logger-0.11.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_logger-0.11.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-0.4.2\",\n sha256 = \"4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator/0.4.2/download\"],\n strip_prefix = \"equator-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-macro-0.4.2\",\n sha256 = \"44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator-macro/0.4.2/download\"],\n strip_prefix = \"equator-macro-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-macro-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__errno-0.3.14\",\n sha256 = \"39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/errno/0.3.14/download\"],\n strip_prefix = \"errno-0.3.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.errno-0.3.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__error-chain-0.12.4\",\n sha256 = \"2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/error-chain/0.12.4/download\"],\n strip_prefix = \"error-chain-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.error-chain-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fallible-iterator-0.3.0\",\n sha256 = \"2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fallible-iterator/0.3.0/download\"],\n strip_prefix = \"fallible-iterator-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fallible-iterator-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fastrand-2.4.1\",\n sha256 = \"9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fastrand/2.4.1/download\"],\n strip_prefix = \"fastrand-2.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fastrand-2.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fd-lock-4.0.4\",\n sha256 = \"0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fd-lock/4.0.4/download\"],\n strip_prefix = \"fd-lock-4.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fd-lock-4.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ff-0.13.1\",\n sha256 = \"c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ff/0.13.1/download\"],\n strip_prefix = \"ff-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ff-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fiat-crypto-0.2.9\",\n sha256 = \"28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fiat-crypto/0.2.9/download\"],\n strip_prefix = \"fiat-crypto-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fiat-crypto-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__filetime-0.2.27\",\n sha256 = \"f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/filetime/0.2.27/download\"],\n strip_prefix = \"filetime-0.2.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.filetime-0.2.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__findshlibs-0.10.2\",\n sha256 = \"40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/findshlibs/0.10.2/download\"],\n strip_prefix = \"findshlibs-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.findshlibs-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.4.2\",\n sha256 = \"0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.4.2/download\"],\n strip_prefix = \"fixedbitset-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.5.7\",\n sha256 = \"1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.5.7/download\"],\n strip_prefix = \"fixedbitset-0.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.5.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flagset-0.4.7\",\n sha256 = \"b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flagset/0.4.7/download\"],\n strip_prefix = \"flagset-0.4.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flagset-0.4.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flate2-1.1.9\",\n sha256 = \"843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flate2/1.1.9/download\"],\n strip_prefix = \"flate2-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flate2-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fnv-1.0.7\",\n sha256 = \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fnv/1.0.7/download\"],\n strip_prefix = \"fnv-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fnv-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foldhash-0.1.5\",\n sha256 = \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.1.5/download\"],\n strip_prefix = \"foldhash-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foldhash-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-0.3.2\",\n sha256 = \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types/0.3.2/download\"],\n strip_prefix = \"foreign-types-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-shared-0.1.1\",\n sha256 = \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types-shared/0.1.1/download\"],\n strip_prefix = \"foreign-types-shared-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-shared-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__form_urlencoded-1.2.2\",\n sha256 = \"cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/form_urlencoded/1.2.2/download\"],\n strip_prefix = \"form_urlencoded-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.form_urlencoded-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fragile-2.1.0\",\n sha256 = \"8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fragile/2.1.0/download\"],\n strip_prefix = \"fragile-2.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fragile-2.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fs-set-times-0.20.3\",\n sha256 = \"94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fs-set-times/0.20.3/download\"],\n strip_prefix = \"fs-set-times-0.20.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fs-set-times-0.20.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__funty-2.0.0\",\n sha256 = \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/funty/2.0.0/download\"],\n strip_prefix = \"funty-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.funty-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-0.3.32\",\n sha256 = \"8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures/0.3.32/download\"],\n strip_prefix = \"futures-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-channel-0.3.32\",\n sha256 = \"07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-channel/0.3.32/download\"],\n strip_prefix = \"futures-channel-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-channel-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-core-0.3.32\",\n sha256 = \"7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-core/0.3.32/download\"],\n strip_prefix = \"futures-core-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-core-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-executor-0.3.32\",\n sha256 = \"baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-executor/0.3.32/download\"],\n strip_prefix = \"futures-executor-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-executor-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-io-0.3.32\",\n sha256 = \"cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-io/0.3.32/download\"],\n strip_prefix = \"futures-io-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-io-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-macro-0.3.32\",\n sha256 = \"e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-macro/0.3.32/download\"],\n strip_prefix = \"futures-macro-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-macro-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-sink-0.3.32\",\n sha256 = \"c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-sink/0.3.32/download\"],\n strip_prefix = \"futures-sink-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-sink-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-task-0.3.32\",\n sha256 = \"037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-task/0.3.32/download\"],\n strip_prefix = \"futures-task-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-task-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-util-0.3.32\",\n sha256 = \"389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-util/0.3.32/download\"],\n strip_prefix = \"futures-util-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-util-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.4.2\",\n sha256 = \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.4.2/download\"],\n strip_prefix = \"getrandom-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getset-0.1.6\",\n sha256 = \"9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getset/0.1.6/download\"],\n strip_prefix = \"getset-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getset-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ghash-0.5.1\",\n sha256 = \"f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ghash/0.5.1/download\"],\n strip_prefix = \"ghash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ghash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.31.1\",\n sha256 = \"07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.31.1/download\"],\n strip_prefix = \"gimli-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.32.3\",\n sha256 = \"e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.32.3/download\"],\n strip_prefix = \"gimli-0.32.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.32.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__goblin-0.8.2\",\n sha256 = \"1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/goblin/0.8.2/download\"],\n strip_prefix = \"goblin-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.goblin-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest-0.14.2\",\n sha256 = \"06597b7d02ee58b9a37f522785ac15b9e18c6b178747c4439a6c03fbb35ea753\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest/0.14.2/download\"],\n strip_prefix = \"googletest-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest_macro-0.14.2\",\n sha256 = \"c31d9f07c9c19b855faebf71637be3b43f8e13a518aece5d61a3beee7710b4ef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest_macro/0.14.2/download\"],\n strip_prefix = \"googletest_macro-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest_macro-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__group-0.13.0\",\n sha256 = \"f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/group/0.13.0/download\"],\n strip_prefix = \"group-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.group-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__h2-0.4.13\",\n sha256 = \"2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/h2/0.4.13/download\"],\n strip_prefix = \"h2-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.h2-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__half-2.7.1\",\n sha256 = \"6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/half/2.7.1/download\"],\n strip_prefix = \"half-2.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.half-2.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.14.5\",\n sha256 = \"e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.14.5/download\"],\n strip_prefix = \"hashbrown-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.15.5\",\n sha256 = \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.15.5/download\"],\n strip_prefix = \"hashbrown-0.15.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.15.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.4.1\",\n sha256 = \"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.4.1/download\"],\n strip_prefix = \"heck-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.5.0\",\n sha256 = \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.5.0/download\"],\n strip_prefix = \"heck-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hermit-abi-0.5.2\",\n sha256 = \"fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hermit-abi/0.5.2/download\"],\n strip_prefix = \"hermit-abi-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hermit-abi-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hex-0.4.3\",\n sha256 = \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hex/0.4.3/download\"],\n strip_prefix = \"hex-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hex-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hkdf-0.12.4\",\n sha256 = \"7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hkdf/0.12.4/download\"],\n strip_prefix = \"hkdf-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hkdf-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hmac-0.12.1\",\n sha256 = \"6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hmac/0.12.1/download\"],\n strip_prefix = \"hmac-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hmac-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__home-0.5.12\",\n sha256 = \"cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/home/0.5.12/download\"],\n strip_prefix = \"home-0.5.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.home-0.5.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hostname-0.3.1\",\n sha256 = \"3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hostname/0.3.1/download\"],\n strip_prefix = \"hostname-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hostname-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hpke-0.11.0\",\n sha256 = \"e04a5933a381bb81f00b083fce6b4528e16d735dbeecbb2bdb45e0dbbf3f7e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hpke/0.11.0/download\"],\n strip_prefix = \"hpke-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hpke-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-1.4.0\",\n sha256 = \"e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http/1.4.0/download\"],\n strip_prefix = \"http-1.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-1.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-auth-0.1.10\",\n sha256 = \"150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-auth/0.1.10/download\"],\n strip_prefix = \"http-auth-0.1.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-auth-0.1.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-1.0.1\",\n sha256 = \"1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body/1.0.1/download\"],\n strip_prefix = \"http-body-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-util-0.1.3\",\n sha256 = \"b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body-util/0.1.3/download\"],\n strip_prefix = \"http-body-util-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-util-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httparse-1.10.1\",\n sha256 = \"6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httparse/1.10.1/download\"],\n strip_prefix = \"httparse-1.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httparse-1.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httpdate-1.0.3\",\n sha256 = \"df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httpdate/1.0.3/download\"],\n strip_prefix = \"httpdate-1.0.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httpdate-1.0.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-2.3.0\",\n sha256 = \"135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime/2.3.0/download\"],\n strip_prefix = \"humantime-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-serde-1.1.1\",\n sha256 = \"57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime-serde/1.1.1/download\"],\n strip_prefix = \"humantime-serde-1.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-serde-1.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-1.9.0\",\n sha256 = \"6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper/1.9.0/download\"],\n strip_prefix = \"hyper-1.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-1.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-rustls-0.27.9\",\n sha256 = \"33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-rustls/0.27.9/download\"],\n strip_prefix = \"hyper-rustls-0.27.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-rustls-0.27.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-timeout-0.5.2\",\n sha256 = \"2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-timeout/0.5.2/download\"],\n strip_prefix = \"hyper-timeout-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-timeout-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-util-0.1.20\",\n sha256 = \"96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-util/0.1.20/download\"],\n strip_prefix = \"hyper-util-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-util-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-0.1.65\",\n sha256 = \"e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone/0.1.65/download\"],\n strip_prefix = \"iana-time-zone-0.1.65\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-0.1.65.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-haiku-0.1.2\",\n sha256 = \"f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download\"],\n strip_prefix = \"iana-time-zone-haiku-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-haiku-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_collections-2.2.0\",\n sha256 = \"2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_collections/2.2.0/download\"],\n strip_prefix = \"icu_collections-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_collections-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_locale_core-2.2.0\",\n sha256 = \"92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_locale_core/2.2.0/download\"],\n strip_prefix = \"icu_locale_core-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_locale_core-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer-2.2.0\",\n sha256 = \"c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer/2.2.0/download\"],\n strip_prefix = \"icu_normalizer-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer_data-2.2.0\",\n sha256 = \"da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer_data/2.2.0/download\"],\n strip_prefix = \"icu_normalizer_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties-2.2.0\",\n sha256 = \"bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties/2.2.0/download\"],\n strip_prefix = \"icu_properties-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties_data-2.2.0\",\n sha256 = \"8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties_data/2.2.0/download\"],\n strip_prefix = \"icu_properties_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_provider-2.2.0\",\n sha256 = \"139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_provider/2.2.0/download\"],\n strip_prefix = \"icu_provider-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_provider-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__id-arena-2.3.0\",\n sha256 = \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/id-arena/2.3.0/download\"],\n strip_prefix = \"id-arena-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.id-arena-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ident_case-1.0.1\",\n sha256 = \"b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ident_case/1.0.1/download\"],\n strip_prefix = \"ident_case-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ident_case-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna-1.1.0\",\n sha256 = \"3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna/1.1.0/download\"],\n strip_prefix = \"idna-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna_adapter-1.2.1\",\n sha256 = \"3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna_adapter/1.2.1/download\"],\n strip_prefix = \"idna_adapter-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna_adapter-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-nostd-0.4.0\",\n sha256 = \"8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap-nostd/0.4.0/download\"],\n strip_prefix = \"indexmap-nostd-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-nostd-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indicatif-0.17.11\",\n sha256 = \"183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indicatif/0.17.11/download\"],\n strip_prefix = \"indicatif-0.17.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indicatif-0.17.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inferno-0.11.21\",\n sha256 = \"232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inferno/0.11.21/download\"],\n strip_prefix = \"inferno-0.11.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inferno-0.11.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-extras-0.18.4\",\n sha256 = \"2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-extras/0.18.4/download\"],\n strip_prefix = \"io-extras-0.18.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-extras-0.18.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-lifetimes-2.0.4\",\n sha256 = \"06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-lifetimes/2.0.4/download\"],\n strip_prefix = \"io-lifetimes-2.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-lifetimes-2.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ipnet-2.12.0\",\n sha256 = \"d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ipnet/2.12.0/download\"],\n strip_prefix = \"ipnet-2.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ipnet-2.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iri-string-0.7.12\",\n sha256 = \"25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iri-string/0.7.12/download\"],\n strip_prefix = \"iri-string-0.7.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iri-string-0.7.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is-terminal-0.4.17\",\n sha256 = \"3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is-terminal/0.4.17/download\"],\n strip_prefix = \"is-terminal-0.4.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is-terminal-0.4.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is_terminal_polyfill-1.70.2\",\n sha256 = \"a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is_terminal_polyfill/1.70.2/download\"],\n strip_prefix = \"is_terminal_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is_terminal_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.10.5\",\n sha256 = \"b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.10.5/download\"],\n strip_prefix = \"itertools-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.12.1\",\n sha256 = \"ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.12.1/download\"],\n strip_prefix = \"itertools-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.13.0\",\n sha256 = \"413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.13.0/download\"],\n strip_prefix = \"itertools-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.14.0\",\n sha256 = \"2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.14.0/download\"],\n strip_prefix = \"itertools-0.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itoa-1.0.18\",\n sha256 = \"8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itoa/1.0.18/download\"],\n strip_prefix = \"itoa-1.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itoa-1.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-0.2.24\",\n sha256 = \"f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff/0.2.24/download\"],\n strip_prefix = \"jiff-0.2.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-0.2.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-static-0.2.24\",\n sha256 = \"e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff-static/0.2.24/download\"],\n strip_prefix = \"jiff-static-0.2.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-static-0.2.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-0.21.1\",\n sha256 = \"1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni/0.21.1/download\"],\n strip_prefix = \"jni-0.21.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-0.21.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.3.1\",\n sha256 = \"41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.3.1/download\"],\n strip_prefix = \"jni-sys-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.4.1\",\n sha256 = \"c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.4.1/download\"],\n strip_prefix = \"jni-sys-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-macros-0.4.1\",\n sha256 = \"38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys-macros/0.4.1/download\"],\n strip_prefix = \"jni-sys-macros-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-macros-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jobserver-0.1.34\",\n sha256 = \"9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jobserver/0.1.34/download\"],\n strip_prefix = \"jobserver-0.1.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jobserver-0.1.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__js-sys-0.3.95\",\n sha256 = \"2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/js-sys/0.3.95/download\"],\n strip_prefix = \"js-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.js-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jwt-0.16.0\",\n sha256 = \"6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jwt/0.16.0/download\"],\n strip_prefix = \"jwt-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jwt-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__keccak-0.1.6\",\n sha256 = \"cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/keccak/0.1.6/download\"],\n strip_prefix = \"keccak-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.keccak-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst-0.2.20\",\n sha256 = \"128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst/0.2.20/download\"],\n strip_prefix = \"konst-0.2.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst-0.2.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst_macro_rules-0.2.19\",\n sha256 = \"a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst_macro_rules/0.2.19/download\"],\n strip_prefix = \"konst_macro_rules-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst_macro_rules-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lazy_static-1.5.0\",\n sha256 = \"bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lazy_static/1.5.0/download\"],\n strip_prefix = \"lazy_static-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lazy_static-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128-0.2.6\",\n sha256 = \"6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128/0.2.6/download\"],\n strip_prefix = \"leb128-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128fmt-0.1.0\",\n sha256 = \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128fmt/0.1.0/download\"],\n strip_prefix = \"leb128fmt-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128fmt-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libm-0.2.16\",\n sha256 = \"b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libm/0.2.16/download\"],\n strip_prefix = \"libm-0.2.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libm-0.2.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libredox-0.1.16\",\n sha256 = \"e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libredox/0.1.16/download\"],\n strip_prefix = \"libredox-0.1.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libredox-0.1.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libyaml-rs-0.3.0\",\n sha256 = \"2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libyaml-rs/0.3.0/download\"],\n strip_prefix = \"libyaml-rs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libyaml-rs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linked_list_allocator-0.10.5\",\n sha256 = \"9afa463f5405ee81cdb9cc2baf37e08ec7e4c8209442b5d72c04cfb2cd6e6286\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linked_list_allocator/0.10.5/download\"],\n strip_prefix = \"linked_list_allocator-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linked_list_allocator-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.12.1\",\n sha256 = \"32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.12.1/download\"],\n strip_prefix = \"linux-raw-sys-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.4.15\",\n sha256 = \"d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.4.15/download\"],\n strip_prefix = \"linux-raw-sys-0.4.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.4.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__litemap-0.8.2\",\n sha256 = \"92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/litemap/0.8.2/download\"],\n strip_prefix = \"litemap-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.litemap-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lock_api-0.4.14\",\n sha256 = \"224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lock_api/0.4.14/download\"],\n strip_prefix = \"lock_api-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lock_api-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__log-0.4.29\",\n sha256 = \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/log/0.4.29/download\"],\n strip_prefix = \"log-0.4.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.log-0.4.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lru-slab-0.1.2\",\n sha256 = \"112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lru-slab/0.1.2/download\"],\n strip_prefix = \"lru-slab-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lru-slab-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lzma-sys-0.1.20\",\n sha256 = \"5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lzma-sys/0.1.20/download\"],\n strip_prefix = \"lzma-sys-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lzma-sys-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mach2-0.4.3\",\n sha256 = \"d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mach2/0.4.3/download\"],\n strip_prefix = \"mach2-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mach2-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maplit-1.0.2\",\n sha256 = \"3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maplit/1.0.2/download\"],\n strip_prefix = \"maplit-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maplit-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__match_cfg-0.1.0\",\n sha256 = \"ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/match_cfg/0.1.0/download\"],\n strip_prefix = \"match_cfg-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.match_cfg-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.7.3\",\n sha256 = \"0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.7.3/download\"],\n strip_prefix = \"matchit-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.8.4\",\n sha256 = \"47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.8.4/download\"],\n strip_prefix = \"matchit-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maybe-owned-0.3.4\",\n sha256 = \"4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maybe-owned/0.3.4/download\"],\n strip_prefix = \"maybe-owned-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maybe-owned-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memchr-2.8.0\",\n sha256 = \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memchr/2.8.0/download\"],\n strip_prefix = \"memchr-2.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memchr-2.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memfd-0.6.5\",\n sha256 = \"ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memfd/0.6.5/download\"],\n strip_prefix = \"memfd-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memfd-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memmap2-0.9.10\",\n sha256 = \"714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memmap2/0.9.10/download\"],\n strip_prefix = \"memmap2-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memmap2-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memoffset-0.9.1\",\n sha256 = \"488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memoffset/0.9.1/download\"],\n strip_prefix = \"memoffset-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memoffset-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mime-0.3.17\",\n sha256 = \"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mime/0.3.17/download\"],\n strip_prefix = \"mime-0.3.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mime-0.3.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__minimal-lexical-0.2.1\",\n sha256 = \"68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/minimal-lexical/0.2.1/download\"],\n strip_prefix = \"minimal-lexical-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.minimal-lexical-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__miniz_oxide-0.8.9\",\n sha256 = \"1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/miniz_oxide/0.8.9/download\"],\n strip_prefix = \"miniz_oxide-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.miniz_oxide-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mio-1.2.0\",\n sha256 = \"50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mio/1.2.0/download\"],\n strip_prefix = \"mio-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mio-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall-0.13.1\",\n sha256 = \"39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall/0.13.1/download\"],\n strip_prefix = \"mockall-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall_derive-0.13.1\",\n sha256 = \"25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall_derive/0.13.1/download\"],\n strip_prefix = \"mockall_derive-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall_derive-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__multimap-0.10.1\",\n sha256 = \"1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/multimap/0.10.1/download\"],\n strip_prefix = \"multimap-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.multimap-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-core-0.7.0\",\n sha256 = \"72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-core/0.7.0/download\"],\n strip_prefix = \"netlink-packet-core-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-core-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-route-0.19.0\",\n sha256 = \"74c171cd77b4ee8c7708da746ce392440cb7bcf618d122ec9ecc607b12938bf4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-route/0.19.0/download\"],\n strip_prefix = \"netlink-packet-route-0.19.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-route-0.19.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-utils-0.5.2\",\n sha256 = \"0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-utils/0.5.2/download\"],\n strip_prefix = \"netlink-packet-utils-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-utils-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-proto-0.11.5\",\n sha256 = \"72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-proto/0.11.5/download\"],\n strip_prefix = \"netlink-proto-0.11.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-proto-0.11.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-sys-0.8.8\",\n sha256 = \"cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-sys/0.8.8/download\"],\n strip_prefix = \"netlink-sys-0.8.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-sys-0.8.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.26.4\",\n sha256 = \"598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.26.4/download\"],\n strip_prefix = \"nix-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.27.1\",\n sha256 = \"2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.27.1/download\"],\n strip_prefix = \"nix-0.27.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.27.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.31.2\",\n sha256 = \"5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.31.2/download\"],\n strip_prefix = \"nix-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-7.1.3\",\n sha256 = \"d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/7.1.3/download\"],\n strip_prefix = \"nom-7.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-7.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-8.0.0\",\n sha256 = \"df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/8.0.0/download\"],\n strip_prefix = \"nom-8.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-8.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nu-ansi-term-0.50.3\",\n sha256 = \"7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nu-ansi-term/0.50.3/download\"],\n strip_prefix = \"nu-ansi-term-0.50.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nu-ansi-term-0.50.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-0.4.6\",\n sha256 = \"a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint/0.4.6/download\"],\n strip_prefix = \"num-bigint-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-dig-0.8.6\",\n sha256 = \"e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint-dig/0.8.6/download\"],\n strip_prefix = \"num-bigint-dig-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-dig-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-conv-0.1.0\",\n sha256 = \"51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-conv/0.1.0/download\"],\n strip_prefix = \"num-conv-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-conv-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-format-0.4.4\",\n sha256 = \"a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-format/0.4.4/download\"],\n strip_prefix = \"num-format-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-format-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-integer-0.1.46\",\n sha256 = \"7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-integer/0.1.46/download\"],\n strip_prefix = \"num-integer-0.1.46\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-integer-0.1.46.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-iter-0.1.45\",\n sha256 = \"1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-iter/0.1.45/download\"],\n strip_prefix = \"num-iter-0.1.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-iter-0.1.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-traits-0.2.19\",\n sha256 = \"071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-traits/0.2.19/download\"],\n strip_prefix = \"num-traits-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-traits-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num_threads-0.1.7\",\n sha256 = \"5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num_threads/0.1.7/download\"],\n strip_prefix = \"num_threads-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num_threads-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__number_prefix-0.4.0\",\n sha256 = \"830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/number_prefix/0.4.0/download\"],\n strip_prefix = \"number_prefix-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.number_prefix-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.36.7\",\n sha256 = \"62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.36.7/download\"],\n strip_prefix = \"object-0.36.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.36.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.37.3\",\n sha256 = \"ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.37.3/download\"],\n strip_prefix = \"object-0.37.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.37.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-client-0.15.0\",\n sha256 = \"9b74df13319e08bc386d333d3dc289c774c88cc543cae31f5347db07b5ec2172\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-client/0.15.0/download\"],\n strip_prefix = \"oci-client-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-client-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-spec-0.8.4\",\n sha256 = \"fc3da52b83ce3258fbf29f66ac784b279453c2ac3c22c5805371b921ede0d308\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-spec/0.8.4/download\"],\n strip_prefix = \"oci-spec-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-spec-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oid-registry-0.7.1\",\n sha256 = \"a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oid-registry/0.7.1/download\"],\n strip_prefix = \"oid-registry-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oid-registry-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__olpc-cjson-0.1.4\",\n sha256 = \"696183c9b5fe81a7715d074fd632e8bd46f4ccc0231a3ed7fc580a80de5f7083\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/olpc-cjson/0.1.4/download\"],\n strip_prefix = \"olpc-cjson-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.olpc-cjson-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell-1.21.4\",\n sha256 = \"9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell/1.21.4/download\"],\n strip_prefix = \"once_cell-1.21.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell-1.21.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell_polyfill-1.70.2\",\n sha256 = \"384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell_polyfill/1.70.2/download\"],\n strip_prefix = \"once_cell_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oorandom-11.1.5\",\n sha256 = \"d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oorandom/11.1.5/download\"],\n strip_prefix = \"oorandom-11.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oorandom-11.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-0.10.78\",\n sha256 = \"f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl/0.10.78/download\"],\n strip_prefix = \"openssl-0.10.78\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-0.10.78.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-macros-0.1.1\",\n sha256 = \"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-macros/0.1.1/download\"],\n strip_prefix = \"openssl-macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-probe-0.2.1\",\n sha256 = \"7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-probe/0.2.1/download\"],\n strip_prefix = \"openssl-probe-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-probe-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-sys-0.9.114\",\n sha256 = \"13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-sys/0.9.114/download\"],\n strip_prefix = \"openssl-sys-0.9.114\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-sys-0.9.114.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-0.31.0\",\n sha256 = \"b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry/0.31.0/download\"],\n strip_prefix = \"opentelemetry-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\",\n sha256 = \"ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-appender-tracing/0.31.1/download\"],\n strip_prefix = \"opentelemetry-appender-tracing-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-appender-tracing-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-http-0.31.0\",\n sha256 = \"d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-http/0.31.0/download\"],\n strip_prefix = \"opentelemetry-http-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-http-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-otlp-0.31.1\",\n sha256 = \"1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-otlp/0.31.1/download\"],\n strip_prefix = \"opentelemetry-otlp-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-otlp-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-proto-0.31.0\",\n sha256 = \"a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-proto/0.31.0/download\"],\n strip_prefix = \"opentelemetry-proto-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-proto-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry_sdk-0.31.0\",\n sha256 = \"e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry_sdk/0.31.0/download\"],\n strip_prefix = \"opentelemetry_sdk-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry_sdk-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__os_pipe-1.2.3\",\n sha256 = \"7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/os_pipe/1.2.3/download\"],\n strip_prefix = \"os_pipe-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.os_pipe-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros-0.18.5\",\n sha256 = \"1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros/0.18.5/download\"],\n strip_prefix = \"ouroboros-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros_macro-0.18.5\",\n sha256 = \"3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros_macro/0.18.5/download\"],\n strip_prefix = \"ouroboros_macro-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros_macro-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p256-0.13.2\",\n sha256 = \"c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p256/0.13.2/download\"],\n strip_prefix = \"p256-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p256-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p384-0.13.1\",\n sha256 = \"fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p384/0.13.1/download\"],\n strip_prefix = \"p384-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p384-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot-0.12.5\",\n sha256 = \"93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot/0.12.5/download\"],\n strip_prefix = \"parking_lot-0.12.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot-0.12.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot_core-0.9.12\",\n sha256 = \"2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot_core/0.9.12/download\"],\n strip_prefix = \"parking_lot_core-0.9.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot_core-0.9.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__paste-1.0.15\",\n sha256 = \"57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/paste/1.0.15/download\"],\n strip_prefix = \"paste-1.0.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.paste-1.0.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-3.0.6\",\n sha256 = \"1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem/3.0.6/download\"],\n strip_prefix = \"pem-3.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-3.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-rfc7468-0.7.0\",\n sha256 = \"88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem-rfc7468/0.7.0/download\"],\n strip_prefix = \"pem-rfc7468-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-rfc7468-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__percent-encoding-2.3.2\",\n sha256 = \"9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/percent-encoding/2.3.2/download\"],\n strip_prefix = \"percent-encoding-2.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.percent-encoding-2.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.6.5\",\n sha256 = \"b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.6.5/download\"],\n strip_prefix = \"petgraph-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.8.3\",\n sha256 = \"8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.8.3/download\"],\n strip_prefix = \"petgraph-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-1.1.11\",\n sha256 = \"f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project/1.1.11/download\"],\n strip_prefix = \"pin-project-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-internal-1.1.11\",\n sha256 = \"d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-internal/1.1.11/download\"],\n strip_prefix = \"pin-project-internal-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-internal-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-lite-0.2.17\",\n sha256 = \"a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-lite/0.2.17/download\"],\n strip_prefix = \"pin-project-lite-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-lite-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs1-0.7.5\",\n sha256 = \"c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs1/0.7.5/download\"],\n strip_prefix = \"pkcs1-0.7.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs1-0.7.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs8-0.10.2\",\n sha256 = \"f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs8/0.10.2/download\"],\n strip_prefix = \"pkcs8-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs8-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkg-config-0.3.33\",\n sha256 = \"19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkg-config/0.3.33/download\"],\n strip_prefix = \"pkg-config-0.3.33\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkg-config-0.3.33.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plain-0.2.3\",\n sha256 = \"b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plain/0.2.3/download\"],\n strip_prefix = \"plain-0.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plain-0.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-0.3.7\",\n sha256 = \"5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters/0.3.7/download\"],\n strip_prefix = \"plotters-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-backend-0.3.7\",\n sha256 = \"df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-backend/0.3.7/download\"],\n strip_prefix = \"plotters-backend-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-backend-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-svg-0.3.7\",\n sha256 = \"51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-svg/0.3.7/download\"],\n strip_prefix = \"plotters-svg-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-svg-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__poly1305-0.8.0\",\n sha256 = \"8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/poly1305/0.8.0/download\"],\n strip_prefix = \"poly1305-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.poly1305-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__port_check-0.1.5\",\n sha256 = \"f6519412c9e0d4be579b9f0618364d19cb434b324fc6ddb1b27b1e682c7105ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/port_check/0.1.5/download\"],\n strip_prefix = \"port_check-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.port_check-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-1.13.1\",\n sha256 = \"c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic/1.13.1/download\"],\n strip_prefix = \"portable-atomic-1.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-1.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-util-0.2.7\",\n sha256 = \"c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic-util/0.2.7/download\"],\n strip_prefix = \"portable-atomic-util-0.2.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-util-0.2.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portpicker-0.1.1\",\n sha256 = \"be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portpicker/0.1.1/download\"],\n strip_prefix = \"portpicker-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portpicker-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__postcard-1.1.3\",\n sha256 = \"6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/postcard/1.1.3/download\"],\n strip_prefix = \"postcard-1.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.postcard-1.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__potential_utf-0.1.5\",\n sha256 = \"0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/potential_utf/0.1.5/download\"],\n strip_prefix = \"potential_utf-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.potential_utf-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__powerfmt-0.2.0\",\n sha256 = \"439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/powerfmt/0.2.0/download\"],\n strip_prefix = \"powerfmt-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.powerfmt-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pprof-0.15.0\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/pprof:pprof-prost13.patch\",\n ],\n sha256 = \"38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pprof/0.15.0/download\"],\n strip_prefix = \"pprof-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pprof-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-3.1.4\",\n sha256 = \"ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates/3.1.4/download\"],\n strip_prefix = \"predicates-3.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-3.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-core-1.0.10\",\n sha256 = \"cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-core/1.0.10/download\"],\n strip_prefix = \"predicates-core-1.0.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-core-1.0.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-tree-1.0.13\",\n sha256 = \"d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-tree/1.0.13/download\"],\n strip_prefix = \"predicates-tree-1.0.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-tree-1.0.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prettyplease-0.2.37\",\n sha256 = \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prettyplease/0.2.37/download\"],\n strip_prefix = \"prettyplease-0.2.37\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prettyplease-0.2.37.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__primeorder-0.13.6\",\n sha256 = \"353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/primeorder/0.13.6/download\"],\n strip_prefix = \"primeorder-0.13.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.primeorder-0.13.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error-attr2-2.0.0\",\n sha256 = \"96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error-attr2/2.0.0/download\"],\n strip_prefix = \"proc-macro-error-attr2-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error-attr2-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error2-2.0.1\",\n sha256 = \"11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error2/2.0.1/download\"],\n strip_prefix = \"proc-macro-error2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-diagnostics-0.10.1\",\n sha256 = \"af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2-diagnostics/0.10.1/download\"],\n strip_prefix = \"proc-macro2-diagnostics-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-diagnostics-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-0.16.0\",\n sha256 = \"731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs/0.16.0/download\"],\n strip_prefix = \"procfs-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-core-0.16.0\",\n sha256 = \"2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs-core/0.16.0/download\"],\n strip_prefix = \"procfs-core-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-core-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proptest-1.11.0\",\n sha256 = \"4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proptest/1.11.0/download\"],\n strip_prefix = \"proptest-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proptest-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.12.6\",\n sha256 = \"deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.12.6/download\"],\n strip_prefix = \"prost-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.14.3\",\n sha256 = \"d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.14.3/download\"],\n strip_prefix = \"prost-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.12.6\",\n sha256 = \"22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.12.6/download\"],\n strip_prefix = \"prost-build-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.14.3\",\n sha256 = \"343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.14.3/download\"],\n strip_prefix = \"prost-build-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.12.6\",\n sha256 = \"81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.12.6/download\"],\n strip_prefix = \"prost-derive-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.14.3\",\n sha256 = \"27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.14.3/download\"],\n strip_prefix = \"prost-derive-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.12.6\",\n sha256 = \"9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.12.6/download\"],\n strip_prefix = \"prost-types-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.14.3\",\n sha256 = \"8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.14.3/download\"],\n strip_prefix = \"prost-types-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__psm-0.1.31\",\n sha256 = \"645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/psm/0.1.31/download\"],\n strip_prefix = \"psm-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.psm-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-0.13.3\",\n sha256 = \"7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark/0.13.3/download\"],\n strip_prefix = \"pulldown-cmark-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-to-cmark-22.0.0\",\n sha256 = \"50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark-to-cmark/22.0.0/download\"],\n strip_prefix = \"pulldown-cmark-to-cmark-22.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-to-cmark-22.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulley-interpreter-32.0.1\",\n sha256 = \"210168e10de0449154698532069f4b7164fda92ba8c7ed382f58241658de3430\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulley-interpreter/32.0.1/download\"],\n strip_prefix = \"pulley-interpreter-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulley-interpreter-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-error-1.2.3\",\n sha256 = \"a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-error/1.2.3/download\"],\n strip_prefix = \"quick-error-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-error-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-xml-0.26.0\",\n sha256 = \"7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-xml/0.26.0/download\"],\n strip_prefix = \"quick-xml-0.26.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-xml-0.26.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-0.11.9\",\n sha256 = \"b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn/0.11.9/download\"],\n strip_prefix = \"quinn-0.11.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-0.11.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-proto-0.11.14\",\n sha256 = \"434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-proto/0.11.14/download\"],\n strip_prefix = \"quinn-proto-0.11.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-proto-0.11.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-udp-0.5.14\",\n sha256 = \"addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-udp/0.5.14/download\"],\n strip_prefix = \"quinn-udp-0.5.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-udp-0.5.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-6.0.0\",\n sha256 = \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/6.0.0/download\"],\n strip_prefix = \"r-efi-6.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-6.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__radium-0.7.0\",\n sha256 = \"dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/radium/0.7.0/download\"],\n strip_prefix = \"radium-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.radium-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.8.6\",\n sha256 = \"5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.8.6/download\"],\n strip_prefix = \"rand-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.3.1\",\n sha256 = \"e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.3.1/download\"],\n strip_prefix = \"rand_chacha-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_xorshift-0.4.0\",\n sha256 = \"513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_xorshift/0.4.0/download\"],\n strip_prefix = \"rand_xorshift-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_xorshift-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__raw-cpuid-10.7.0\",\n sha256 = \"6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/raw-cpuid/10.7.0/download\"],\n strip_prefix = \"raw-cpuid-10.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.raw-cpuid-10.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-1.12.0\",\n sha256 = \"fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon/1.12.0/download\"],\n strip_prefix = \"rayon-1.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-1.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-core-1.13.0\",\n sha256 = \"22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon-core/1.13.0/download\"],\n strip_prefix = \"rayon-core-1.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-core-1.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rcgen-0.13.2\",\n sha256 = \"75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rcgen/0.13.2/download\"],\n strip_prefix = \"rcgen-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rcgen-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.5.18\",\n sha256 = \"ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.5.18/download\"],\n strip_prefix = \"redox_syscall-0.5.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.5.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.7.4\",\n sha256 = \"f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.7.4/download\"],\n strip_prefix = \"redox_syscall-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_users-0.4.6\",\n sha256 = \"ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_users/0.4.6/download\"],\n strip_prefix = \"redox_users-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_users-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-1.0.25\",\n sha256 = \"f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast/1.0.25/download\"],\n strip_prefix = \"ref-cast-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-impl-1.0.25\",\n sha256 = \"b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast-impl/1.0.25/download\"],\n strip_prefix = \"ref-cast-impl-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-impl-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regalloc2-0.11.2\",\n sha256 = \"dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regalloc2/0.11.2/download\"],\n strip_prefix = \"regalloc2-0.11.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regalloc2-0.11.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-1.12.3\",\n sha256 = \"e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex/1.12.3/download\"],\n strip_prefix = \"regex-1.12.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-1.12.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-automata-0.4.14\",\n sha256 = \"6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-automata/0.4.14/download\"],\n strip_prefix = \"regex-automata-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-automata-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-lite-0.1.9\",\n sha256 = \"cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-lite/0.1.9/download\"],\n strip_prefix = \"regex-lite-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-lite-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-syntax-0.8.10\",\n sha256 = \"dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-syntax/0.8.10/download\"],\n strip_prefix = \"regex-syntax-0.8.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-syntax-0.8.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__reqwest-0.12.28\",\n sha256 = \"eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/reqwest/0.12.28/download\"],\n strip_prefix = \"reqwest-0.12.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.reqwest-0.12.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rfc6979-0.4.0\",\n sha256 = \"f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rfc6979/0.4.0/download\"],\n strip_prefix = \"rfc6979-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rfc6979-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rgb-0.8.53\",\n sha256 = \"47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rgb/0.8.53/download\"],\n strip_prefix = \"rgb-0.8.53\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rgb-0.8.53.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ring-0.17.14\",\n sha256 = \"a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ring/0.17.14/download\"],\n strip_prefix = \"ring-0.17.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ring-0.17.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rlsf-0.2.2\",\n sha256 = \"1646a59a9734b8b7a0ac51689388a60fe1625d4b956348e9de07591a1478457a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rlsf/0.2.2/download\"],\n strip_prefix = \"rlsf-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rlsf-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-0.8.5\",\n sha256 = \"e5947688160b56fb6c827e3c20a72c90392a1d7e9dec74749197aa1780ac42ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp/0.8.5/download\"],\n strip_prefix = \"rmcp-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-macros-0.8.5\",\n sha256 = \"01263441d3f8635c628e33856c468b96ebbce1af2d3699ea712ca71432d4ee7a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp-macros/0.8.5/download\"],\n strip_prefix = \"rmcp-macros-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-macros-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rpassword-7.4.0\",\n sha256 = \"66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rpassword/7.4.0/download\"],\n strip_prefix = \"rpassword-7.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rpassword-7.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rs_merkle-1.5.0\",\n sha256 = \"bb09b49230ba22e8c676e7b75dfe2887dea8121f18b530ae0ba519ce442d2b21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rs_merkle/1.5.0/download\"],\n strip_prefix = \"rs_merkle-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rs_merkle-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rsa-0.9.10\",\n sha256 = \"b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rsa/0.9.10/download\"],\n strip_prefix = \"rsa-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rsa-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtnetlink-0.14.1\",\n sha256 = \"b684475344d8df1859ddb2d395dd3dac4f8f3422a1aa0725993cb375fc5caba5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtnetlink/0.14.1/download\"],\n strip_prefix = \"rtnetlink-0.14.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtnetlink-0.14.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtoolbox-0.0.5\",\n sha256 = \"50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtoolbox/0.0.5/download\"],\n strip_prefix = \"rtoolbox-0.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtoolbox-0.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-demangle-0.1.27\",\n sha256 = \"b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-demangle/0.1.27/download\"],\n strip_prefix = \"rustc-demangle-0.1.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-demangle-0.1.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-hash-2.1.2\",\n sha256 = \"94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-hash/2.1.2/download\"],\n strip_prefix = \"rustc-hash-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-hash-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc_version-0.4.1\",\n sha256 = \"cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc_version/0.4.1/download\"],\n strip_prefix = \"rustc_version-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc_version-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusticata-macros-4.1.0\",\n sha256 = \"faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusticata-macros/4.1.0/download\"],\n strip_prefix = \"rusticata-macros-4.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusticata-macros-4.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-0.38.44\",\n sha256 = \"fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/0.38.44/download\"],\n strip_prefix = \"rustix-0.38.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-0.38.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-1.1.4\",\n sha256 = \"b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/1.1.4/download\"],\n strip_prefix = \"rustix-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-linux-procfs-0.1.1\",\n sha256 = \"2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix-linux-procfs/0.1.1/download\"],\n strip_prefix = \"rustix-linux-procfs-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-linux-procfs-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.22.4\",\n sha256 = \"bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.22.4/download\"],\n strip_prefix = \"rustls-0.22.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.22.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.23.39\",\n sha256 = \"7c2c118cb077cca2822033836dfb1b975355dfb784b5e8da48f7b6c5db74e60e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.23.39/download\"],\n strip_prefix = \"rustls-0.23.39\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.23.39.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-native-certs-0.8.3\",\n sha256 = \"612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-native-certs/0.8.3/download\"],\n strip_prefix = \"rustls-native-certs-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-native-certs-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pemfile-2.2.0\",\n sha256 = \"dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pemfile/2.2.0/download\"],\n strip_prefix = \"rustls-pemfile-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pemfile-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pki-types-1.14.0\",\n sha256 = \"be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pki-types/1.14.0/download\"],\n strip_prefix = \"rustls-pki-types-1.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pki-types-1.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.102.8\",\n sha256 = \"64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.102.8/download\"],\n strip_prefix = \"rustls-webpki-0.102.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.102.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.103.13\",\n sha256 = \"61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.103.13/download\"],\n strip_prefix = \"rustls-webpki-0.103.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.103.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustversion-1.0.22\",\n sha256 = \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustversion/1.0.22/download\"],\n strip_prefix = \"rustversion-1.0.22\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustversion-1.0.22.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusty-fork-0.3.1\",\n sha256 = \"cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusty-fork/0.3.1/download\"],\n strip_prefix = \"rusty-fork-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusty-fork-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ryu-1.0.23\",\n sha256 = \"9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ryu/1.0.23/download\"],\n strip_prefix = \"ryu-1.0.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ryu-1.0.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__same-file-1.0.6\",\n sha256 = \"93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/same-file/1.0.6/download\"],\n strip_prefix = \"same-file-1.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.same-file-1.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schannel-0.1.29\",\n sha256 = \"91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schannel/0.1.29/download\"],\n strip_prefix = \"schannel-0.1.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schannel-0.1.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars-1.2.1\",\n sha256 = \"a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars/1.2.1/download\"],\n strip_prefix = \"schemars-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars_derive-1.2.1\",\n sha256 = \"7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars_derive/1.2.1/download\"],\n strip_prefix = \"schemars_derive-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars_derive-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scopeguard-1.2.0\",\n sha256 = \"94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scopeguard/1.2.0/download\"],\n strip_prefix = \"scopeguard-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scopeguard-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll-0.12.0\",\n sha256 = \"6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll/0.12.0/download\"],\n strip_prefix = \"scroll-0.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll-0.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll_derive-0.12.1\",\n sha256 = \"1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll_derive/0.12.1/download\"],\n strip_prefix = \"scroll_derive-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll_derive-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sec1-0.7.3\",\n sha256 = \"d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sec1/0.7.3/download\"],\n strip_prefix = \"sec1-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sec1-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-3.7.0\",\n sha256 = \"b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework/3.7.0/download\"],\n strip_prefix = \"security-framework-3.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-3.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-sys-2.17.0\",\n sha256 = \"6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework-sys/2.17.0/download\"],\n strip_prefix = \"security-framework-sys-2.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-sys-2.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__self_cell-1.2.2\",\n sha256 = \"b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/self_cell/1.2.2/download\"],\n strip_prefix = \"self_cell-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.self_cell-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__semver-1.0.28\",\n sha256 = \"8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/semver/1.0.28/download\"],\n strip_prefix = \"semver-1.0.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.semver-1.0.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive_internals-0.29.1\",\n sha256 = \"18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive_internals/0.29.1/download\"],\n strip_prefix = \"serde_derive_internals-0.29.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive_internals-0.29.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_json-1.0.149\",\n sha256 = \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_json/1.0.149/download\"],\n strip_prefix = \"serde_json-1.0.149\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_json-1.0.149.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_path_to_error-0.1.20\",\n sha256 = \"10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_path_to_error/0.1.20/download\"],\n strip_prefix = \"serde_path_to_error-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_path_to_error-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_spanned-0.6.9\",\n sha256 = \"bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_spanned/0.6.9/download\"],\n strip_prefix = \"serde_spanned-0.6.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_spanned-0.6.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_urlencoded-0.7.1\",\n sha256 = \"d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_urlencoded/0.7.1/download\"],\n strip_prefix = \"serde_urlencoded-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_urlencoded-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha1-0.10.6\",\n sha256 = \"e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha1/0.10.6/download\"],\n strip_prefix = \"sha1-0.10.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha1-0.10.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha2-0.10.9\",\n sha256 = \"a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha2/0.10.9/download\"],\n strip_prefix = \"sha2-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha2-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha3-0.10.9\",\n sha256 = \"77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha3/0.10.9/download\"],\n strip_prefix = \"sha3-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha3-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sharded-slab-0.1.7\",\n sha256 = \"f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sharded-slab/0.1.7/download\"],\n strip_prefix = \"sharded-slab-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sharded-slab-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shellexpand-2.1.2\",\n sha256 = \"7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shellexpand/2.1.2/download\"],\n strip_prefix = \"shellexpand-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shellexpand-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-0.3.18\",\n sha256 = \"d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook/0.3.18/download\"],\n strip_prefix = \"signal-hook-0.3.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-0.3.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-registry-1.4.8\",\n sha256 = \"c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-registry/1.4.8/download\"],\n strip_prefix = \"signal-hook-registry-1.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-registry-1.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-tokio-0.3.1\",\n sha256 = \"213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-tokio/0.3.1/download\"],\n strip_prefix = \"signal-hook-tokio-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-tokio-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signature-2.2.0\",\n sha256 = \"77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signature/2.2.0/download\"],\n strip_prefix = \"signature-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signature-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__simd-adler32-0.3.9\",\n sha256 = \"703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/simd-adler32/0.3.9/download\"],\n strip_prefix = \"simd-adler32-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.simd-adler32-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__slab-0.4.12\",\n sha256 = \"0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/slab/0.4.12/download\"],\n strip_prefix = \"slab-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.slab-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__smallvec-1.15.1\",\n sha256 = \"67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/smallvec/1.15.1/download\"],\n strip_prefix = \"smallvec-1.15.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.smallvec-1.15.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__socket2-0.6.3\",\n sha256 = \"3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/socket2/0.6.3/download\"],\n strip_prefix = \"socket2-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.socket2-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spdx-0.10.9\",\n sha256 = \"c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spdx/0.10.9/download\"],\n strip_prefix = \"spdx-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spdx-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.10.0\",\n sha256 = \"d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.10.0/download\"],\n strip_prefix = \"spin-0.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.9.8\",\n sha256 = \"6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.9.8/download\"],\n strip_prefix = \"spin-0.9.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.9.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.2.5\",\n sha256 = \"5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.2.5/download\"],\n strip_prefix = \"spinning_top-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.3.0\",\n sha256 = \"d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.3.0/download\"],\n strip_prefix = \"spinning_top-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spki-0.7.3\",\n sha256 = \"d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spki/0.7.3/download\"],\n strip_prefix = \"spki-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spki-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sptr-0.3.2\",\n sha256 = \"3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sptr/0.3.2/download\"],\n strip_prefix = \"sptr-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sptr-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sse-stream-0.2.2\",\n sha256 = \"2c5e6deb40826033bd7b11c7ef25ef71193fabd71f680f40dd16538a2704d2f4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sse-stream/0.2.2/download\"],\n strip_prefix = \"sse-stream-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sse-stream-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__stable_deref_trait-1.2.1\",\n sha256 = \"6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/stable_deref_trait/1.2.1/download\"],\n strip_prefix = \"stable_deref_trait-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.stable_deref_trait-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__static_assertions-1.1.0\",\n sha256 = \"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/static_assertions/1.1.0/download\"],\n strip_prefix = \"static_assertions-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.static_assertions-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__str_stack-0.1.0\",\n sha256 = \"9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/str_stack/0.1.0/download\"],\n strip_prefix = \"str_stack-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.str_stack-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strsim-0.11.1\",\n sha256 = \"7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strsim/0.11.1/download\"],\n strip_prefix = \"strsim-0.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strsim-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum-0.27.2\",\n sha256 = \"af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum/0.27.2/download\"],\n strip_prefix = \"strum-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum_macros-0.27.2\",\n sha256 = \"7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum_macros/0.27.2/download\"],\n strip_prefix = \"strum_macros-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum_macros-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__svgbobdoc-0.3.0\",\n sha256 = \"f2c04b93fc15d79b39c63218f15e3fdffaa4c227830686e3b7c5f41244eb3e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/svgbobdoc/0.3.0/download\"],\n strip_prefix = \"svgbobdoc-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.svgbobdoc-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-common-12.18.3\",\n sha256 = \"332615d90111d8eeaf86a84dc9bbe9f65d0d8c5cf11b4caccedc37754eb0dcfd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-common/12.18.3/download\"],\n strip_prefix = \"symbolic-common-12.18.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-common-12.18.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-demangle-12.18.3\",\n sha256 = \"912017718eb4d21930546245af9a3475c9dccf15675a5c215664e76621afc471\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-demangle/12.18.3/download\"],\n strip_prefix = \"symbolic-demangle-12.18.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-demangle-12.18.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-1.0.109\",\n sha256 = \"72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/1.0.109/download\"],\n strip_prefix = \"syn-1.0.109\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-1.0.109.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sync_wrapper-1.0.2\",\n sha256 = \"0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sync_wrapper/1.0.2/download\"],\n strip_prefix = \"sync_wrapper-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sync_wrapper-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__synstructure-0.13.2\",\n sha256 = \"728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/synstructure/0.13.2/download\"],\n strip_prefix = \"synstructure-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.synstructure-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syslog-6.1.1\",\n sha256 = \"dfc7e95b5b795122fafe6519e27629b5ab4232c73ebb2428f568e82b1a457ad3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syslog/6.1.1/download\"],\n strip_prefix = \"syslog-6.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syslog-6.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-0.7.0\",\n sha256 = \"a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration/0.7.0/download\"],\n strip_prefix = \"system-configuration-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-sys-0.6.0\",\n sha256 = \"8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration-sys/0.6.0/download\"],\n strip_prefix = \"system-configuration-sys-0.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-sys-0.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-interface-0.27.3\",\n sha256 = \"cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-interface/0.27.3/download\"],\n strip_prefix = \"system-interface-0.27.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-interface-0.27.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tap-1.0.1\",\n sha256 = \"55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tap/1.0.1/download\"],\n strip_prefix = \"tap-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tap-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tar-0.4.45\",\n sha256 = \"22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tar/0.4.45/download\"],\n strip_prefix = \"tar-0.4.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tar-0.4.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__target-lexicon-0.13.5\",\n sha256 = \"adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/target-lexicon/0.13.5/download\"],\n strip_prefix = \"target-lexicon-0.13.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.target-lexicon-0.13.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tempfile-3.27.0\",\n sha256 = \"32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tempfile/3.27.0/download\"],\n strip_prefix = \"tempfile-3.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tempfile-3.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termtree-0.5.1\",\n sha256 = \"8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termtree/0.5.1/download\"],\n strip_prefix = \"termtree-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termtree-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-1.0.69\",\n sha256 = \"b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/1.0.69/download\"],\n strip_prefix = \"thiserror-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-2.0.18\",\n sha256 = \"4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/2.0.18/download\"],\n strip_prefix = \"thiserror-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-1.0.69\",\n sha256 = \"4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/1.0.69/download\"],\n strip_prefix = \"thiserror-impl-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-2.0.18\",\n sha256 = \"ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/2.0.18/download\"],\n strip_prefix = \"thiserror-impl-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thread_local-1.1.9\",\n sha256 = \"f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thread_local/1.1.9/download\"],\n strip_prefix = \"thread_local-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thread_local-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemalloc-sys-0.5.4-5.3.0-patched\",\n sha256 = \"9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemalloc-sys/0.5.4+5.3.0-patched/download\"],\n strip_prefix = \"tikv-jemalloc-sys-0.5.4+5.3.0-patched\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemalloc-sys-0.5.4+5.3.0-patched.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemallocator-0.5.4\",\n sha256 = \"965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemallocator/0.5.4/download\"],\n strip_prefix = \"tikv-jemallocator-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemallocator-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-0.3.36\",\n sha256 = \"5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time/0.3.36/download\"],\n strip_prefix = \"time-0.3.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-0.3.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-core-0.1.2\",\n sha256 = \"ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-core/0.1.2/download\"],\n strip_prefix = \"time-core-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-core-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-macros-0.2.18\",\n sha256 = \"3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-macros/0.2.18/download\"],\n strip_prefix = \"time-macros-0.2.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-macros-0.2.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinystr-0.8.3\",\n sha256 = \"c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinystr/0.8.3/download\"],\n strip_prefix = \"tinystr-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinystr-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinytemplate-1.2.1\",\n sha256 = \"be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinytemplate/1.2.1/download\"],\n strip_prefix = \"tinytemplate-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinytemplate-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec-1.11.0\",\n sha256 = \"3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec/1.11.0/download\"],\n strip_prefix = \"tinyvec-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec_macros-0.1.1\",\n sha256 = \"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec_macros/0.1.1/download\"],\n strip_prefix = \"tinyvec_macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec_macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-1.52.1\",\n sha256 = \"b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio/1.52.1/download\"],\n strip_prefix = \"tokio-1.52.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-1.52.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-macros-2.7.0\",\n sha256 = \"385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-macros/2.7.0/download\"],\n strip_prefix = \"tokio-macros-2.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-macros-2.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.25.0\",\n sha256 = \"775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.25.0/download\"],\n strip_prefix = \"tokio-rustls-0.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.26.4\",\n sha256 = \"1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.26.4/download\"],\n strip_prefix = \"tokio-rustls-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-stream-0.1.18\",\n sha256 = \"32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-stream/0.1.18/download\"],\n strip_prefix = \"tokio-stream-0.1.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-stream-0.1.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-tungstenite-0.27.0\",\n sha256 = \"489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-tungstenite/0.27.0/download\"],\n strip_prefix = \"tokio-tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-util-0.7.18\",\n sha256 = \"9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-util/0.7.18/download\"],\n strip_prefix = \"tokio-util-0.7.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-util-0.7.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-vsock-0.7.2\",\n sha256 = \"8b319ef9394889dab2e1b4f0085b45ba11d0c79dc9d1a9d1afc057d009d0f1c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-vsock/0.7.2/download\"],\n strip_prefix = \"tokio-vsock-0.7.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-vsock-0.7.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml-0.8.23\",\n sha256 = \"dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml/0.8.23/download\"],\n strip_prefix = \"toml-0.8.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml-0.8.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_datetime-0.6.11\",\n sha256 = \"22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_datetime/0.6.11/download\"],\n strip_prefix = \"toml_datetime-0.6.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_datetime-0.6.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_edit-0.22.27\",\n sha256 = \"41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_edit/0.22.27/download\"],\n strip_prefix = \"toml_edit-0.22.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_edit-0.22.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_write-0.1.2\",\n sha256 = \"5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_write/0.1.2/download\"],\n strip_prefix = \"toml_write-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_write-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-0.14.5\",\n sha256 = \"fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic/0.14.5/download\"],\n strip_prefix = \"tonic-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-build-0.14.5\",\n sha256 = \"1882ac3bf5ef12877d7ed57aad87e75154c11931c2ba7e6cde5e22d63522c734\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-build/0.14.5/download\"],\n strip_prefix = \"tonic-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-0.14.5\",\n sha256 = \"a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost/0.14.5/download\"],\n strip_prefix = \"tonic-prost-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-build-0.14.5\",\n sha256 = \"f3144df636917574672e93d0f56d7edec49f90305749c668df5101751bb8f95a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost-build/0.14.5/download\"],\n strip_prefix = \"tonic-prost-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.4.13\",\n sha256 = \"b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.4.13/download\"],\n strip_prefix = \"tower-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.5.3\",\n sha256 = \"ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.5.3/download\"],\n strip_prefix = \"tower-0.5.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.5.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-http-0.6.8\",\n sha256 = \"d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-http/0.6.8/download\"],\n strip_prefix = \"tower-http-0.6.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-http-0.6.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-layer-0.3.3\",\n sha256 = \"121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-layer/0.3.3/download\"],\n strip_prefix = \"tower-layer-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-layer-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-service-0.3.3\",\n sha256 = \"8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-service/0.3.3/download\"],\n strip_prefix = \"tower-service-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-service-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-0.1.44\",\n sha256 = \"63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing/0.1.44/download\"],\n strip_prefix = \"tracing-0.1.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-0.1.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-attributes-0.1.31\",\n sha256 = \"7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-attributes/0.1.31/download\"],\n strip_prefix = \"tracing-attributes-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-attributes-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-core-0.1.36\",\n sha256 = \"db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-core/0.1.36/download\"],\n strip_prefix = \"tracing-core-0.1.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-core-0.1.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-subscriber-0.3.23\",\n sha256 = \"cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-subscriber/0.3.23/download\"],\n strip_prefix = \"tracing-subscriber-0.3.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-subscriber-0.3.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__trait-variant-0.1.2\",\n sha256 = \"70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/trait-variant/0.1.2/download\"],\n strip_prefix = \"trait-variant-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.trait-variant-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__try-lock-0.2.5\",\n sha256 = \"e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/try-lock/0.2.5/download\"],\n strip_prefix = \"try-lock-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.try-lock-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tungstenite-0.27.0\",\n sha256 = \"eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tungstenite/0.27.0/download\"],\n strip_prefix = \"tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uart_16550-0.3.2\",\n sha256 = \"e492212ac378a5e00da953718dafb1340d9fbaf4f27d6f3c5cab03d931d1c049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uart_16550/0.3.2/download\"],\n strip_prefix = \"uart_16550-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uart_16550-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ubyte-0.10.4\",\n sha256 = \"f720def6ce1ee2fc44d40ac9ed6d3a59c361c80a75a7aa8e75bb9baed31cf2ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ubyte/0.10.4/download\"],\n strip_prefix = \"ubyte-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ubyte-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unarray-0.1.4\",\n sha256 = \"eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unarray/0.1.4/download\"],\n strip_prefix = \"unarray-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unarray-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicase-2.9.0\",\n sha256 = \"dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicase/2.9.0/download\"],\n strip_prefix = \"unicase-2.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicase-2.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-normalization-0.1.25\",\n sha256 = \"5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-normalization/0.1.25/download\"],\n strip_prefix = \"unicode-normalization-0.1.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-normalization-0.1.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.1.14\",\n sha256 = \"7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.1.14/download\"],\n strip_prefix = \"unicode-width-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-xid-0.2.6\",\n sha256 = \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-xid/0.2.6/download\"],\n strip_prefix = \"unicode-xid-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-xid-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__untrusted-0.9.0\",\n sha256 = \"8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/untrusted/0.9.0/download\"],\n strip_prefix = \"untrusted-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.untrusted-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ureq-2.12.1\",\n sha256 = \"02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ureq/2.12.1/download\"],\n strip_prefix = \"ureq-2.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ureq-2.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__url-2.5.8\",\n sha256 = \"ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/url/2.5.8/download\"],\n strip_prefix = \"url-2.5.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.url-2.5.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf-8-0.7.6\",\n sha256 = \"09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf-8/0.7.6/download\"],\n strip_prefix = \"utf-8-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf-8-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8_iter-1.0.4\",\n sha256 = \"b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8_iter/1.0.4/download\"],\n strip_prefix = \"utf8_iter-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8_iter-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8parse-0.2.2\",\n sha256 = \"06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8parse/0.2.2/download\"],\n strip_prefix = \"utf8parse-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8parse-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uuid-1.23.1\",\n sha256 = \"ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uuid/1.23.1/download\"],\n strip_prefix = \"uuid-1.23.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uuid-1.23.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vcpkg-0.2.15\",\n sha256 = \"accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vcpkg/0.2.15/download\"],\n strip_prefix = \"vcpkg-0.2.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vcpkg-0.2.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__volatile-0.4.6\",\n sha256 = \"442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/volatile/0.4.6/download\"],\n strip_prefix = \"volatile-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.volatile-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vsock-0.5.4\",\n sha256 = \"6ba782755fc073877e567c2253c0be48e4aa9a254c232d36d3985dfae0bd5205\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vsock/0.5.4/download\"],\n strip_prefix = \"vsock-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vsock-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wait-timeout-0.2.1\",\n sha256 = \"09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wait-timeout/0.2.1/download\"],\n strip_prefix = \"wait-timeout-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wait-timeout-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-0.5.1\",\n sha256 = \"6e2db2daf1dfbadf228fd8b3c22b96a359135fd673b3d2c203274ee6a0df9c77\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki/0.5.1/download\"],\n strip_prefix = \"waki-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-macros-0.5.1\",\n sha256 = \"a061143f321cc5eeb523f60bdbcd45cfc3ee8851f8cf24f7a4b963bddc5642eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki-macros/0.5.1/download\"],\n strip_prefix = \"waki-macros-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-macros-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__walkdir-2.5.0\",\n sha256 = \"29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/walkdir/2.5.0/download\"],\n strip_prefix = \"walkdir-2.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.walkdir-2.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__want-0.3.1\",\n sha256 = \"bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/want/0.3.1/download\"],\n strip_prefix = \"want-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.want-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06\",\n sha256 = \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download\"],\n strip_prefix = \"wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-0.2.118\",\n sha256 = \"0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-futures-0.4.68\",\n sha256 = \"f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-futures/0.4.68/download\"],\n strip_prefix = \"wasm-bindgen-futures-0.4.68\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-futures-0.4.68.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-0.2.118\",\n sha256 = \"eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-support-0.2.118\",\n sha256 = \"9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-support-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-support-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-shared-0.2.118\",\n sha256 = \"5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-shared-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-shared-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.218.1\",\n sha256 = \"491f7e48672d0a1efdeadf897d98ac1f45942c26c3829cb44a6b828f6f26155f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.218.1/download\"],\n strip_prefix = \"wasm-encoder-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.219.2\",\n sha256 = \"8aa79bcd666a043b58f5fa62b221b0b914dd901e6f620e8ab7371057a797f3e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.219.2/download\"],\n strip_prefix = \"wasm-encoder-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.228.0\",\n sha256 = \"05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.228.0/download\"],\n strip_prefix = \"wasm-encoder-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.244.0\",\n sha256 = \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.244.0/download\"],\n strip_prefix = \"wasm-encoder-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.218.1\",\n sha256 = \"ca31626e08c121a67fe7cbca87e2ead2ed84ccc16043346c2a1d7cf38936c251\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.218.1/download\"],\n strip_prefix = \"wasm-metadata-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.219.2\",\n sha256 = \"b1ef51bd442042a2a7b562dddb6016ead52c4abab254c376dcffc83add2c9c34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.219.2/download\"],\n strip_prefix = \"wasm-metadata-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.244.0\",\n sha256 = \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.244.0/download\"],\n strip_prefix = \"wasm-metadata-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-streams-0.4.2\",\n sha256 = \"15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-streams/0.4.2/download\"],\n strip_prefix = \"wasm-streams-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-streams-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi-0.31.2\",\n sha256 = \"77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi/0.31.2/download\"],\n strip_prefix = \"wasmi-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_arena-0.4.1\",\n sha256 = \"104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_arena/0.4.1/download\"],\n strip_prefix = \"wasmi_arena-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_arena-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_core-0.13.0\",\n sha256 = \"dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_core/0.13.0/download\"],\n strip_prefix = \"wasmi_core-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_core-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.218.1\",\n sha256 = \"059739c2eac26eea736389a7d6d30b41a8201490bea204d0facde19183359849\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.218.1/download\"],\n strip_prefix = \"wasmparser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.219.2\",\n sha256 = \"5220ee4c6ffcc0cb9d7c47398052203bc902c8ef3985b0c8134118440c0b2921\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.219.2/download\"],\n strip_prefix = \"wasmparser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.228.0\",\n sha256 = \"4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.228.0/download\"],\n strip_prefix = \"wasmparser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.244.0\",\n sha256 = \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.244.0/download\"],\n strip_prefix = \"wasmparser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-nostd-0.100.2\",\n sha256 = \"d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser-nostd/0.100.2/download\"],\n strip_prefix = \"wasmparser-nostd-0.100.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-nostd-0.100.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmprinter-0.228.0\",\n sha256 = \"0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmprinter/0.228.0/download\"],\n strip_prefix = \"wasmprinter-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmprinter-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-32.0.1\",\n sha256 = \"ad01fc006f2c40ae475412c4d8d41ecb8790b3cc2b04cfb6c802bf845a93231e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime/32.0.1/download\"],\n strip_prefix = \"wasmtime-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-asm-macros-32.0.1\",\n sha256 = \"936dc7dcea4bcb11964c62e6e0a78a360b888b2fa8ffeec37cacf22ac43b7b03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-asm-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-asm-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-asm-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cache-32.0.1\",\n sha256 = \"4e714cd20f559743c8daf9b5c992630765a329507a95cdd77204b99cc0a5f252\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cache/32.0.1/download\"],\n strip_prefix = \"wasmtime-cache-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cache-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-macro-32.0.1\",\n sha256 = \"dad44c6c446b99a0a5459798bb580824c424c82cd28d8498aa60f7c34a4c917a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-macro/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-util-32.0.1\",\n sha256 = \"d9aa325c17140d69de9a03dda4ce75d2f47eb90376c0cd9e01d54a9cb19cb7ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-util/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-util-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-util-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cranelift-32.0.1\",\n sha256 = \"4fc41e93228c2d5862e49c5cc7e6ecba29c5b4c9afcbd8ae2ca07622f75a439b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cranelift/32.0.1/download\"],\n strip_prefix = \"wasmtime-cranelift-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cranelift-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-environ-32.0.1\",\n sha256 = \"72985be5115421ea4f40bd3dc6081c0ced281171eba508c6d0cfe3e184a84e60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-environ/32.0.1/download\"],\n strip_prefix = \"wasmtime-environ-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-environ-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-fiber-32.0.1\",\n sha256 = \"ff64b883df8e177c64b69ee68889c62913353bf20774ff5ce55aba0aa99aeb78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-fiber/32.0.1/download\"],\n strip_prefix = \"wasmtime-fiber-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-fiber-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-jit-icache-coherence-32.0.1\",\n sha256 = \"23ccb3dd740a0601addd260f4a6d91470cd3f7a2058efe46662054ca6b6da592\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-jit-icache-coherence/32.0.1/download\"],\n strip_prefix = \"wasmtime-jit-icache-coherence-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-jit-icache-coherence-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-math-32.0.1\",\n sha256 = \"7cdb839281525419d67958e37629d71da696b525756222d6cc1596df960a0112\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-math/32.0.1/download\"],\n strip_prefix = \"wasmtime-math-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-math-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-slab-32.0.1\",\n sha256 = \"06f9cbf0710c55c617a6cf016aecb6d76abaffb7b26511a6111808ff96d9233c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-slab/32.0.1/download\"],\n strip_prefix = \"wasmtime-slab-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-slab-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-versioned-export-macros-32.0.1\",\n sha256 = \"dbb192336c60c672de6d8d96e5ea9c92b11c41be78acf8af9bfecf6f1e72b546\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-versioned-export-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-versioned-export-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-versioned-export-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-32.0.1\",\n sha256 = \"7513ec128fbe590a33a10f3b144b86aaa633a65b857d108bad7b835877ae62bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-http-32.0.1\",\n sha256 = \"a53f8d62d9c85ae9845b2523765607f26e6f6923dfcb6e34e8e6bd14df77017c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-http/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-http-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-http-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-io-32.0.1\",\n sha256 = \"f52b6decdc45591a05c698d66c50c6258a0741472ed28d0de51f13c71fd4583b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-io/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-io-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-io-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-winch-32.0.1\",\n sha256 = \"3fcb97439811c7ff8283ee44ac13c1889b270a39187f2bac16889067d2a9f438\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-winch/32.0.1/download\"],\n strip_prefix = \"wasmtime-winch-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-winch-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wit-bindgen-32.0.1\",\n sha256 = \"5bd0a7ffc24aa19a2784849662d2ba93344a41bd956132da7b2f5fee41cdb7d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wit-bindgen/32.0.1/download\"],\n strip_prefix = \"wasmtime-wit-bindgen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wit-bindgen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wast-35.0.2\",\n sha256 = \"2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wast/35.0.2/download\"],\n strip_prefix = \"wast-35.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wast-35.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-sys-0.3.95\",\n sha256 = \"4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-sys/0.3.95/download\"],\n strip_prefix = \"web-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-time-1.1.0\",\n sha256 = \"5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-time/1.1.0/download\"],\n strip_prefix = \"web-time-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-time-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-0.26.11\",\n sha256 = \"521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/0.26.11/download\"],\n strip_prefix = \"webpki-roots-0.26.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-0.26.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-1.0.7\",\n sha256 = \"52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/1.0.7/download\"],\n strip_prefix = \"webpki-roots-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__which-5.0.0\",\n sha256 = \"9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/which/5.0.0/download\"],\n strip_prefix = \"which-5.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.which-5.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-32.0.1\",\n sha256 = \"b69703366897a920a393581773a0a928ad5547125b1db84099a875f105497068\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle/32.0.1/download\"],\n strip_prefix = \"wiggle-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-generate-32.0.1\",\n sha256 = \"3288f30a93cebce9bb5f85825bae0ba6ae11f1caa22e87e68b1195ddfc292cb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-generate/32.0.1/download\"],\n strip_prefix = \"wiggle-generate-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-generate-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-macro-32.0.1\",\n sha256 = \"3a7946f6957c3d1ab24584f5e8cf93f35af197eeaeab71abee77e4d422ec983e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-macro/32.0.1/download\"],\n strip_prefix = \"wiggle-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-0.3.9\",\n sha256 = \"5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi/0.3.9/download\"],\n strip_prefix = \"winapi-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-i686-pc-windows-gnu-0.4.0\",\n sha256 = \"ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-i686-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-x86_64-pc-windows-gnu-0.4.0\",\n sha256 = \"712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-x86_64-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winch-codegen-32.0.1\",\n sha256 = \"1e7e8521de7cf48d6b6dd8c737b7ca72b40ce850b86a57b57ecf2e6f5bd233e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winch-codegen/32.0.1/download\"],\n strip_prefix = \"winch-codegen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winch-codegen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-core-0.62.2\",\n sha256 = \"b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-core/0.62.2/download\"],\n strip_prefix = \"windows-core-0.62.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-core-0.62.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-implement-0.60.2\",\n sha256 = \"053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-implement/0.60.2/download\"],\n strip_prefix = \"windows-implement-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-implement-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-interface-0.59.3\",\n sha256 = \"3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-interface/0.59.3/download\"],\n strip_prefix = \"windows-interface-0.59.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-interface-0.59.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-registry-0.6.1\",\n sha256 = \"02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-registry/0.6.1/download\"],\n strip_prefix = \"windows-registry-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-registry-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-result-0.4.1\",\n sha256 = \"7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-result/0.4.1/download\"],\n strip_prefix = \"windows-result-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-result-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-strings-0.5.1\",\n sha256 = \"7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-strings/0.5.1/download\"],\n strip_prefix = \"windows-strings-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-strings-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.45.0\",\n sha256 = \"75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.45.0/download\"],\n strip_prefix = \"windows-sys-0.45.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.45.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.48.0\",\n sha256 = \"677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.48.0/download\"],\n strip_prefix = \"windows-sys-0.48.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.48.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.52.0\",\n sha256 = \"282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.52.0/download\"],\n strip_prefix = \"windows-sys-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.59.0\",\n sha256 = \"1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.59.0/download\"],\n strip_prefix = \"windows-sys-0.59.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.59.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.60.2\",\n sha256 = \"f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.60.2/download\"],\n strip_prefix = \"windows-sys-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.42.2\",\n sha256 = \"8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.42.2/download\"],\n strip_prefix = \"windows-targets-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.48.5\",\n sha256 = \"9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.48.5/download\"],\n strip_prefix = \"windows-targets-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.52.6\",\n sha256 = \"9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.52.6/download\"],\n strip_prefix = \"windows-targets-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.53.5\",\n sha256 = \"4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.53.5/download\"],\n strip_prefix = \"windows-targets-0.53.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.53.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.42.2\",\n sha256 = \"597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.48.5\",\n sha256 = \"2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.52.6\",\n sha256 = \"32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.53.1\",\n sha256 = \"a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.42.2\",\n sha256 = \"e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.48.5\",\n sha256 = \"dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.52.6\",\n sha256 = \"09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.53.1\",\n sha256 = \"b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.42.2\",\n sha256 = \"c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.42.2/download\"],\n strip_prefix = \"windows_i686_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.48.5\",\n sha256 = \"a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.48.5/download\"],\n strip_prefix = \"windows_i686_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.52.6\",\n sha256 = \"8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.53.1\",\n sha256 = \"960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.52.6\",\n sha256 = \"0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.53.1\",\n sha256 = \"fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.42.2\",\n sha256 = \"44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.42.2/download\"],\n strip_prefix = \"windows_i686_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.48.5\",\n sha256 = \"8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.48.5/download\"],\n strip_prefix = \"windows_i686_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.52.6\",\n sha256 = \"240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.52.6/download\"],\n strip_prefix = \"windows_i686_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.53.1\",\n sha256 = \"1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.53.1/download\"],\n strip_prefix = \"windows_i686_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.42.2\",\n sha256 = \"8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.48.5\",\n sha256 = \"53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.52.6\",\n sha256 = \"147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.53.1\",\n sha256 = \"9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.42.2\",\n sha256 = \"26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.48.5\",\n sha256 = \"0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.52.6\",\n sha256 = \"24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.53.1\",\n sha256 = \"0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.42.2\",\n sha256 = \"9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.48.5\",\n sha256 = \"ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.52.6\",\n sha256 = \"589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.53.1\",\n sha256 = \"d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winnow-0.7.15\",\n sha256 = \"df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winnow/0.7.15/download\"],\n strip_prefix = \"winnow-0.7.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winnow-0.7.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winx-0.36.4\",\n sha256 = \"3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winx/0.36.4/download\"],\n strip_prefix = \"winx-0.36.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winx-0.36.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.33.0\",\n sha256 = \"8fcf26778671a2327bd237a32c6f2d1d9bb0ec077e482b0839552b00d4566544\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.34.0\",\n sha256 = \"7e11ad55616555605a60a8b2d1d89e006c2076f46c465c892cc2c153b20d4b30\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.51.0\",\n sha256 = \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.33.0\",\n sha256 = \"4b885a00e1c428fd12b7b7c4bccc4bad8b2a3ca0abe8eaf1e0f90adabb4c7ac7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.34.0\",\n sha256 = \"163cee59d3d5ceec0b256735f3ab0dccac434afb0ec38c406276de9c5a11e906\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.51.0\",\n sha256 = \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.33.0\",\n sha256 = \"3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.34.0\",\n sha256 = \"744845cde309b8fa32408d6fb67456449278c66ea4dcd96de29797b302721f02\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.33.0\",\n sha256 = \"542608877814a54f6bea6b24dcbe249a2e293d67d709f4f8ec578d06b1c00730\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.34.0\",\n sha256 = \"f6919521fc7807f927a739181db93100ca7ed03c29509b84d5f96b27b2e49a9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.51.0\",\n sha256 = \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.33.0\",\n sha256 = \"30d462025f670fff96606ddbfe62500255b4fe3de7298cd9cbabb2de3d567183\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.34.0\",\n sha256 = \"c967731fc5d50244d7241ecfc9302a8929db508eea3c601fbc5371b196ba38a5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.51.0\",\n sha256 = \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.218.1\",\n sha256 = \"5152dd199894d1b3b0907738b1a3d2b2809cd492440204f5339cfa1bb4c9fc92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.218.1/download\"],\n strip_prefix = \"wit-component-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.219.2\",\n sha256 = \"4b8479a29d81c063264c3ab89d496787ef78f8345317a2dcf6dece0f129e5fcd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.219.2/download\"],\n strip_prefix = \"wit-component-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.244.0\",\n sha256 = \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.244.0/download\"],\n strip_prefix = \"wit-component-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.218.1\",\n sha256 = \"f104473e8546f8096f1fa483d337101a98dc9525d67f4275816bcd177fe3e2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.218.1/download\"],\n strip_prefix = \"wit-parser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.219.2\",\n sha256 = \"ca004bb251010fe956f4a5b9d4bf86b4e415064160dd6669569939e8cbf2504f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.219.2/download\"],\n strip_prefix = \"wit-parser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.228.0\",\n sha256 = \"399ce56e28d79fd3abfa03fdc7ceb89ffec4d4b2674fe3a92056b7d845653c38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.228.0/download\"],\n strip_prefix = \"wit-parser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.244.0\",\n sha256 = \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.244.0/download\"],\n strip_prefix = \"wit-parser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__witx-0.9.1\",\n sha256 = \"e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/witx/0.9.1/download\"],\n strip_prefix = \"witx-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.witx-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__writeable-0.6.3\",\n sha256 = \"1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/writeable/0.6.3/download\"],\n strip_prefix = \"writeable-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.writeable-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wyz-0.5.1\",\n sha256 = \"05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wyz/0.5.1/download\"],\n strip_prefix = \"wyz-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wyz-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x25519-dalek-2.0.1\",\n sha256 = \"c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x25519-dalek/2.0.1/download\"],\n strip_prefix = \"x25519-dalek-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x25519-dalek-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-cert-0.2.5\",\n sha256 = \"1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-cert/0.2.5/download\"],\n strip_prefix = \"x509-cert-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-cert-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-ocsp-0.2.1\",\n sha256 = \"5e54e695a31f0fecb826cf59ae2093c941d7ef932a1f8508185dd23b29ce2e2e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-ocsp/0.2.1/download\"],\n strip_prefix = \"x509-ocsp-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-ocsp-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-parser-0.16.0\",\n sha256 = \"fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-parser/0.16.0/download\"],\n strip_prefix = \"x509-parser-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-parser-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-verify-0.4.8\",\n sha256 = \"c43a49bf845cd2f3aff9603a4276409dbf2b8fa4454d3e9501bf5b0028342964\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-verify/0.4.8/download\"],\n strip_prefix = \"x509-verify-0.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-verify-0.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86-0.52.0\",\n sha256 = \"2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86/0.52.0/download\"],\n strip_prefix = \"x86-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86_64-0.15.4\",\n sha256 = \"f7841fa0098ceb15c567d93d3fae292c49e10a7662b4936d5f6a9728594555ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86_64/0.15.4/download\"],\n strip_prefix = \"x86_64-0.15.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86_64-0.15.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xattr-1.6.1\",\n sha256 = \"32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xattr/1.6.1/download\"],\n strip_prefix = \"xattr-1.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xattr-1.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xz2-0.1.7\",\n sha256 = \"388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xz2/0.1.7/download\"],\n strip_prefix = \"xz2-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xz2-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yaml_serde-0.10.4\",\n sha256 = \"08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yaml_serde/0.10.4/download\"],\n strip_prefix = \"yaml_serde-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yaml_serde-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yansi-1.0.1\",\n sha256 = \"cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yansi/1.0.1/download\"],\n strip_prefix = \"yansi-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yansi-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yasna-0.5.2\",\n sha256 = \"e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yasna/0.5.2/download\"],\n strip_prefix = \"yasna-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yasna-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-0.8.2\",\n sha256 = \"abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke/0.8.2/download\"],\n strip_prefix = \"yoke-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-derive-0.8.2\",\n sha256 = \"de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke-derive/0.8.2/download\"],\n strip_prefix = \"yoke-derive-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-derive-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-0.1.7\",\n sha256 = \"69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom/0.1.7/download\"],\n strip_prefix = \"zerofrom-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-derive-0.1.7\",\n sha256 = \"11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom-derive/0.1.7/download\"],\n strip_prefix = \"zerofrom-derive-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-derive-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize_derive-1.4.3\",\n sha256 = \"85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize_derive/1.4.3/download\"],\n strip_prefix = \"zeroize_derive-1.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize_derive-1.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerotrie-0.2.4\",\n sha256 = \"0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerotrie/0.2.4/download\"],\n strip_prefix = \"zerotrie-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerotrie-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-0.11.6\",\n sha256 = \"90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec/0.11.6/download\"],\n strip_prefix = \"zerovec-0.11.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-0.11.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-derive-0.11.3\",\n sha256 = \"625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec-derive/0.11.3/download\"],\n strip_prefix = \"zerovec-derive-0.11.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-derive-0.11.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zmij-1.0.21\",\n sha256 = \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zmij/1.0.21/download\"],\n strip_prefix = \"zmij-1.0.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zmij-1.0.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-0.13.3\",\n sha256 = \"e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd/0.13.3/download\"],\n strip_prefix = \"zstd-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-safe-7.2.4\",\n sha256 = \"8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-safe/7.2.4/download\"],\n strip_prefix = \"zstd-safe-7.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-safe-7.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-sys-2.0.16-zstd.1.5.7\",\n sha256 = \"91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-sys/2.0.16+zstd.1.5.7/download\"],\n strip_prefix = \"zstd-sys-2.0.16+zstd.1.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-sys-2.0.16+zstd.1.5.7.bazel\"),\n )\n\n return [\n struct(repo=\"oak_std_crates_index__acpi-5.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aead-0.5.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aes-gcm-0.10.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aml-0.16.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__anyhow-1.0.102\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__arrayvec-0.7.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__assertables-7.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-stream-0.3.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-trait-0.1.89\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__atomic_refcell-0.1.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__axum-0.7.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__base64-0.21.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bincode-1.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitflags-2.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitvec-1.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bytes-1.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__chrono-0.4.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ciborium-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__clap-4.6.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__colored-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-fds-0.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-group-5.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__const-oid-0.9.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__coset-0.3.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-macro-0.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__derive_builder-0.20.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ecdsa-0.16.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ed25519-dalek-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__elf-0.7.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__env_logger-0.11.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__flate2-1.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-util-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__getrandom-0.2.17\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__goblin-0.8.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__googletest-0.14.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hashbrown-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hex-0.4.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hkdf-0.12.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hmac-0.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hpke-0.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-1.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-body-util-0.1.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__humantime-serde-1.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-1.9.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-util-0.1.20\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__indicatif-0.17.11\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__itertools-0.13.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jni-0.21.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jwt-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lazy_static-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__libm-0.2.16\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__linked_list_allocator-0.10.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lock_api-0.4.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__log-0.4.29\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__maplit-1.0.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__mockall-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nix-0.27.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nom-8.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-client-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-spec-0.8.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__once_cell-1.21.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__openssl-0.10.78\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-otlp-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-proto-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry_sdk-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__os_pipe-1.2.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ouroboros-0.18.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p256-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p384-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__parking_lot-0.12.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pem-3.0.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pkcs8-0.10.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__port_check-0.1.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__portpicker-0.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pprof-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__primeorder-0.13.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__procfs-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__proptest-1.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-build-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-derive-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-types-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__quote-1.0.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand-0.9.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_chacha-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_core-0.6.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rcgen-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-1.12.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-lite-0.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__reqwest-0.12.28\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rlsf-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-macros-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rpassword-7.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rs_merkle-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rsa-0.9.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rtnetlink-0.14.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-0.23.39\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pemfile-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pki-types-1.14.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__self_cell-1.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde-1.0.228\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde_json-1.0.149\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha2-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha3-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-0.3.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-tokio-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__spinning_top-0.3.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__static_assertions-1.1.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__strum-0.27.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syn-2.0.117\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syslog-6.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tar-0.4.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tempfile-3.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__thiserror-2.0.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tikv-jemallocator-0.5.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__time-macros-0.2.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-1.52.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-stream-0.1.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-util-0.7.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-vsock-0.7.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__toml-0.8.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-build-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-0.4.13\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-http-0.6.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-0.1.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-subscriber-0.3.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__uart_16550-0.3.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ubyte-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ureq-2.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__url-2.5.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__waki-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__walkdir-2.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmi-0.31.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-http-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__which-5.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wit-bindgen-0.33.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-cert-0.2.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-verify-0.4.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x86_64-0.15.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__xz2-0.1.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__yaml_serde-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zerocopy-0.8.48\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zeroize-1.8.2\", is_dev_dep = False),\n ]\n" + "defs.bzl": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\"\"\"\n# `crates_repository` API\n\n- [aliases](#aliases)\n- [crate_deps](#crate_deps)\n- [all_crate_deps](#all_crate_deps)\n- [crate_repositories](#crate_repositories)\n\n\"\"\"\n\nload(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"new_git_repository\")\nload(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")\nload(\"@bazel_tools//tools/build_defs/repo:utils.bzl\", \"maybe\")\nload(\"@bazel_skylib//lib:selects.bzl\", \"selects\")\nload(\"@rules_rust//crate_universe/private:local_crate_mirror.bzl\", \"local_crate_mirror\")\n\n###############################################################################\n# MACROS API\n###############################################################################\n\n# An identifier that represent common dependencies (unconditional).\n_COMMON_CONDITION = \"\"\n\ndef _flatten_dependency_maps(all_dependency_maps):\n \"\"\"Flatten a list of dependency maps into one dictionary.\n\n Dependency maps have the following structure:\n\n ```python\n DEPENDENCIES_MAP = {\n # The first key in the map is a Bazel package\n # name of the workspace this file is defined in.\n \"workspace_member_package\": {\n\n # Not all dependencies are supported for all platforms.\n # the condition key is the condition required to be true\n # on the host platform.\n \"condition\": {\n\n # An alias to a crate target. # The label of the crate target the\n # Aliases are only crate names. # package name refers to.\n \"package_name\": \"@full//:label\",\n }\n }\n }\n ```\n\n Args:\n all_dependency_maps (list): A list of dicts as described above\n\n Returns:\n dict: A dictionary as described above\n \"\"\"\n dependencies = {}\n\n for workspace_deps_map in all_dependency_maps:\n for pkg_name, conditional_deps_map in workspace_deps_map.items():\n if pkg_name not in dependencies:\n non_frozen_map = dict()\n for key, values in conditional_deps_map.items():\n non_frozen_map.update({key: dict(values.items())})\n dependencies.setdefault(pkg_name, non_frozen_map)\n continue\n\n for condition, deps_map in conditional_deps_map.items():\n # If the condition has not been recorded, do so and continue\n if condition not in dependencies[pkg_name]:\n dependencies[pkg_name].setdefault(condition, dict(deps_map.items()))\n continue\n\n # Alert on any miss-matched dependencies\n inconsistent_entries = []\n for crate_name, crate_label in deps_map.items():\n existing = dependencies[pkg_name][condition].get(crate_name)\n if existing and existing != crate_label:\n inconsistent_entries.append((crate_name, existing, crate_label))\n dependencies[pkg_name][condition].update({crate_name: crate_label})\n\n return dependencies\n\ndef crate_deps(deps, package_name = None):\n \"\"\"Finds the fully qualified label of the requested crates for the package where this macro is called.\n\n Args:\n deps (list): The desired list of crate targets.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()`.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if not deps:\n return []\n\n if package_name == None:\n package_name = native.package_name()\n\n # Join both sets of dependencies\n dependencies = _flatten_dependency_maps([\n _NORMAL_DEPENDENCIES,\n _NORMAL_DEV_DEPENDENCIES,\n _PROC_MACRO_DEPENDENCIES,\n _PROC_MACRO_DEV_DEPENDENCIES,\n _BUILD_DEPENDENCIES,\n _BUILD_PROC_MACRO_DEPENDENCIES,\n ]).pop(package_name, {})\n\n # Combine all conditional packages so we can easily index over a flat list\n # TODO: Perhaps this should actually return select statements and maintain\n # the conditionals of the dependencies\n flat_deps = {}\n for deps_set in dependencies.values():\n for crate_name, crate_label in deps_set.items():\n flat_deps.update({crate_name: crate_label})\n\n missing_crates = []\n crate_targets = []\n for crate_target in deps:\n if crate_target not in flat_deps:\n missing_crates.append(crate_target)\n else:\n crate_targets.append(flat_deps[crate_target])\n\n if missing_crates:\n fail(\"Could not find crates `{}` among dependencies of `{}`. Available dependencies were `{}`\".format(\n missing_crates,\n package_name,\n dependencies,\n ))\n\n return crate_targets\n\ndef all_crate_deps(\n normal = False, \n normal_dev = False, \n proc_macro = False, \n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Finds the fully qualified label of all requested direct crate dependencies \\\n for the package where this macro is called.\n\n If no parameters are set, all normal dependencies are returned. Setting any one flag will\n otherwise impact the contents of the returned list.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n list: A list of labels to generated rust targets (str)\n \"\"\"\n\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_dependency_maps = []\n if normal:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n if normal_dev:\n all_dependency_maps.append(_NORMAL_DEV_DEPENDENCIES)\n if proc_macro:\n all_dependency_maps.append(_PROC_MACRO_DEPENDENCIES)\n if proc_macro_dev:\n all_dependency_maps.append(_PROC_MACRO_DEV_DEPENDENCIES)\n if build:\n all_dependency_maps.append(_BUILD_DEPENDENCIES)\n if build_proc_macro:\n all_dependency_maps.append(_BUILD_PROC_MACRO_DEPENDENCIES)\n\n # Default to always using normal dependencies\n if not all_dependency_maps:\n all_dependency_maps.append(_NORMAL_DEPENDENCIES)\n\n dependencies = _flatten_dependency_maps(all_dependency_maps).pop(package_name, None)\n\n if not dependencies:\n if dependencies == None:\n fail(\"Tried to get all_crate_deps for package \" + package_name + \" but that package had no Cargo.toml file\")\n else:\n return []\n\n crate_deps = list(dependencies.pop(_COMMON_CONDITION, {}).values())\n for condition, deps in dependencies.items():\n crate_deps += selects.with_or({\n tuple(_CONDITIONS[condition]): deps.values(),\n \"//conditions:default\": [],\n })\n\n return crate_deps\n\ndef aliases(\n normal = False,\n normal_dev = False,\n proc_macro = False,\n proc_macro_dev = False,\n build = False,\n build_proc_macro = False,\n package_name = None):\n \"\"\"Produces a map of Crate alias names to their original label\n\n If no dependency kinds are specified, `normal` and `proc_macro` are used by default.\n Setting any one flag will otherwise determine the contents of the returned dict.\n\n Args:\n normal (bool, optional): If True, normal dependencies are included in the\n output list.\n normal_dev (bool, optional): If True, normal dev dependencies will be\n included in the output list..\n proc_macro (bool, optional): If True, proc_macro dependencies are included\n in the output list.\n proc_macro_dev (bool, optional): If True, dev proc_macro dependencies are\n included in the output list.\n build (bool, optional): If True, build dependencies are included\n in the output list.\n build_proc_macro (bool, optional): If True, build proc_macro dependencies are\n included in the output list.\n package_name (str, optional): The package name of the set of dependencies to look up.\n Defaults to `native.package_name()` when unset.\n\n Returns:\n dict: The aliases of all associated packages\n \"\"\"\n if package_name == None:\n package_name = native.package_name()\n\n # Determine the relevant maps to use\n all_aliases_maps = []\n if normal:\n all_aliases_maps.append(_NORMAL_ALIASES)\n if normal_dev:\n all_aliases_maps.append(_NORMAL_DEV_ALIASES)\n if proc_macro:\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n if proc_macro_dev:\n all_aliases_maps.append(_PROC_MACRO_DEV_ALIASES)\n if build:\n all_aliases_maps.append(_BUILD_ALIASES)\n if build_proc_macro:\n all_aliases_maps.append(_BUILD_PROC_MACRO_ALIASES)\n\n # Default to always using normal aliases\n if not all_aliases_maps:\n all_aliases_maps.append(_NORMAL_ALIASES)\n all_aliases_maps.append(_PROC_MACRO_ALIASES)\n\n aliases = _flatten_dependency_maps(all_aliases_maps).pop(package_name, None)\n\n if not aliases:\n return dict()\n\n common_items = aliases.pop(_COMMON_CONDITION, {}).items()\n\n # If there are only common items in the dictionary, immediately return them\n if not len(aliases.keys()) == 1:\n return dict(common_items)\n\n # Build a single select statement where each conditional has accounted for the\n # common set of aliases.\n crate_aliases = {\"//conditions:default\": dict(common_items)}\n for condition, deps in aliases.items():\n condition_triples = _CONDITIONS[condition]\n for triple in condition_triples:\n if triple in crate_aliases:\n crate_aliases[triple].update(deps)\n else:\n crate_aliases.update({triple: dict(deps.items() + common_items)})\n\n return select(crate_aliases)\n\n###############################################################################\n# WORKSPACE MEMBER DEPS AND ALIASES\n###############################################################################\n\n_NORMAL_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"acpi\": Label(\"@oak_std_crates_index//:acpi-5.2.0\"),\n \"aead\": Label(\"@oak_std_crates_index//:aead-0.5.2\"),\n \"aes-gcm\": Label(\"@oak_std_crates_index//:aes-gcm-0.10.3\"),\n \"aml\": Label(\"@oak_std_crates_index//:aml-0.16.4\"),\n \"anyhow\": Label(\"@oak_std_crates_index//:anyhow-1.0.102\"),\n \"arrayvec\": Label(\"@oak_std_crates_index//:arrayvec-0.7.6\"),\n \"assertables\": Label(\"@oak_std_crates_index//:assertables-7.0.1\"),\n \"async-stream\": Label(\"@oak_std_crates_index//:async-stream-0.3.6\"),\n \"atomic_refcell\": Label(\"@oak_std_crates_index//:atomic_refcell-0.1.14\"),\n \"axum\": Label(\"@oak_std_crates_index//:axum-0.7.9\"),\n \"base64\": Label(\"@oak_std_crates_index//:base64-0.21.7\"),\n \"bincode\": Label(\"@oak_std_crates_index//:bincode-1.3.3\"),\n \"bitflags\": Label(\"@oak_std_crates_index//:bitflags-2.11.1\"),\n \"bitvec\": Label(\"@oak_std_crates_index//:bitvec-1.0.1\"),\n \"bytes\": Label(\"@oak_std_crates_index//:bytes-1.11.1\"),\n \"chrono\": Label(\"@oak_std_crates_index//:chrono-0.4.44\"),\n \"ciborium\": Label(\"@oak_std_crates_index//:ciborium-0.2.2\"),\n \"clap\": Label(\"@oak_std_crates_index//:clap-4.6.1\"),\n \"colored\": Label(\"@oak_std_crates_index//:colored-2.2.0\"),\n \"command-fds\": Label(\"@oak_std_crates_index//:command-fds-0.3.3\"),\n \"command-group\": Label(\"@oak_std_crates_index//:command-group-5.0.1\"),\n \"const-oid\": Label(\"@oak_std_crates_index//:const-oid-0.9.6\"),\n \"coset\": Label(\"@oak_std_crates_index//:coset-0.3.8\"),\n \"criterion\": Label(\"@oak_std_crates_index//:criterion-0.5.1\"),\n \"derive_builder\": Label(\"@oak_std_crates_index//:derive_builder-0.20.2\"),\n \"ecdsa\": Label(\"@oak_std_crates_index//:ecdsa-0.16.9\"),\n \"ed25519-dalek\": Label(\"@oak_std_crates_index//:ed25519-dalek-2.2.0\"),\n \"elf\": Label(\"@oak_std_crates_index//:elf-0.7.4\"),\n \"env_logger\": Label(\"@oak_std_crates_index//:env_logger-0.11.10\"),\n \"flate2\": Label(\"@oak_std_crates_index//:flate2-1.1.9\"),\n \"futures\": Label(\"@oak_std_crates_index//:futures-0.3.32\"),\n \"futures-util\": Label(\"@oak_std_crates_index//:futures-util-0.3.32\"),\n \"getrandom\": Label(\"@oak_std_crates_index//:getrandom-0.2.17\"),\n \"goblin\": Label(\"@oak_std_crates_index//:goblin-0.8.2\"),\n \"googletest\": Label(\"@oak_std_crates_index//:googletest-0.14.2\"),\n \"hashbrown\": Label(\"@oak_std_crates_index//:hashbrown-0.14.5\"),\n \"hex\": Label(\"@oak_std_crates_index//:hex-0.4.3\"),\n \"hkdf\": Label(\"@oak_std_crates_index//:hkdf-0.12.4\"),\n \"hmac\": Label(\"@oak_std_crates_index//:hmac-0.12.1\"),\n \"hpke\": Label(\"@oak_std_crates_index//:hpke-0.11.0\"),\n \"http\": Label(\"@oak_std_crates_index//:http-1.4.0\"),\n \"http-body-util\": Label(\"@oak_std_crates_index//:http-body-util-0.1.3\"),\n \"humantime-serde\": Label(\"@oak_std_crates_index//:humantime-serde-1.1.1\"),\n \"hyper\": Label(\"@oak_std_crates_index//:hyper-1.9.0\"),\n \"hyper-util\": Label(\"@oak_std_crates_index//:hyper-util-0.1.20\"),\n \"indicatif\": Label(\"@oak_std_crates_index//:indicatif-0.17.11\"),\n \"itertools\": Label(\"@oak_std_crates_index//:itertools-0.13.0\"),\n \"jni\": Label(\"@oak_std_crates_index//:jni-0.21.1\"),\n \"jwt\": Label(\"@oak_std_crates_index//:jwt-0.16.0\"),\n \"lazy_static\": Label(\"@oak_std_crates_index//:lazy_static-1.5.0\"),\n \"libm\": Label(\"@oak_std_crates_index//:libm-0.2.16\"),\n \"linked_list_allocator\": Label(\"@oak_std_crates_index//:linked_list_allocator-0.10.5\"),\n \"lock_api\": Label(\"@oak_std_crates_index//:lock_api-0.4.14\"),\n \"log\": Label(\"@oak_std_crates_index//:log-0.4.29\"),\n \"maplit\": Label(\"@oak_std_crates_index//:maplit-1.0.2\"),\n \"mockall\": Label(\"@oak_std_crates_index//:mockall-0.13.1\"),\n \"nix\": Label(\"@oak_std_crates_index//:nix-0.27.1\"),\n \"nom\": Label(\"@oak_std_crates_index//:nom-8.0.0\"),\n \"oci-client\": Label(\"@oak_std_crates_index//:oci-client-0.15.0\"),\n \"oci-spec\": Label(\"@oak_std_crates_index//:oci-spec-0.8.4\"),\n \"once_cell\": Label(\"@oak_std_crates_index//:once_cell-1.21.4\"),\n \"openssl\": Label(\"@oak_std_crates_index//:openssl-0.10.78\"),\n \"opentelemetry\": Label(\"@oak_std_crates_index//:opentelemetry-0.31.0\"),\n \"opentelemetry-appender-tracing\": Label(\"@oak_std_crates_index//:opentelemetry-appender-tracing-0.31.1\"),\n \"opentelemetry-otlp\": Label(\"@oak_std_crates_index//:opentelemetry-otlp-0.31.1\"),\n \"opentelemetry-proto\": Label(\"@oak_std_crates_index//:opentelemetry-proto-0.31.0\"),\n \"opentelemetry_sdk\": Label(\"@oak_std_crates_index//:opentelemetry_sdk-0.31.0\"),\n \"os_pipe\": Label(\"@oak_std_crates_index//:os_pipe-1.2.3\"),\n \"ouroboros\": Label(\"@oak_std_crates_index//:ouroboros-0.18.5\"),\n \"p256\": Label(\"@oak_std_crates_index//:p256-0.13.2\"),\n \"p384\": Label(\"@oak_std_crates_index//:p384-0.13.1\"),\n \"parking_lot\": Label(\"@oak_std_crates_index//:parking_lot-0.12.5\"),\n \"pem\": Label(\"@oak_std_crates_index//:pem-3.0.6\"),\n \"pkcs8\": Label(\"@oak_std_crates_index//:pkcs8-0.10.2\"),\n \"port_check\": Label(\"@oak_std_crates_index//:port_check-0.1.5\"),\n \"portpicker\": Label(\"@oak_std_crates_index//:portpicker-0.1.1\"),\n \"pprof\": Label(\"@oak_std_crates_index//:pprof-0.15.0\"),\n \"primeorder\": Label(\"@oak_std_crates_index//:primeorder-0.13.6\"),\n \"procfs\": Label(\"@oak_std_crates_index//:procfs-0.16.0\"),\n \"proptest\": Label(\"@oak_std_crates_index//:proptest-1.11.0\"),\n \"prost\": Label(\"@oak_std_crates_index//:prost-0.14.3\"),\n \"prost-build\": Label(\"@oak_std_crates_index//:prost-build-0.14.3\"),\n \"prost-types\": Label(\"@oak_std_crates_index//:prost-types-0.14.3\"),\n \"quote\": Label(\"@oak_std_crates_index//:quote-1.0.45\"),\n \"rand\": Label(\"@oak_std_crates_index//:rand-0.9.4\"),\n \"rand_chacha\": Label(\"@oak_std_crates_index//:rand_chacha-0.3.1\"),\n \"rand_core\": Label(\"@oak_std_crates_index//:rand_core-0.6.4\"),\n \"rcgen\": Label(\"@oak_std_crates_index//:rcgen-0.13.2\"),\n \"regex\": Label(\"@oak_std_crates_index//:regex-1.12.3\"),\n \"regex-lite\": Label(\"@oak_std_crates_index//:regex-lite-0.1.9\"),\n \"reqwest\": Label(\"@oak_std_crates_index//:reqwest-0.12.28\"),\n \"rlsf\": Label(\"@oak_std_crates_index//:rlsf-0.2.2\"),\n \"rmcp\": Label(\"@oak_std_crates_index//:rmcp-0.8.5\"),\n \"rpassword\": Label(\"@oak_std_crates_index//:rpassword-7.4.0\"),\n \"rs_merkle\": Label(\"@oak_std_crates_index//:rs_merkle-1.5.0\"),\n \"rsa\": Label(\"@oak_std_crates_index//:rsa-0.9.10\"),\n \"rtnetlink\": Label(\"@oak_std_crates_index//:rtnetlink-0.14.1\"),\n \"rustls\": Label(\"@oak_std_crates_index//:rustls-0.23.38\"),\n \"rustls-pemfile\": Label(\"@oak_std_crates_index//:rustls-pemfile-2.2.0\"),\n \"rustls-pki-types\": Label(\"@oak_std_crates_index//:rustls-pki-types-1.14.0\"),\n \"self_cell\": Label(\"@oak_std_crates_index//:self_cell-1.2.2\"),\n \"serde\": Label(\"@oak_std_crates_index//:serde-1.0.228\"),\n \"serde_json\": Label(\"@oak_std_crates_index//:serde_json-1.0.149\"),\n \"sha2\": Label(\"@oak_std_crates_index//:sha2-0.10.9\"),\n \"sha3\": Label(\"@oak_std_crates_index//:sha3-0.10.9\"),\n \"signal-hook\": Label(\"@oak_std_crates_index//:signal-hook-0.3.18\"),\n \"signal-hook-tokio\": Label(\"@oak_std_crates_index//:signal-hook-tokio-0.3.1\"),\n \"spinning_top\": Label(\"@oak_std_crates_index//:spinning_top-0.3.0\"),\n \"static_assertions\": Label(\"@oak_std_crates_index//:static_assertions-1.1.0\"),\n \"strum\": Label(\"@oak_std_crates_index//:strum-0.27.2\"),\n \"syn\": Label(\"@oak_std_crates_index//:syn-2.0.117\"),\n \"syslog\": Label(\"@oak_std_crates_index//:syslog-6.1.1\"),\n \"tar\": Label(\"@oak_std_crates_index//:tar-0.4.45\"),\n \"tempfile\": Label(\"@oak_std_crates_index//:tempfile-3.27.0\"),\n \"thiserror\": Label(\"@oak_std_crates_index//:thiserror-2.0.18\"),\n \"tikv-jemallocator\": Label(\"@oak_std_crates_index//:tikv-jemallocator-0.5.4\"),\n \"tokio\": Label(\"@oak_std_crates_index//:tokio-1.52.1\"),\n \"tokio-stream\": Label(\"@oak_std_crates_index//:tokio-stream-0.1.18\"),\n \"tokio-tungstenite\": Label(\"@oak_std_crates_index//:tokio-tungstenite-0.27.0\"),\n \"tokio-util\": Label(\"@oak_std_crates_index//:tokio-util-0.7.18\"),\n \"tokio-vsock\": Label(\"@oak_std_crates_index//:tokio-vsock-0.7.2\"),\n \"toml\": Label(\"@oak_std_crates_index//:toml-0.8.23\"),\n \"tonic\": Label(\"@oak_std_crates_index//:tonic-0.14.5\"),\n \"tonic-prost\": Label(\"@oak_std_crates_index//:tonic-prost-0.14.5\"),\n \"tonic-prost-build\": Label(\"@oak_std_crates_index//:tonic-prost-build-0.14.5\"),\n \"tower\": Label(\"@oak_std_crates_index//:tower-0.4.13\"),\n \"tower-http\": Label(\"@oak_std_crates_index//:tower-http-0.6.8\"),\n \"tracing\": Label(\"@oak_std_crates_index//:tracing-0.1.44\"),\n \"tracing-subscriber\": Label(\"@oak_std_crates_index//:tracing-subscriber-0.3.23\"),\n \"tungstenite\": Label(\"@oak_std_crates_index//:tungstenite-0.27.0\"),\n \"uart_16550\": Label(\"@oak_std_crates_index//:uart_16550-0.3.2\"),\n \"ubyte\": Label(\"@oak_std_crates_index//:ubyte-0.10.4\"),\n \"ureq\": Label(\"@oak_std_crates_index//:ureq-2.12.1\"),\n \"url\": Label(\"@oak_std_crates_index//:url-2.5.8\"),\n \"waki\": Label(\"@oak_std_crates_index//:waki-0.5.1\"),\n \"walkdir\": Label(\"@oak_std_crates_index//:walkdir-2.5.0\"),\n \"wasmi\": Label(\"@oak_std_crates_index//:wasmi-0.31.2\"),\n \"wasmtime\": Label(\"@oak_std_crates_index//:wasmtime-32.0.1\"),\n \"wasmtime-wasi\": Label(\"@oak_std_crates_index//:wasmtime-wasi-32.0.1\"),\n \"wasmtime-wasi-http\": Label(\"@oak_std_crates_index//:wasmtime-wasi-http-32.0.1\"),\n \"which\": Label(\"@oak_std_crates_index//:which-5.0.0\"),\n \"wit-bindgen\": Label(\"@oak_std_crates_index//:wit-bindgen-0.33.0\"),\n \"x509-cert\": Label(\"@oak_std_crates_index//:x509-cert-0.2.5\"),\n \"x509-verify\": Label(\"@oak_std_crates_index//:x509-verify-0.4.8\"),\n \"x86_64\": Label(\"@oak_std_crates_index//:x86_64-0.15.4\"),\n \"xz2\": Label(\"@oak_std_crates_index//:xz2-0.1.7\"),\n \"yaml_serde\": Label(\"@oak_std_crates_index//:yaml_serde-0.10.4\"),\n \"zerocopy\": Label(\"@oak_std_crates_index//:zerocopy-0.8.48\"),\n \"zeroize\": Label(\"@oak_std_crates_index//:zeroize-1.8.2\"),\n },\n },\n}\n\n\n_NORMAL_ALIASES = {\n \"\": {\n _COMMON_CONDITION: {\n },\n },\n}\n\n\n_NORMAL_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_NORMAL_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n _COMMON_CONDITION: {\n \"async-trait\": Label(\"@oak_std_crates_index//:async-trait-0.1.89\"),\n \"criterion-macro\": Label(\"@oak_std_crates_index//:criterion-macro-0.4.0\"),\n \"prost-derive\": Label(\"@oak_std_crates_index//:prost-derive-0.14.3\"),\n \"rmcp-macros\": Label(\"@oak_std_crates_index//:rmcp-macros-0.8.5\"),\n \"time-macros\": Label(\"@oak_std_crates_index//:time-macros-0.2.18\"),\n },\n },\n}\n\n\n_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_PROC_MACRO_DEV_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_ALIASES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_DEPENDENCIES = {\n \"\": {\n },\n}\n\n\n_BUILD_PROC_MACRO_ALIASES = {\n \"\": {\n },\n}\n\n\n_CONDITIONS = {\n \"aarch64-apple-darwin\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"aarch64-linux-android\": [],\n \"aarch64-pc-windows-gnullvm\": [],\n \"aarch64-pc-windows-msvc\": [],\n \"aarch64-uwp-windows-msvc\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_os = \\\"windows\\\"))\": [],\n \"cfg(all(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), target_vendor = \\\"apple\\\", any(target_os = \\\"ios\\\", target_os = \\\"macos\\\", target_os = \\\"tvos\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(any(all(target_arch = \\\"aarch64\\\", target_endian = \\\"little\\\"), all(target_arch = \\\"arm\\\", target_endian = \\\"little\\\")), any(target_os = \\\"android\\\", target_os = \\\"linux\\\")))\": [],\n \"cfg(all(any(target_arch = \\\"x86_64\\\", target_arch = \\\"arm64ec\\\"), target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [],\n \"cfg(all(any(target_os = \\\"linux\\\", target_os = \\\"android\\\"), not(any(all(target_os = \\\"linux\\\", target_env = \\\"\\\"), getrandom_backend = \\\"custom\\\", getrandom_backend = \\\"linux_raw\\\", getrandom_backend = \\\"rdrand\\\", getrandom_backend = \\\"rndr\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(curve25519_dalek_backend = \\\"fiat\\\"), not(curve25519_dalek_backend = \\\"serial\\\"), target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(rustix_use_libc), not(miri), target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\"))))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", any(target_arch = \\\"s390x\\\", target_arch = \\\"powerpc\\\")), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc\\\"), all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \\\"linux\\\", any(target_endian = \\\"little\\\", target_arch = \\\"s390x\\\"), any(target_arch = \\\"arm\\\", all(target_arch = \\\"aarch64\\\", target_pointer_width = \\\"64\\\"), target_arch = \\\"riscv64\\\", all(rustix_use_experimental_asm, target_arch = \\\"powerpc64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"s390x\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips32r6\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64\\\"), all(rustix_use_experimental_asm, target_arch = \\\"mips64r6\\\"), target_arch = \\\"x86\\\", all(target_arch = \\\"x86_64\\\", target_pointer_width = \\\"64\\\")))))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"aarch64\\\", target_vendor = \\\"apple\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(all(target_arch = \\\"loongarch64\\\", target_os = \\\"linux\\\"))\": [],\n \"cfg(all(target_arch = \\\"wasm32\\\", not(target_os = \\\"wasi\\\")))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p2\\\"))\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(all(target_arch = \\\"wasm32\\\", target_os = \\\"wasi\\\", target_env = \\\"p3\\\"))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(target_abi = \\\"llvm\\\"), not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"gnu\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_arch = \\\"x86\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"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\"],\n \"cfg(all(target_arch = \\\"x86_64\\\", target_env = \\\"msvc\\\", not(windows_raw_dylib)))\": [],\n \"cfg(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\"))\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"cfg(all(target_os = \\\"uefi\\\", getrandom_backend = \\\"efi_rng\\\"))\": [],\n \"cfg(all(unix, not(target_os = \\\"macos\\\")))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any())\": [],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"aarch64\\\", target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"s390x\\\", target_arch = \\\"riscv64\\\"))\": [],\n \"cfg(any(target_arch = \\\"x86\\\", target_arch = \\\"x86_64\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_arch = \\\"x86_64\\\", target_arch = \\\"x86\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\"))\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"android\\\", target_os = \\\"linux\\\", target_os = \\\"macos\\\", target_os = \\\"hurd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"dragonfly\\\", target_os = \\\"freebsd\\\", target_os = \\\"hurd\\\", target_os = \\\"illumos\\\", target_os = \\\"cygwin\\\", all(target_os = \\\"horizon\\\", target_arch = \\\"arm\\\")))\": [],\n \"cfg(any(target_os = \\\"freebsd\\\", target_os = \\\"netbsd\\\"))\": [],\n \"cfg(any(target_os = \\\"haiku\\\", target_os = \\\"redox\\\", target_os = \\\"nto\\\", target_os = \\\"aix\\\"))\": [],\n \"cfg(any(target_os = \\\"ios\\\", target_os = \\\"visionos\\\", target_os = \\\"watchos\\\", target_os = \\\"tvos\\\"))\": [],\n \"cfg(any(target_os = \\\"linux\\\", target_vendor = \\\"apple\\\", target_os = \\\"freebsd\\\", target_os = \\\"android\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"ios\\\", target_os = \\\"freebsd\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(target_os = \\\"macos\\\", target_os = \\\"openbsd\\\", target_os = \\\"vita\\\", target_os = \\\"emscripten\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(any(unix, target_os = \\\"hermit\\\", target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(unix, target_os = \\\"wasi\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(any(windows, target_os = \\\"cygwin\\\"))\": [],\n \"cfg(any(windows, unix, target_os = \\\"redox\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(curve25519_dalek_backend = \\\"fiat\\\")\": [],\n \"cfg(not(all(target_arch = \\\"arm\\\", target_os = \\\"none\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(target_family = \\\"wasm\\\", target_os = \\\"unknown\\\")))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(all(windows, target_env = \\\"msvc\\\", not(target_vendor = \\\"uwp\\\"))))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_arch = \\\"wasm32\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(target_has_atomic = \\\"ptr\\\"))\": [],\n \"cfg(not(target_os = \\\"windows\\\"))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(not(windows_raw_dylib))\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_arch = \\\"aarch64\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_arch = \\\"spirv\\\")\": [],\n \"cfg(target_arch = \\\"wasm32\\\")\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\",\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_arch = \\\"x86_64\\\")\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\",\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"cfg(target_os = \\\"android\\\")\": [],\n \"cfg(target_os = \\\"haiku\\\")\": [],\n \"cfg(target_os = \\\"hermit\\\")\": [],\n \"cfg(target_os = \\\"macos\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(target_os = \\\"netbsd\\\")\": [],\n \"cfg(target_os = \\\"redox\\\")\": [],\n \"cfg(target_os = \\\"solaris\\\")\": [],\n \"cfg(target_os = \\\"vxworks\\\")\": [],\n \"cfg(target_os = \\\"wasi\\\")\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"cfg(target_os = \\\"windows\\\")\": [],\n \"cfg(target_vendor = \\\"apple\\\")\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\"],\n \"cfg(unix)\": [\"@rules_rust//rust/platform:aarch64-apple-darwin\",\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"cfg(windows)\": [],\n \"cfg(windows_raw_dylib)\": [],\n \"i686-pc-windows-gnu\": [],\n \"i686-pc-windows-gnullvm\": [],\n \"i686-pc-windows-msvc\": [],\n \"i686-uwp-windows-gnu\": [],\n \"i686-uwp-windows-msvc\": [],\n \"wasm32-unknown-unknown\": [\"@rules_rust//rust/platform:wasm32-unknown-unknown\"],\n \"wasm32-wasip2\": [\"@rules_rust//rust/platform:wasm32-wasip2\"],\n \"x86_64-pc-windows-gnu\": [],\n \"x86_64-pc-windows-gnullvm\": [],\n \"x86_64-pc-windows-msvc\": [],\n \"x86_64-unknown-linux-gnu\": [\"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\"],\n \"x86_64-unknown-none\": [\"@rules_rust//rust/platform:x86_64-unknown-none\"],\n \"x86_64-uwp-windows-gnu\": [],\n \"x86_64-uwp-windows-msvc\": [],\n}\n\n###############################################################################\n\ndef crate_repositories():\n \"\"\"A macro for defining repositories for all generated crates.\n\n Returns:\n A list of repos visible to the module through the module extension.\n \"\"\"\n maybe(\n http_archive,\n name = \"oak_std_crates_index__acpi-5.2.0\",\n sha256 = \"94476c7ef97af4c4d998b3f422c1b01d5211aad57c80ed200baf148d1f1efab6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/acpi/5.2.0/download\"],\n strip_prefix = \"acpi-5.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.acpi-5.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.24.2\",\n sha256 = \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.24.2/download\"],\n strip_prefix = \"addr2line-0.24.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.24.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__addr2line-0.25.1\",\n sha256 = \"1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/addr2line/0.25.1/download\"],\n strip_prefix = \"addr2line-0.25.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.addr2line-0.25.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__adler2-2.0.1\",\n sha256 = \"320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/adler2/2.0.1/download\"],\n strip_prefix = \"adler2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.adler2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aead-0.5.2\",\n sha256 = \"d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aead/0.5.2/download\"],\n strip_prefix = \"aead-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aead-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-0.8.4\",\n sha256 = \"b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes/0.8.4/download\"],\n strip_prefix = \"aes-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aes-gcm-0.10.3\",\n sha256 = \"831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aes-gcm/0.10.3/download\"],\n strip_prefix = \"aes-gcm-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aes-gcm-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ahash-0.8.12\",\n sha256 = \"5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ahash/0.8.12/download\"],\n strip_prefix = \"ahash-0.8.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ahash-0.8.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aho-corasick-1.1.4\",\n sha256 = \"ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aho-corasick/1.1.4/download\"],\n strip_prefix = \"aho-corasick-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aho-corasick-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aliasable-0.1.3\",\n sha256 = \"250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aliasable/0.1.3/download\"],\n strip_prefix = \"aliasable-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aliasable-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aligned-vec-0.6.4\",\n sha256 = \"dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aligned-vec/0.6.4/download\"],\n strip_prefix = \"aligned-vec-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aligned-vec-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__allocator-api2-0.2.21\",\n sha256 = \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/allocator-api2/0.2.21/download\"],\n strip_prefix = \"allocator-api2-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.allocator-api2-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ambient-authority-0.0.2\",\n sha256 = \"e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ambient-authority/0.0.2/download\"],\n strip_prefix = \"ambient-authority-0.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ambient-authority-0.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__aml-0.16.4\",\n sha256 = \"c4f8cba7d4260ea05671dda81029f6f718b54402a4ec926a0d9a41bdbb96b415\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/aml/0.16.4/download\"],\n strip_prefix = \"aml-0.16.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.aml-0.16.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__android_system_properties-0.1.5\",\n sha256 = \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/android_system_properties/0.1.5/download\"],\n strip_prefix = \"android_system_properties-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.android_system_properties-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anes-0.1.6\",\n sha256 = \"4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anes/0.1.6/download\"],\n strip_prefix = \"anes-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anes-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstream-1.0.0\",\n sha256 = \"824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstream/1.0.0/download\"],\n strip_prefix = \"anstream-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstream-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-1.0.14\",\n sha256 = \"940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle/1.0.14/download\"],\n strip_prefix = \"anstyle-1.0.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-1.0.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-parse-1.0.0\",\n sha256 = \"52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-parse/1.0.0/download\"],\n strip_prefix = \"anstyle-parse-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-parse-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-query-1.1.5\",\n sha256 = \"40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-query/1.1.5/download\"],\n strip_prefix = \"anstyle-query-1.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-query-1.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anstyle-wincon-3.0.11\",\n sha256 = \"291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anstyle-wincon/3.0.11/download\"],\n strip_prefix = \"anstyle-wincon-3.0.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anstyle-wincon-3.0.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__anyhow-1.0.102\",\n sha256 = \"7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/anyhow/1.0.102/download\"],\n strip_prefix = \"anyhow-1.0.102\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.anyhow-1.0.102.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ar_archive_writer-0.5.1\",\n sha256 = \"7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ar_archive_writer/0.5.1/download\"],\n strip_prefix = \"ar_archive_writer-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ar_archive_writer-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arbitrary-1.4.2\",\n sha256 = \"c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arbitrary/1.4.2/download\"],\n strip_prefix = \"arbitrary-1.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arbitrary-1.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__arrayvec-0.7.6\",\n sha256 = \"7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/arrayvec/0.7.6/download\"],\n strip_prefix = \"arrayvec-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.arrayvec-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-0.6.2\",\n sha256 = \"5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs/0.6.2/download\"],\n strip_prefix = \"asn1-rs-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-derive-0.5.1\",\n sha256 = \"965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-derive/0.5.1/download\"],\n strip_prefix = \"asn1-rs-derive-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-derive-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__asn1-rs-impl-0.2.0\",\n sha256 = \"7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/asn1-rs-impl/0.2.0/download\"],\n strip_prefix = \"asn1-rs-impl-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.asn1-rs-impl-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__assertables-7.0.1\",\n sha256 = \"0c24e9d990669fbd16806bff449e4ac644fd9b1fca014760087732fe4102f131\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/assertables/7.0.1/download\"],\n strip_prefix = \"assertables-7.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.assertables-7.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-0.3.6\",\n sha256 = \"0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream/0.3.6/download\"],\n strip_prefix = \"async-stream-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-stream-impl-0.3.6\",\n sha256 = \"c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-stream-impl/0.3.6/download\"],\n strip_prefix = \"async-stream-impl-0.3.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-stream-impl-0.3.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__async-trait-0.1.89\",\n sha256 = \"9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/async-trait/0.1.89/download\"],\n strip_prefix = \"async-trait-0.1.89\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.async-trait-0.1.89.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic-waker-1.1.2\",\n sha256 = \"1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic-waker/1.1.2/download\"],\n strip_prefix = \"atomic-waker-1.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic-waker-1.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__atomic_refcell-0.1.14\",\n sha256 = \"21e4227379beff4205943696e6c3e0cd809bacdf3f0edd6e3dd153e2269571a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/atomic_refcell/0.1.14/download\"],\n strip_prefix = \"atomic_refcell-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.atomic_refcell-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__autocfg-1.5.0\",\n sha256 = \"c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/autocfg/1.5.0/download\"],\n strip_prefix = \"autocfg-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.autocfg-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.7.9\",\n sha256 = \"edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.7.9/download\"],\n strip_prefix = \"axum-0.7.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.7.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-0.8.9\",\n sha256 = \"31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum/0.8.9/download\"],\n strip_prefix = \"axum-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.4.5\",\n sha256 = \"09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.4.5/download\"],\n strip_prefix = \"axum-core-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__axum-core-0.5.6\",\n sha256 = \"08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/axum-core/0.5.6/download\"],\n strip_prefix = \"axum-core-0.5.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.axum-core-0.5.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__backtrace-0.3.76\",\n sha256 = \"bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/backtrace/0.3.76/download\"],\n strip_prefix = \"backtrace-0.3.76\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.backtrace-0.3.76.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base16ct-0.2.0\",\n sha256 = \"4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base16ct/0.2.0/download\"],\n strip_prefix = \"base16ct-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base16ct-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.13.1\",\n sha256 = \"9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.13.1/download\"],\n strip_prefix = \"base64-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.21.7\",\n sha256 = \"9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.21.7/download\"],\n strip_prefix = \"base64-0.21.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.21.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64-0.22.1\",\n sha256 = \"72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64/0.22.1/download\"],\n strip_prefix = \"base64-0.22.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64-0.22.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__base64ct-1.8.3\",\n sha256 = \"2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/base64ct/1.8.3/download\"],\n strip_prefix = \"base64ct-1.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.base64ct-1.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bincode-1.3.3\",\n sha256 = \"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bincode/1.3.3/download\"],\n strip_prefix = \"bincode-1.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bincode-1.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-set-0.8.0\",\n sha256 = \"08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-set/0.8.0/download\"],\n strip_prefix = \"bit-set-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-set-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit-vec-0.8.0\",\n sha256 = \"5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit-vec/0.8.0/download\"],\n strip_prefix = \"bit-vec-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit-vec-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bit_field-0.10.3\",\n sha256 = \"1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bit_field/0.10.3/download\"],\n strip_prefix = \"bit_field-0.10.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bit_field-0.10.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-1.3.2\",\n sha256 = \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/1.3.2/download\"],\n strip_prefix = \"bitflags-1.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-1.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitflags-2.11.1\",\n sha256 = \"c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitflags/2.11.1/download\"],\n strip_prefix = \"bitflags-2.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitflags-2.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bitvec-1.0.1\",\n sha256 = \"1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bitvec/1.0.1/download\"],\n strip_prefix = \"bitvec-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bitvec-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__block-buffer-0.10.4\",\n sha256 = \"3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/block-buffer/0.10.4/download\"],\n strip_prefix = \"block-buffer-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.block-buffer-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bumpalo-3.20.2\",\n sha256 = \"5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bumpalo/3.20.2/download\"],\n strip_prefix = \"bumpalo-3.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bumpalo-3.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytemuck-1.25.0\",\n sha256 = \"c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytemuck/1.25.0/download\"],\n strip_prefix = \"bytemuck-1.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytemuck-1.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__byteorder-1.5.0\",\n sha256 = \"1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/byteorder/1.5.0/download\"],\n strip_prefix = \"byteorder-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.byteorder-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__bytes-1.11.1\",\n sha256 = \"1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/bytes/1.11.1/download\"],\n strip_prefix = \"bytes-1.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.bytes-1.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-fs-ext-3.4.5\",\n sha256 = \"d5528f85b1e134ae811704e41ef80930f56e795923f866813255bc342cc20654\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-fs-ext/3.4.5/download\"],\n strip_prefix = \"cap-fs-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-fs-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-net-ext-3.4.5\",\n sha256 = \"20a158160765c6a7d0d8c072a53d772e4cb243f38b04bfcf6b4939cfbe7482e7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-net-ext/3.4.5/download\"],\n strip_prefix = \"cap-net-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-net-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-primitives-3.4.5\",\n sha256 = \"b6cf3aea8a5081171859ef57bc1606b1df6999df4f1110f8eef68b30098d1d3a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-primitives/3.4.5/download\"],\n strip_prefix = \"cap-primitives-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-primitives-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-rand-3.4.5\",\n sha256 = \"d8144c22e24bbcf26ade86cb6501a0916c46b7e4787abdb0045a467eb1645a1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-rand/3.4.5/download\"],\n strip_prefix = \"cap-rand-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-rand-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-std-3.4.5\",\n sha256 = \"b6dc3090992a735d23219de5c204927163d922f42f575a0189b005c62d37549a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-std/3.4.5/download\"],\n strip_prefix = \"cap-std-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-std-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cap-time-ext-3.4.5\",\n sha256 = \"def102506ce40c11710a9b16e614af0cde8e76ae51b1f48c04b8d79f4b671a80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cap-time-ext/3.4.5/download\"],\n strip_prefix = \"cap-time-ext-3.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cap-time-ext-3.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cast-0.3.0\",\n sha256 = \"37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cast/0.3.0/download\"],\n strip_prefix = \"cast-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cast-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cc-1.2.60\",\n sha256 = \"43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cc/1.2.60/download\"],\n strip_prefix = \"cc-1.2.60\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cc-1.2.60.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cesu8-1.1.0\",\n sha256 = \"6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cesu8/1.1.0/download\"],\n strip_prefix = \"cesu8-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cesu8-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg-if-1.0.4\",\n sha256 = \"9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg-if/1.0.4/download\"],\n strip_prefix = \"cfg-if-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg-if-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cfg_aliases-0.2.1\",\n sha256 = \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cfg_aliases/0.2.1/download\"],\n strip_prefix = \"cfg_aliases-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cfg_aliases-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20-0.9.1\",\n sha256 = \"c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20/0.9.1/download\"],\n strip_prefix = \"chacha20-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chacha20poly1305-0.10.1\",\n sha256 = \"10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chacha20poly1305/0.10.1/download\"],\n strip_prefix = \"chacha20poly1305-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chacha20poly1305-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__chrono-0.4.44\",\n sha256 = \"c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/chrono/0.4.44/download\"],\n strip_prefix = \"chrono-0.4.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.chrono-0.4.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-0.2.2\",\n sha256 = \"42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium/0.2.2/download\"],\n strip_prefix = \"ciborium-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-io-0.2.2\",\n sha256 = \"05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-io/0.2.2/download\"],\n strip_prefix = \"ciborium-io-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-io-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ciborium-ll-0.2.2\",\n sha256 = \"57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ciborium-ll/0.2.2/download\"],\n strip_prefix = \"ciborium-ll-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ciborium-ll-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cipher-0.4.4\",\n sha256 = \"773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cipher/0.4.4/download\"],\n strip_prefix = \"cipher-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cipher-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap-4.6.1\",\n sha256 = \"1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap/4.6.1/download\"],\n strip_prefix = \"clap-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_builder-4.6.0\",\n sha256 = \"714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_builder/4.6.0/download\"],\n strip_prefix = \"clap_builder-4.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_builder-4.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_derive-4.6.1\",\n sha256 = \"f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_derive/4.6.1/download\"],\n strip_prefix = \"clap_derive-4.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_derive-4.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__clap_lex-1.1.0\",\n sha256 = \"c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/clap_lex/1.1.0/download\"],\n strip_prefix = \"clap_lex-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.clap_lex-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cobs-0.3.0\",\n sha256 = \"0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cobs/0.3.0/download\"],\n strip_prefix = \"cobs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cobs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colorchoice-1.0.5\",\n sha256 = \"1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colorchoice/1.0.5/download\"],\n strip_prefix = \"colorchoice-1.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colorchoice-1.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__colored-2.2.0\",\n sha256 = \"117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/colored/2.2.0/download\"],\n strip_prefix = \"colored-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.colored-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__combine-4.6.7\",\n sha256 = \"ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/combine/4.6.7/download\"],\n strip_prefix = \"combine-4.6.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.combine-4.6.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-fds-0.3.3\",\n sha256 = \"1b60b5124979fccd9addd89d8b97a1d6eebb4950694520c75ddd722535ea443f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-fds/0.3.3/download\"],\n strip_prefix = \"command-fds-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-fds-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__command-group-5.0.1\",\n sha256 = \"a68fa787550392a9d58f44c21a3022cfb3ea3e2458b7f85d3b399d0ceeccf409\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/command-group/5.0.1/download\"],\n strip_prefix = \"command-group-5.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.command-group-5.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__console-0.15.11\",\n sha256 = \"054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/console/0.15.11/download\"],\n strip_prefix = \"console-0.15.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.console-0.15.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-default-1.0.0\",\n sha256 = \"0b396d1f76d455557e1218ec8066ae14bba60b4b36ecd55577ba979f5db7ecaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-default/1.0.0/download\"],\n strip_prefix = \"const-default-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-default-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-hex-1.18.1\",\n sha256 = \"531185e432bb31db1ecda541e9e7ab21468d4d844ad7505e0546a49b4945d49b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-hex/1.18.1/download\"],\n strip_prefix = \"const-hex-1.18.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-hex-1.18.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const-oid-0.9.6\",\n sha256 = \"c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const-oid/0.9.6/download\"],\n strip_prefix = \"const-oid-0.9.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const-oid-0.9.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_fn-0.4.12\",\n sha256 = \"413d67b29ef1021b4d60f4aa1e925ca031751e213832b4b1d588fae623c05c60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_fn/0.4.12/download\"],\n strip_prefix = \"const_fn-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_fn-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format-0.2.36\",\n sha256 = \"4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format/0.2.36/download\"],\n strip_prefix = \"const_format-0.2.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format-0.2.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__const_format_proc_macros-0.2.34\",\n sha256 = \"1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/const_format_proc_macros/0.2.34/download\"],\n strip_prefix = \"const_format_proc_macros-0.2.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.const_format_proc_macros-0.2.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.10.1\",\n sha256 = \"b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.10.1/download\"],\n strip_prefix = \"core-foundation-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-0.9.4\",\n sha256 = \"91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation/0.9.4/download\"],\n strip_prefix = \"core-foundation-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__core-foundation-sys-0.8.7\",\n sha256 = \"773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/core-foundation-sys/0.8.7/download\"],\n strip_prefix = \"core-foundation-sys-0.8.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.core-foundation-sys-0.8.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__coset-0.3.8\",\n sha256 = \"f4c8cc80f631f8307b887faca24dcc3abc427cd0367f6eb6188f6e8f5b7ad8fb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/coset/0.3.8/download\"],\n strip_prefix = \"coset-0.3.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.coset-0.3.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpp_demangle-0.4.5\",\n sha256 = \"f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpp_demangle/0.4.5/download\"],\n strip_prefix = \"cpp_demangle-0.4.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpp_demangle-0.4.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cpufeatures-0.2.17\",\n sha256 = \"59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cpufeatures/0.2.17/download\"],\n strip_prefix = \"cpufeatures-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cpufeatures-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-0.119.1\",\n sha256 = \"359c047862387091eb0363ce8b5cabb4a8be1cc16a6fa151fe079c09796461f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-assembler-x64-meta-0.119.1\",\n sha256 = \"6bf62afda29fcde09d922f125a7d47880b540fd1de069558bfa637b4ce7aa1ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-assembler-x64-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-assembler-x64-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-assembler-x64-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bforest-0.119.1\",\n sha256 = \"3537273471ebdae55791869ee16f71a4a51e34ad47cdc64269a9c2255b5dce03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bforest/0.119.1/download\"],\n strip_prefix = \"cranelift-bforest-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bforest-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-bitset-0.119.1\",\n sha256 = \"b872fde1717c508f842ad1ad8768fbe16caf7e8e049215b0e09429bbf00d3ce9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-bitset/0.119.1/download\"],\n strip_prefix = \"cranelift-bitset-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-bitset-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-0.119.1\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/cranelift-codegen:patch_build_rs.patch\",\n ],\n sha256 = \"52a74ef998eb9f985dc0d987d3aac0fe4bd1b59ec707461b2d6d20cda1b0a5e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-meta-0.119.1\",\n sha256 = \"7a04a532b9a7b69c28e7e37d15bca7f7f5cc56399df890ec399333e2d548004a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-meta/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-meta-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-meta-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-codegen-shared-0.119.1\",\n sha256 = \"95c4556174c6eb7d586bd1715b7f9c3a43a0835d6a95715893718b2f263af895\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-codegen-shared/0.119.1/download\"],\n strip_prefix = \"cranelift-codegen-shared-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-codegen-shared-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-control-0.119.1\",\n sha256 = \"18d8e9ae221e352dbea7f6f389705365f8128e7e0a7de5cf787ab7b2ccd1c522\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-control/0.119.1/download\"],\n strip_prefix = \"cranelift-control-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-control-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-entity-0.119.1\",\n sha256 = \"40d10b531267cc86ba4fbb7b718b646df503713828b37841a867f332954b24ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-entity/0.119.1/download\"],\n strip_prefix = \"cranelift-entity-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-entity-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-frontend-0.119.1\",\n sha256 = \"07540e6f75357d655743008965018fe243434ec6755078794616fde31f783a03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-frontend/0.119.1/download\"],\n strip_prefix = \"cranelift-frontend-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-frontend-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-isle-0.119.1\",\n sha256 = \"3e0909e87af454a7ff542ece2d66f901f2cc9483ab36572a924eb5e58ce51fc0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-isle/0.119.1/download\"],\n strip_prefix = \"cranelift-isle-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-isle-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-native-0.119.1\",\n sha256 = \"5f2d3963401ea1f8f84bdb0b654f1ca186be97e6ca94ccd2a8037b9edee47e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-native/0.119.1/download\"],\n strip_prefix = \"cranelift-native-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-native-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__cranelift-srcgen-0.119.1\",\n sha256 = \"823558b0a406b7f7d5dad0c925b29e8192792476faaa71615d40cb5a842a9040\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/cranelift-srcgen/0.119.1/download\"],\n strip_prefix = \"cranelift-srcgen-0.119.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.cranelift-srcgen-0.119.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crc32fast-1.5.0\",\n sha256 = \"9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crc32fast/1.5.0/download\"],\n strip_prefix = \"crc32fast-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crc32fast-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-0.5.1\",\n sha256 = \"f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion/0.5.1/download\"],\n strip_prefix = \"criterion-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-macro-0.4.0\",\n sha256 = \"288a8f36b28a19d7dbd572c76006c0a0eba1f3bf912a254dda211c6f665e7ffc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-macro/0.4.0/download\"],\n strip_prefix = \"criterion-macro-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-macro-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__criterion-plot-0.5.0\",\n sha256 = \"6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/criterion-plot/0.5.0/download\"],\n strip_prefix = \"criterion-plot-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.criterion-plot-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-deque-0.8.6\",\n sha256 = \"9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-deque/0.8.6/download\"],\n strip_prefix = \"crossbeam-deque-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-deque-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-epoch-0.9.18\",\n sha256 = \"5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-epoch/0.9.18/download\"],\n strip_prefix = \"crossbeam-epoch-0.9.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-epoch-0.9.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crossbeam-utils-0.8.21\",\n sha256 = \"d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crossbeam-utils/0.8.21/download\"],\n strip_prefix = \"crossbeam-utils-0.8.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crossbeam-utils-0.8.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crunchy-0.2.4\",\n sha256 = \"460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crunchy/0.2.4/download\"],\n strip_prefix = \"crunchy-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crunchy-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-bigint-0.5.5\",\n sha256 = \"0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-bigint/0.5.5/download\"],\n strip_prefix = \"crypto-bigint-0.5.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-bigint-0.5.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__crypto-common-0.1.7\",\n sha256 = \"78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/crypto-common/0.1.7/download\"],\n strip_prefix = \"crypto-common-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.crypto-common-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ctr-0.9.2\",\n sha256 = \"0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ctr/0.9.2/download\"],\n strip_prefix = \"ctr-0.9.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ctr-0.9.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-4.1.3\",\n sha256 = \"97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek/4.1.3/download\"],\n strip_prefix = \"curve25519-dalek-4.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-4.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__curve25519-dalek-derive-0.1.1\",\n sha256 = \"f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/curve25519-dalek-derive/0.1.1/download\"],\n strip_prefix = \"curve25519-dalek-derive-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.curve25519-dalek-derive-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.20.11\",\n sha256 = \"fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.20.11/download\"],\n strip_prefix = \"darling-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling-0.21.3\",\n sha256 = \"9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling/0.21.3/download\"],\n strip_prefix = \"darling-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.20.11\",\n sha256 = \"0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.20.11/download\"],\n strip_prefix = \"darling_core-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_core-0.21.3\",\n sha256 = \"1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_core/0.21.3/download\"],\n strip_prefix = \"darling_core-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_core-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.20.11\",\n sha256 = \"fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.20.11/download\"],\n strip_prefix = \"darling_macro-0.20.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.20.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__darling_macro-0.21.3\",\n sha256 = \"d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/darling_macro/0.21.3/download\"],\n strip_prefix = \"darling_macro-0.21.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.darling_macro-0.21.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__data-encoding-2.10.0\",\n sha256 = \"d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/data-encoding/2.10.0/download\"],\n strip_prefix = \"data-encoding-2.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.data-encoding-2.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__debugid-0.8.0\",\n sha256 = \"bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/debugid/0.8.0/download\"],\n strip_prefix = \"debugid-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.debugid-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-0.7.10\",\n sha256 = \"e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der/0.7.10/download\"],\n strip_prefix = \"der-0.7.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-0.7.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der-parser-9.0.0\",\n sha256 = \"5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der-parser/9.0.0/download\"],\n strip_prefix = \"der-parser-9.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der-parser-9.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__der_derive-0.7.3\",\n sha256 = \"8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/der_derive/0.7.3/download\"],\n strip_prefix = \"der_derive-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.der_derive-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__deranged-0.3.11\",\n sha256 = \"b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/deranged/0.3.11/download\"],\n strip_prefix = \"deranged-0.3.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.deranged-0.3.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder-0.20.2\",\n sha256 = \"507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder/0.20.2/download\"],\n strip_prefix = \"derive_builder-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_core-0.20.2\",\n sha256 = \"2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_core/0.20.2/download\"],\n strip_prefix = \"derive_builder_core-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_core-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__derive_builder_macro-0.20.2\",\n sha256 = \"ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/derive_builder_macro/0.20.2/download\"],\n strip_prefix = \"derive_builder_macro-0.20.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.derive_builder_macro-0.20.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__digest-0.10.7\",\n sha256 = \"9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/digest/0.10.7/download\"],\n strip_prefix = \"digest-0.10.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.digest-0.10.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__directories-next-2.0.0\",\n sha256 = \"339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/directories-next/2.0.0/download\"],\n strip_prefix = \"directories-next-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.directories-next-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-4.0.0\",\n sha256 = \"ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs/4.0.0/download\"],\n strip_prefix = \"dirs-4.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-4.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-0.3.7\",\n sha256 = \"1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys/0.3.7/download\"],\n strip_prefix = \"dirs-sys-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dirs-sys-next-0.1.2\",\n sha256 = \"4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dirs-sys-next/0.1.2/download\"],\n strip_prefix = \"dirs-sys-next-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dirs-sys-next-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__displaydoc-0.2.5\",\n sha256 = \"97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/displaydoc/0.2.5/download\"],\n strip_prefix = \"displaydoc-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.displaydoc-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-0.11.0\",\n sha256 = \"1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast/0.11.0/download\"],\n strip_prefix = \"downcast-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__downcast-rs-1.2.1\",\n sha256 = \"75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/downcast-rs/1.2.1/download\"],\n strip_prefix = \"downcast-rs-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.downcast-rs-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__dyn-clone-1.0.20\",\n sha256 = \"d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/dyn-clone/1.0.20/download\"],\n strip_prefix = \"dyn-clone-1.0.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.dyn-clone-1.0.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ecdsa-0.16.9\",\n sha256 = \"ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ecdsa/0.16.9/download\"],\n strip_prefix = \"ecdsa-0.16.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ecdsa-0.16.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-2.2.3\",\n sha256 = \"115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519/2.2.3/download\"],\n strip_prefix = \"ed25519-2.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-2.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ed25519-dalek-2.2.0\",\n sha256 = \"70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ed25519-dalek/2.2.0/download\"],\n strip_prefix = \"ed25519-dalek-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ed25519-dalek-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__either-1.15.0\",\n sha256 = \"48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/either/1.15.0/download\"],\n strip_prefix = \"either-1.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.either-1.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elf-0.7.4\",\n sha256 = \"4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elf/0.7.4/download\"],\n strip_prefix = \"elf-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elf-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__elliptic-curve-0.13.8\",\n sha256 = \"b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/elliptic-curve/0.13.8/download\"],\n strip_prefix = \"elliptic-curve-0.13.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.elliptic-curve-0.13.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.4.0\",\n sha256 = \"ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.4.0/download\"],\n strip_prefix = \"embedded-io-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__embedded-io-0.6.1\",\n sha256 = \"edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/embedded-io/0.6.1/download\"],\n strip_prefix = \"embedded-io-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.embedded-io-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encode_unicode-1.0.0\",\n sha256 = \"34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encode_unicode/1.0.0/download\"],\n strip_prefix = \"encode_unicode-1.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encode_unicode-1.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__encoding_rs-0.8.35\",\n sha256 = \"75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/encoding_rs/0.8.35/download\"],\n strip_prefix = \"encoding_rs-0.8.35\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.encoding_rs-0.8.35.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_filter-1.0.1\",\n sha256 = \"32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_filter/1.0.1/download\"],\n strip_prefix = \"env_filter-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_filter-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__env_logger-0.11.10\",\n sha256 = \"0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/env_logger/0.11.10/download\"],\n strip_prefix = \"env_logger-0.11.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.env_logger-0.11.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-0.4.2\",\n sha256 = \"4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator/0.4.2/download\"],\n strip_prefix = \"equator-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equator-macro-0.4.2\",\n sha256 = \"44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equator-macro/0.4.2/download\"],\n strip_prefix = \"equator-macro-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equator-macro-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__equivalent-1.0.2\",\n sha256 = \"877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/equivalent/1.0.2/download\"],\n strip_prefix = \"equivalent-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.equivalent-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__errno-0.3.14\",\n sha256 = \"39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/errno/0.3.14/download\"],\n strip_prefix = \"errno-0.3.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.errno-0.3.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__error-chain-0.12.4\",\n sha256 = \"2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/error-chain/0.12.4/download\"],\n strip_prefix = \"error-chain-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.error-chain-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fallible-iterator-0.3.0\",\n sha256 = \"2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fallible-iterator/0.3.0/download\"],\n strip_prefix = \"fallible-iterator-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fallible-iterator-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fastrand-2.4.1\",\n sha256 = \"9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fastrand/2.4.1/download\"],\n strip_prefix = \"fastrand-2.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fastrand-2.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fd-lock-4.0.4\",\n sha256 = \"0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fd-lock/4.0.4/download\"],\n strip_prefix = \"fd-lock-4.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fd-lock-4.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ff-0.13.1\",\n sha256 = \"c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ff/0.13.1/download\"],\n strip_prefix = \"ff-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ff-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fiat-crypto-0.2.9\",\n sha256 = \"28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fiat-crypto/0.2.9/download\"],\n strip_prefix = \"fiat-crypto-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fiat-crypto-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__filetime-0.2.27\",\n sha256 = \"f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/filetime/0.2.27/download\"],\n strip_prefix = \"filetime-0.2.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.filetime-0.2.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__find-msvc-tools-0.1.9\",\n sha256 = \"5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/find-msvc-tools/0.1.9/download\"],\n strip_prefix = \"find-msvc-tools-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.find-msvc-tools-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__findshlibs-0.10.2\",\n sha256 = \"40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/findshlibs/0.10.2/download\"],\n strip_prefix = \"findshlibs-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.findshlibs-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.4.2\",\n sha256 = \"0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.4.2/download\"],\n strip_prefix = \"fixedbitset-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fixedbitset-0.5.7\",\n sha256 = \"1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fixedbitset/0.5.7/download\"],\n strip_prefix = \"fixedbitset-0.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fixedbitset-0.5.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flagset-0.4.7\",\n sha256 = \"b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flagset/0.4.7/download\"],\n strip_prefix = \"flagset-0.4.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flagset-0.4.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__flate2-1.1.9\",\n sha256 = \"843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/flate2/1.1.9/download\"],\n strip_prefix = \"flate2-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.flate2-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fnv-1.0.7\",\n sha256 = \"3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fnv/1.0.7/download\"],\n strip_prefix = \"fnv-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fnv-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foldhash-0.1.5\",\n sha256 = \"d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foldhash/0.1.5/download\"],\n strip_prefix = \"foldhash-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foldhash-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-0.3.2\",\n sha256 = \"f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types/0.3.2/download\"],\n strip_prefix = \"foreign-types-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__foreign-types-shared-0.1.1\",\n sha256 = \"00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/foreign-types-shared/0.1.1/download\"],\n strip_prefix = \"foreign-types-shared-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.foreign-types-shared-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__form_urlencoded-1.2.2\",\n sha256 = \"cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/form_urlencoded/1.2.2/download\"],\n strip_prefix = \"form_urlencoded-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.form_urlencoded-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fragile-2.1.0\",\n sha256 = \"8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fragile/2.1.0/download\"],\n strip_prefix = \"fragile-2.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fragile-2.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__fs-set-times-0.20.3\",\n sha256 = \"94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/fs-set-times/0.20.3/download\"],\n strip_prefix = \"fs-set-times-0.20.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.fs-set-times-0.20.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__funty-2.0.0\",\n sha256 = \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/funty/2.0.0/download\"],\n strip_prefix = \"funty-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.funty-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-0.3.32\",\n sha256 = \"8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures/0.3.32/download\"],\n strip_prefix = \"futures-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-channel-0.3.32\",\n sha256 = \"07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-channel/0.3.32/download\"],\n strip_prefix = \"futures-channel-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-channel-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-core-0.3.32\",\n sha256 = \"7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-core/0.3.32/download\"],\n strip_prefix = \"futures-core-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-core-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-executor-0.3.32\",\n sha256 = \"baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-executor/0.3.32/download\"],\n strip_prefix = \"futures-executor-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-executor-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-io-0.3.32\",\n sha256 = \"cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-io/0.3.32/download\"],\n strip_prefix = \"futures-io-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-io-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-macro-0.3.32\",\n sha256 = \"e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-macro/0.3.32/download\"],\n strip_prefix = \"futures-macro-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-macro-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-sink-0.3.32\",\n sha256 = \"c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-sink/0.3.32/download\"],\n strip_prefix = \"futures-sink-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-sink-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-task-0.3.32\",\n sha256 = \"037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-task/0.3.32/download\"],\n strip_prefix = \"futures-task-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-task-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__futures-util-0.3.32\",\n sha256 = \"389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/futures-util/0.3.32/download\"],\n strip_prefix = \"futures-util-0.3.32\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.futures-util-0.3.32.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__generic-array-0.14.7\",\n sha256 = \"85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/generic-array/0.14.7/download\"],\n strip_prefix = \"generic-array-0.14.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.generic-array-0.14.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.2.17\",\n sha256 = \"ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.2.17/download\"],\n strip_prefix = \"getrandom-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.3.4\",\n sha256 = \"899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.3.4/download\"],\n strip_prefix = \"getrandom-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getrandom-0.4.2\",\n sha256 = \"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getrandom/0.4.2/download\"],\n strip_prefix = \"getrandom-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getrandom-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__getset-0.1.6\",\n sha256 = \"9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/getset/0.1.6/download\"],\n strip_prefix = \"getset-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.getset-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ghash-0.5.1\",\n sha256 = \"f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ghash/0.5.1/download\"],\n strip_prefix = \"ghash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ghash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.31.1\",\n sha256 = \"07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.31.1/download\"],\n strip_prefix = \"gimli-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__gimli-0.32.3\",\n sha256 = \"e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/gimli/0.32.3/download\"],\n strip_prefix = \"gimli-0.32.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.gimli-0.32.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__goblin-0.8.2\",\n sha256 = \"1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/goblin/0.8.2/download\"],\n strip_prefix = \"goblin-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.goblin-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest-0.14.2\",\n sha256 = \"06597b7d02ee58b9a37f522785ac15b9e18c6b178747c4439a6c03fbb35ea753\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest/0.14.2/download\"],\n strip_prefix = \"googletest-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__googletest_macro-0.14.2\",\n sha256 = \"c31d9f07c9c19b855faebf71637be3b43f8e13a518aece5d61a3beee7710b4ef\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/googletest_macro/0.14.2/download\"],\n strip_prefix = \"googletest_macro-0.14.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.googletest_macro-0.14.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__group-0.13.0\",\n sha256 = \"f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/group/0.13.0/download\"],\n strip_prefix = \"group-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.group-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__h2-0.4.13\",\n sha256 = \"2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/h2/0.4.13/download\"],\n strip_prefix = \"h2-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.h2-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__half-2.7.1\",\n sha256 = \"6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/half/2.7.1/download\"],\n strip_prefix = \"half-2.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.half-2.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.14.5\",\n sha256 = \"e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.14.5/download\"],\n strip_prefix = \"hashbrown-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.15.5\",\n sha256 = \"9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.15.5/download\"],\n strip_prefix = \"hashbrown-0.15.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.15.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hashbrown-0.17.0\",\n sha256 = \"4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hashbrown/0.17.0/download\"],\n strip_prefix = \"hashbrown-0.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hashbrown-0.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.4.1\",\n sha256 = \"95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.4.1/download\"],\n strip_prefix = \"heck-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__heck-0.5.0\",\n sha256 = \"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/heck/0.5.0/download\"],\n strip_prefix = \"heck-0.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.heck-0.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hermit-abi-0.5.2\",\n sha256 = \"fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hermit-abi/0.5.2/download\"],\n strip_prefix = \"hermit-abi-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hermit-abi-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hex-0.4.3\",\n sha256 = \"7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hex/0.4.3/download\"],\n strip_prefix = \"hex-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hex-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hkdf-0.12.4\",\n sha256 = \"7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hkdf/0.12.4/download\"],\n strip_prefix = \"hkdf-0.12.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hkdf-0.12.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hmac-0.12.1\",\n sha256 = \"6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hmac/0.12.1/download\"],\n strip_prefix = \"hmac-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hmac-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__home-0.5.12\",\n sha256 = \"cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/home/0.5.12/download\"],\n strip_prefix = \"home-0.5.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.home-0.5.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hostname-0.3.1\",\n sha256 = \"3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hostname/0.3.1/download\"],\n strip_prefix = \"hostname-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hostname-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hpke-0.11.0\",\n sha256 = \"e04a5933a381bb81f00b083fce6b4528e16d735dbeecbb2bdb45e0dbbf3f7e17\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hpke/0.11.0/download\"],\n strip_prefix = \"hpke-0.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hpke-0.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-1.4.0\",\n sha256 = \"e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http/1.4.0/download\"],\n strip_prefix = \"http-1.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-1.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-auth-0.1.10\",\n sha256 = \"150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-auth/0.1.10/download\"],\n strip_prefix = \"http-auth-0.1.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-auth-0.1.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-1.0.1\",\n sha256 = \"1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body/1.0.1/download\"],\n strip_prefix = \"http-body-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__http-body-util-0.1.3\",\n sha256 = \"b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/http-body-util/0.1.3/download\"],\n strip_prefix = \"http-body-util-0.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.http-body-util-0.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httparse-1.10.1\",\n sha256 = \"6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httparse/1.10.1/download\"],\n strip_prefix = \"httparse-1.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httparse-1.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__httpdate-1.0.3\",\n sha256 = \"df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/httpdate/1.0.3/download\"],\n strip_prefix = \"httpdate-1.0.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.httpdate-1.0.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-2.3.0\",\n sha256 = \"135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime/2.3.0/download\"],\n strip_prefix = \"humantime-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__humantime-serde-1.1.1\",\n sha256 = \"57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/humantime-serde/1.1.1/download\"],\n strip_prefix = \"humantime-serde-1.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.humantime-serde-1.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-1.9.0\",\n sha256 = \"6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper/1.9.0/download\"],\n strip_prefix = \"hyper-1.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-1.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-rustls-0.27.9\",\n sha256 = \"33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-rustls/0.27.9/download\"],\n strip_prefix = \"hyper-rustls-0.27.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-rustls-0.27.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-timeout-0.5.2\",\n sha256 = \"2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-timeout/0.5.2/download\"],\n strip_prefix = \"hyper-timeout-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-timeout-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__hyper-util-0.1.20\",\n sha256 = \"96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/hyper-util/0.1.20/download\"],\n strip_prefix = \"hyper-util-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.hyper-util-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-0.1.65\",\n sha256 = \"e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone/0.1.65/download\"],\n strip_prefix = \"iana-time-zone-0.1.65\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-0.1.65.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iana-time-zone-haiku-0.1.2\",\n sha256 = \"f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download\"],\n strip_prefix = \"iana-time-zone-haiku-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iana-time-zone-haiku-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_collections-2.2.0\",\n sha256 = \"2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_collections/2.2.0/download\"],\n strip_prefix = \"icu_collections-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_collections-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_locale_core-2.2.0\",\n sha256 = \"92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_locale_core/2.2.0/download\"],\n strip_prefix = \"icu_locale_core-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_locale_core-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer-2.2.0\",\n sha256 = \"c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer/2.2.0/download\"],\n strip_prefix = \"icu_normalizer-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_normalizer_data-2.2.0\",\n sha256 = \"da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_normalizer_data/2.2.0/download\"],\n strip_prefix = \"icu_normalizer_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_normalizer_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties-2.2.0\",\n sha256 = \"bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties/2.2.0/download\"],\n strip_prefix = \"icu_properties-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_properties_data-2.2.0\",\n sha256 = \"8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_properties_data/2.2.0/download\"],\n strip_prefix = \"icu_properties_data-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_properties_data-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__icu_provider-2.2.0\",\n sha256 = \"139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/icu_provider/2.2.0/download\"],\n strip_prefix = \"icu_provider-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.icu_provider-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__id-arena-2.3.0\",\n sha256 = \"3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/id-arena/2.3.0/download\"],\n strip_prefix = \"id-arena-2.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.id-arena-2.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ident_case-1.0.1\",\n sha256 = \"b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ident_case/1.0.1/download\"],\n strip_prefix = \"ident_case-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ident_case-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna-1.1.0\",\n sha256 = \"3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna/1.1.0/download\"],\n strip_prefix = \"idna-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__idna_adapter-1.2.1\",\n sha256 = \"3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/idna_adapter/1.2.1/download\"],\n strip_prefix = \"idna_adapter-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.idna_adapter-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-2.14.0\",\n sha256 = \"d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap/2.14.0/download\"],\n strip_prefix = \"indexmap-2.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-2.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indexmap-nostd-0.4.0\",\n sha256 = \"8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indexmap-nostd/0.4.0/download\"],\n strip_prefix = \"indexmap-nostd-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indexmap-nostd-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__indicatif-0.17.11\",\n sha256 = \"183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/indicatif/0.17.11/download\"],\n strip_prefix = \"indicatif-0.17.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.indicatif-0.17.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inferno-0.11.21\",\n sha256 = \"232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inferno/0.11.21/download\"],\n strip_prefix = \"inferno-0.11.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inferno-0.11.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__inout-0.1.4\",\n sha256 = \"879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/inout/0.1.4/download\"],\n strip_prefix = \"inout-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.inout-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-extras-0.18.4\",\n sha256 = \"2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-extras/0.18.4/download\"],\n strip_prefix = \"io-extras-0.18.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-extras-0.18.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__io-lifetimes-2.0.4\",\n sha256 = \"06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/io-lifetimes/2.0.4/download\"],\n strip_prefix = \"io-lifetimes-2.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.io-lifetimes-2.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ipnet-2.12.0\",\n sha256 = \"d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ipnet/2.12.0/download\"],\n strip_prefix = \"ipnet-2.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ipnet-2.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__iri-string-0.7.12\",\n sha256 = \"25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/iri-string/0.7.12/download\"],\n strip_prefix = \"iri-string-0.7.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.iri-string-0.7.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is-terminal-0.4.17\",\n sha256 = \"3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is-terminal/0.4.17/download\"],\n strip_prefix = \"is-terminal-0.4.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is-terminal-0.4.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__is_terminal_polyfill-1.70.2\",\n sha256 = \"a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/is_terminal_polyfill/1.70.2/download\"],\n strip_prefix = \"is_terminal_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.is_terminal_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.10.5\",\n sha256 = \"b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.10.5/download\"],\n strip_prefix = \"itertools-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.12.1\",\n sha256 = \"ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.12.1/download\"],\n strip_prefix = \"itertools-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.13.0\",\n sha256 = \"413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.13.0/download\"],\n strip_prefix = \"itertools-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itertools-0.14.0\",\n sha256 = \"2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itertools/0.14.0/download\"],\n strip_prefix = \"itertools-0.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itertools-0.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__itoa-1.0.18\",\n sha256 = \"8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/itoa/1.0.18/download\"],\n strip_prefix = \"itoa-1.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.itoa-1.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-0.2.23\",\n sha256 = \"1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff/0.2.23/download\"],\n strip_prefix = \"jiff-0.2.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-0.2.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jiff-static-0.2.23\",\n sha256 = \"2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jiff-static/0.2.23/download\"],\n strip_prefix = \"jiff-static-0.2.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jiff-static-0.2.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-0.21.1\",\n sha256 = \"1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni/0.21.1/download\"],\n strip_prefix = \"jni-0.21.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-0.21.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.3.1\",\n sha256 = \"41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.3.1/download\"],\n strip_prefix = \"jni-sys-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-0.4.1\",\n sha256 = \"c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys/0.4.1/download\"],\n strip_prefix = \"jni-sys-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jni-sys-macros-0.4.1\",\n sha256 = \"38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jni-sys-macros/0.4.1/download\"],\n strip_prefix = \"jni-sys-macros-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jni-sys-macros-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jobserver-0.1.34\",\n sha256 = \"9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jobserver/0.1.34/download\"],\n strip_prefix = \"jobserver-0.1.34\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jobserver-0.1.34.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__js-sys-0.3.95\",\n sha256 = \"2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/js-sys/0.3.95/download\"],\n strip_prefix = \"js-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.js-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__jwt-0.16.0\",\n sha256 = \"6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/jwt/0.16.0/download\"],\n strip_prefix = \"jwt-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.jwt-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__keccak-0.1.6\",\n sha256 = \"cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/keccak/0.1.6/download\"],\n strip_prefix = \"keccak-0.1.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.keccak-0.1.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst-0.2.20\",\n sha256 = \"128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst/0.2.20/download\"],\n strip_prefix = \"konst-0.2.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst-0.2.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__konst_macro_rules-0.2.19\",\n sha256 = \"a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/konst_macro_rules/0.2.19/download\"],\n strip_prefix = \"konst_macro_rules-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.konst_macro_rules-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lazy_static-1.5.0\",\n sha256 = \"bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lazy_static/1.5.0/download\"],\n strip_prefix = \"lazy_static-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lazy_static-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128-0.2.6\",\n sha256 = \"6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128/0.2.6/download\"],\n strip_prefix = \"leb128-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__leb128fmt-0.1.0\",\n sha256 = \"09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/leb128fmt/0.1.0/download\"],\n strip_prefix = \"leb128fmt-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.leb128fmt-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libc-0.2.185\",\n sha256 = \"52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libc/0.2.185/download\"],\n strip_prefix = \"libc-0.2.185\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libc-0.2.185.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libm-0.2.16\",\n sha256 = \"b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libm/0.2.16/download\"],\n strip_prefix = \"libm-0.2.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libm-0.2.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libredox-0.1.16\",\n sha256 = \"e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libredox/0.1.16/download\"],\n strip_prefix = \"libredox-0.1.16\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libredox-0.1.16.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__libyaml-rs-0.3.0\",\n sha256 = \"2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/libyaml-rs/0.3.0/download\"],\n strip_prefix = \"libyaml-rs-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.libyaml-rs-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linked_list_allocator-0.10.5\",\n sha256 = \"9afa463f5405ee81cdb9cc2baf37e08ec7e4c8209442b5d72c04cfb2cd6e6286\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linked_list_allocator/0.10.5/download\"],\n strip_prefix = \"linked_list_allocator-0.10.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linked_list_allocator-0.10.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.12.1\",\n sha256 = \"32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.12.1/download\"],\n strip_prefix = \"linux-raw-sys-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__linux-raw-sys-0.4.15\",\n sha256 = \"d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/linux-raw-sys/0.4.15/download\"],\n strip_prefix = \"linux-raw-sys-0.4.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.linux-raw-sys-0.4.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__litemap-0.8.2\",\n sha256 = \"92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/litemap/0.8.2/download\"],\n strip_prefix = \"litemap-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.litemap-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lock_api-0.4.14\",\n sha256 = \"224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lock_api/0.4.14/download\"],\n strip_prefix = \"lock_api-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lock_api-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__log-0.4.29\",\n sha256 = \"5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/log/0.4.29/download\"],\n strip_prefix = \"log-0.4.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.log-0.4.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lru-slab-0.1.2\",\n sha256 = \"112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lru-slab/0.1.2/download\"],\n strip_prefix = \"lru-slab-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lru-slab-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__lzma-sys-0.1.20\",\n sha256 = \"5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/lzma-sys/0.1.20/download\"],\n strip_prefix = \"lzma-sys-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.lzma-sys-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mach2-0.4.3\",\n sha256 = \"d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mach2/0.4.3/download\"],\n strip_prefix = \"mach2-0.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mach2-0.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maplit-1.0.2\",\n sha256 = \"3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maplit/1.0.2/download\"],\n strip_prefix = \"maplit-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maplit-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__match_cfg-0.1.0\",\n sha256 = \"ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/match_cfg/0.1.0/download\"],\n strip_prefix = \"match_cfg-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.match_cfg-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.7.3\",\n sha256 = \"0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.7.3/download\"],\n strip_prefix = \"matchit-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__matchit-0.8.4\",\n sha256 = \"47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/matchit/0.8.4/download\"],\n strip_prefix = \"matchit-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.matchit-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__maybe-owned-0.3.4\",\n sha256 = \"4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/maybe-owned/0.3.4/download\"],\n strip_prefix = \"maybe-owned-0.3.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.maybe-owned-0.3.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memchr-2.8.0\",\n sha256 = \"f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memchr/2.8.0/download\"],\n strip_prefix = \"memchr-2.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memchr-2.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memfd-0.6.5\",\n sha256 = \"ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memfd/0.6.5/download\"],\n strip_prefix = \"memfd-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memfd-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memmap2-0.9.10\",\n sha256 = \"714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memmap2/0.9.10/download\"],\n strip_prefix = \"memmap2-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memmap2-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__memoffset-0.9.1\",\n sha256 = \"488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/memoffset/0.9.1/download\"],\n strip_prefix = \"memoffset-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.memoffset-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mime-0.3.17\",\n sha256 = \"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mime/0.3.17/download\"],\n strip_prefix = \"mime-0.3.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mime-0.3.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__minimal-lexical-0.2.1\",\n sha256 = \"68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/minimal-lexical/0.2.1/download\"],\n strip_prefix = \"minimal-lexical-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.minimal-lexical-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__miniz_oxide-0.8.9\",\n sha256 = \"1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/miniz_oxide/0.8.9/download\"],\n strip_prefix = \"miniz_oxide-0.8.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.miniz_oxide-0.8.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mio-1.2.0\",\n sha256 = \"50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mio/1.2.0/download\"],\n strip_prefix = \"mio-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mio-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall-0.13.1\",\n sha256 = \"39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall/0.13.1/download\"],\n strip_prefix = \"mockall-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__mockall_derive-0.13.1\",\n sha256 = \"25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/mockall_derive/0.13.1/download\"],\n strip_prefix = \"mockall_derive-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.mockall_derive-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__multimap-0.10.1\",\n sha256 = \"1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/multimap/0.10.1/download\"],\n strip_prefix = \"multimap-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.multimap-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-core-0.7.0\",\n sha256 = \"72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-core/0.7.0/download\"],\n strip_prefix = \"netlink-packet-core-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-core-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-route-0.19.0\",\n sha256 = \"74c171cd77b4ee8c7708da746ce392440cb7bcf618d122ec9ecc607b12938bf4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-route/0.19.0/download\"],\n strip_prefix = \"netlink-packet-route-0.19.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-route-0.19.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-packet-utils-0.5.2\",\n sha256 = \"0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-packet-utils/0.5.2/download\"],\n strip_prefix = \"netlink-packet-utils-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-packet-utils-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-proto-0.11.5\",\n sha256 = \"72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-proto/0.11.5/download\"],\n strip_prefix = \"netlink-proto-0.11.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-proto-0.11.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__netlink-sys-0.8.8\",\n sha256 = \"cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/netlink-sys/0.8.8/download\"],\n strip_prefix = \"netlink-sys-0.8.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.netlink-sys-0.8.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.26.4\",\n sha256 = \"598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.26.4/download\"],\n strip_prefix = \"nix-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.27.1\",\n sha256 = \"2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.27.1/download\"],\n strip_prefix = \"nix-0.27.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.27.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nix-0.31.2\",\n sha256 = \"5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nix/0.31.2/download\"],\n strip_prefix = \"nix-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nix-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-7.1.3\",\n sha256 = \"d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/7.1.3/download\"],\n strip_prefix = \"nom-7.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-7.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nom-8.0.0\",\n sha256 = \"df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nom/8.0.0/download\"],\n strip_prefix = \"nom-8.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nom-8.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__nu-ansi-term-0.50.3\",\n sha256 = \"7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/nu-ansi-term/0.50.3/download\"],\n strip_prefix = \"nu-ansi-term-0.50.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.nu-ansi-term-0.50.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-0.4.6\",\n sha256 = \"a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint/0.4.6/download\"],\n strip_prefix = \"num-bigint-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-bigint-dig-0.8.6\",\n sha256 = \"e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-bigint-dig/0.8.6/download\"],\n strip_prefix = \"num-bigint-dig-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-bigint-dig-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-conv-0.1.0\",\n sha256 = \"51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-conv/0.1.0/download\"],\n strip_prefix = \"num-conv-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-conv-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-format-0.4.4\",\n sha256 = \"a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-format/0.4.4/download\"],\n strip_prefix = \"num-format-0.4.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-format-0.4.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-integer-0.1.46\",\n sha256 = \"7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-integer/0.1.46/download\"],\n strip_prefix = \"num-integer-0.1.46\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-integer-0.1.46.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-iter-0.1.45\",\n sha256 = \"1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-iter/0.1.45/download\"],\n strip_prefix = \"num-iter-0.1.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-iter-0.1.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num-traits-0.2.19\",\n sha256 = \"071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num-traits/0.2.19/download\"],\n strip_prefix = \"num-traits-0.2.19\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num-traits-0.2.19.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__num_threads-0.1.7\",\n sha256 = \"5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/num_threads/0.1.7/download\"],\n strip_prefix = \"num_threads-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.num_threads-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__number_prefix-0.4.0\",\n sha256 = \"830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/number_prefix/0.4.0/download\"],\n strip_prefix = \"number_prefix-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.number_prefix-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.36.7\",\n sha256 = \"62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.36.7/download\"],\n strip_prefix = \"object-0.36.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.36.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__object-0.37.3\",\n sha256 = \"ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/object/0.37.3/download\"],\n strip_prefix = \"object-0.37.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.object-0.37.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-client-0.15.0\",\n sha256 = \"9b74df13319e08bc386d333d3dc289c774c88cc543cae31f5347db07b5ec2172\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-client/0.15.0/download\"],\n strip_prefix = \"oci-client-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-client-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oci-spec-0.8.4\",\n sha256 = \"fc3da52b83ce3258fbf29f66ac784b279453c2ac3c22c5805371b921ede0d308\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oci-spec/0.8.4/download\"],\n strip_prefix = \"oci-spec-0.8.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oci-spec-0.8.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oid-registry-0.7.1\",\n sha256 = \"a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oid-registry/0.7.1/download\"],\n strip_prefix = \"oid-registry-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oid-registry-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__olpc-cjson-0.1.4\",\n sha256 = \"696183c9b5fe81a7715d074fd632e8bd46f4ccc0231a3ed7fc580a80de5f7083\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/olpc-cjson/0.1.4/download\"],\n strip_prefix = \"olpc-cjson-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.olpc-cjson-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell-1.21.4\",\n sha256 = \"9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell/1.21.4/download\"],\n strip_prefix = \"once_cell-1.21.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell-1.21.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__once_cell_polyfill-1.70.2\",\n sha256 = \"384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/once_cell_polyfill/1.70.2/download\"],\n strip_prefix = \"once_cell_polyfill-1.70.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.once_cell_polyfill-1.70.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__oorandom-11.1.5\",\n sha256 = \"d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/oorandom/11.1.5/download\"],\n strip_prefix = \"oorandom-11.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.oorandom-11.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opaque-debug-0.3.1\",\n sha256 = \"c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opaque-debug/0.3.1/download\"],\n strip_prefix = \"opaque-debug-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opaque-debug-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-0.10.78\",\n sha256 = \"f38c4372413cdaaf3cc79dd92d29d7d9f5ab09b51b10dded508fb90bb70b9222\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl/0.10.78/download\"],\n strip_prefix = \"openssl-0.10.78\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-0.10.78.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-macros-0.1.1\",\n sha256 = \"a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-macros/0.1.1/download\"],\n strip_prefix = \"openssl-macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-probe-0.2.1\",\n sha256 = \"7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-probe/0.2.1/download\"],\n strip_prefix = \"openssl-probe-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-probe-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__openssl-sys-0.9.114\",\n sha256 = \"13ce1245cd07fcc4cfdb438f7507b0c7e4f3849a69fd84d52374c66d83741bb6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/openssl-sys/0.9.114/download\"],\n strip_prefix = \"openssl-sys-0.9.114\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.openssl-sys-0.9.114.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-0.31.0\",\n sha256 = \"b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry/0.31.0/download\"],\n strip_prefix = \"opentelemetry-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\",\n sha256 = \"ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-appender-tracing/0.31.1/download\"],\n strip_prefix = \"opentelemetry-appender-tracing-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-appender-tracing-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-http-0.31.0\",\n sha256 = \"d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-http/0.31.0/download\"],\n strip_prefix = \"opentelemetry-http-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-http-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-otlp-0.31.1\",\n sha256 = \"1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-otlp/0.31.1/download\"],\n strip_prefix = \"opentelemetry-otlp-0.31.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-otlp-0.31.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry-proto-0.31.0\",\n sha256 = \"a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry-proto/0.31.0/download\"],\n strip_prefix = \"opentelemetry-proto-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry-proto-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__opentelemetry_sdk-0.31.0\",\n sha256 = \"e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/opentelemetry_sdk/0.31.0/download\"],\n strip_prefix = \"opentelemetry_sdk-0.31.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.opentelemetry_sdk-0.31.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__os_pipe-1.2.3\",\n sha256 = \"7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/os_pipe/1.2.3/download\"],\n strip_prefix = \"os_pipe-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.os_pipe-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros-0.18.5\",\n sha256 = \"1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros/0.18.5/download\"],\n strip_prefix = \"ouroboros-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ouroboros_macro-0.18.5\",\n sha256 = \"3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ouroboros_macro/0.18.5/download\"],\n strip_prefix = \"ouroboros_macro-0.18.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ouroboros_macro-0.18.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p256-0.13.2\",\n sha256 = \"c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p256/0.13.2/download\"],\n strip_prefix = \"p256-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p256-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__p384-0.13.1\",\n sha256 = \"fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/p384/0.13.1/download\"],\n strip_prefix = \"p384-0.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.p384-0.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot-0.12.5\",\n sha256 = \"93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot/0.12.5/download\"],\n strip_prefix = \"parking_lot-0.12.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot-0.12.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__parking_lot_core-0.9.12\",\n sha256 = \"2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/parking_lot_core/0.9.12/download\"],\n strip_prefix = \"parking_lot_core-0.9.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.parking_lot_core-0.9.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__paste-1.0.15\",\n sha256 = \"57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/paste/1.0.15/download\"],\n strip_prefix = \"paste-1.0.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.paste-1.0.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-3.0.6\",\n sha256 = \"1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem/3.0.6/download\"],\n strip_prefix = \"pem-3.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-3.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pem-rfc7468-0.7.0\",\n sha256 = \"88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pem-rfc7468/0.7.0/download\"],\n strip_prefix = \"pem-rfc7468-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pem-rfc7468-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__percent-encoding-2.3.2\",\n sha256 = \"9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/percent-encoding/2.3.2/download\"],\n strip_prefix = \"percent-encoding-2.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.percent-encoding-2.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.6.5\",\n sha256 = \"b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.6.5/download\"],\n strip_prefix = \"petgraph-0.6.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.6.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__petgraph-0.8.3\",\n sha256 = \"8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/petgraph/0.8.3/download\"],\n strip_prefix = \"petgraph-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.petgraph-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-1.1.11\",\n sha256 = \"f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project/1.1.11/download\"],\n strip_prefix = \"pin-project-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-internal-1.1.11\",\n sha256 = \"d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-internal/1.1.11/download\"],\n strip_prefix = \"pin-project-internal-1.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-internal-1.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pin-project-lite-0.2.17\",\n sha256 = \"a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pin-project-lite/0.2.17/download\"],\n strip_prefix = \"pin-project-lite-0.2.17\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pin-project-lite-0.2.17.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs1-0.7.5\",\n sha256 = \"c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs1/0.7.5/download\"],\n strip_prefix = \"pkcs1-0.7.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs1-0.7.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkcs8-0.10.2\",\n sha256 = \"f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkcs8/0.10.2/download\"],\n strip_prefix = \"pkcs8-0.10.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkcs8-0.10.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pkg-config-0.3.33\",\n sha256 = \"19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pkg-config/0.3.33/download\"],\n strip_prefix = \"pkg-config-0.3.33\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pkg-config-0.3.33.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plain-0.2.3\",\n sha256 = \"b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plain/0.2.3/download\"],\n strip_prefix = \"plain-0.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plain-0.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-0.3.7\",\n sha256 = \"5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters/0.3.7/download\"],\n strip_prefix = \"plotters-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-backend-0.3.7\",\n sha256 = \"df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-backend/0.3.7/download\"],\n strip_prefix = \"plotters-backend-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-backend-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__plotters-svg-0.3.7\",\n sha256 = \"51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/plotters-svg/0.3.7/download\"],\n strip_prefix = \"plotters-svg-0.3.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.plotters-svg-0.3.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__poly1305-0.8.0\",\n sha256 = \"8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/poly1305/0.8.0/download\"],\n strip_prefix = \"poly1305-0.8.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.poly1305-0.8.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__polyval-0.6.2\",\n sha256 = \"9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/polyval/0.6.2/download\"],\n strip_prefix = \"polyval-0.6.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.polyval-0.6.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__port_check-0.1.5\",\n sha256 = \"f6519412c9e0d4be579b9f0618364d19cb434b324fc6ddb1b27b1e682c7105ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/port_check/0.1.5/download\"],\n strip_prefix = \"port_check-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.port_check-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-1.13.1\",\n sha256 = \"c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic/1.13.1/download\"],\n strip_prefix = \"portable-atomic-1.13.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-1.13.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portable-atomic-util-0.2.7\",\n sha256 = \"c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portable-atomic-util/0.2.7/download\"],\n strip_prefix = \"portable-atomic-util-0.2.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portable-atomic-util-0.2.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__portpicker-0.1.1\",\n sha256 = \"be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/portpicker/0.1.1/download\"],\n strip_prefix = \"portpicker-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.portpicker-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__postcard-1.1.3\",\n sha256 = \"6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/postcard/1.1.3/download\"],\n strip_prefix = \"postcard-1.1.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.postcard-1.1.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__potential_utf-0.1.5\",\n sha256 = \"0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/potential_utf/0.1.5/download\"],\n strip_prefix = \"potential_utf-0.1.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.potential_utf-0.1.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__powerfmt-0.2.0\",\n sha256 = \"439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/powerfmt/0.2.0/download\"],\n strip_prefix = \"powerfmt-0.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.powerfmt-0.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pprof-0.15.0\",\n patch_args = [\n \"-u\",\n \"-p0\",\n ],\n patches = [\n \"@@oak+//third_party/pprof:pprof-prost13.patch\",\n ],\n sha256 = \"38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pprof/0.15.0/download\"],\n strip_prefix = \"pprof-0.15.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pprof-0.15.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ppv-lite86-0.2.21\",\n sha256 = \"85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ppv-lite86/0.2.21/download\"],\n strip_prefix = \"ppv-lite86-0.2.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ppv-lite86-0.2.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-3.1.4\",\n sha256 = \"ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates/3.1.4/download\"],\n strip_prefix = \"predicates-3.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-3.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-core-1.0.10\",\n sha256 = \"cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-core/1.0.10/download\"],\n strip_prefix = \"predicates-core-1.0.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-core-1.0.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__predicates-tree-1.0.13\",\n sha256 = \"d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/predicates-tree/1.0.13/download\"],\n strip_prefix = \"predicates-tree-1.0.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.predicates-tree-1.0.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prettyplease-0.2.37\",\n sha256 = \"479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prettyplease/0.2.37/download\"],\n strip_prefix = \"prettyplease-0.2.37\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prettyplease-0.2.37.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__primeorder-0.13.6\",\n sha256 = \"353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/primeorder/0.13.6/download\"],\n strip_prefix = \"primeorder-0.13.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.primeorder-0.13.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error-attr2-2.0.0\",\n sha256 = \"96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error-attr2/2.0.0/download\"],\n strip_prefix = \"proc-macro-error-attr2-2.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error-attr2-2.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro-error2-2.0.1\",\n sha256 = \"11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro-error2/2.0.1/download\"],\n strip_prefix = \"proc-macro-error2-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro-error2-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-1.0.106\",\n sha256 = \"8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2/1.0.106/download\"],\n strip_prefix = \"proc-macro2-1.0.106\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-1.0.106.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proc-macro2-diagnostics-0.10.1\",\n sha256 = \"af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proc-macro2-diagnostics/0.10.1/download\"],\n strip_prefix = \"proc-macro2-diagnostics-0.10.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proc-macro2-diagnostics-0.10.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-0.16.0\",\n sha256 = \"731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs/0.16.0/download\"],\n strip_prefix = \"procfs-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__procfs-core-0.16.0\",\n sha256 = \"2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/procfs-core/0.16.0/download\"],\n strip_prefix = \"procfs-core-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.procfs-core-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__proptest-1.11.0\",\n sha256 = \"4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/proptest/1.11.0/download\"],\n strip_prefix = \"proptest-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.proptest-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.12.6\",\n sha256 = \"deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.12.6/download\"],\n strip_prefix = \"prost-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-0.14.3\",\n sha256 = \"d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost/0.14.3/download\"],\n strip_prefix = \"prost-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.12.6\",\n sha256 = \"22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.12.6/download\"],\n strip_prefix = \"prost-build-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-build-0.14.3\",\n sha256 = \"343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-build/0.14.3/download\"],\n strip_prefix = \"prost-build-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-build-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.12.6\",\n sha256 = \"81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.12.6/download\"],\n strip_prefix = \"prost-derive-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-derive-0.14.3\",\n sha256 = \"27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-derive/0.14.3/download\"],\n strip_prefix = \"prost-derive-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-derive-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.12.6\",\n sha256 = \"9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.12.6/download\"],\n strip_prefix = \"prost-types-0.12.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.12.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__prost-types-0.14.3\",\n sha256 = \"8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/prost-types/0.14.3/download\"],\n strip_prefix = \"prost-types-0.14.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.prost-types-0.14.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__psm-0.1.31\",\n sha256 = \"645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/psm/0.1.31/download\"],\n strip_prefix = \"psm-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.psm-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-0.13.3\",\n sha256 = \"7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark/0.13.3/download\"],\n strip_prefix = \"pulldown-cmark-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulldown-cmark-to-cmark-22.0.0\",\n sha256 = \"50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulldown-cmark-to-cmark/22.0.0/download\"],\n strip_prefix = \"pulldown-cmark-to-cmark-22.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulldown-cmark-to-cmark-22.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__pulley-interpreter-32.0.1\",\n sha256 = \"210168e10de0449154698532069f4b7164fda92ba8c7ed382f58241658de3430\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/pulley-interpreter/32.0.1/download\"],\n strip_prefix = \"pulley-interpreter-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.pulley-interpreter-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-error-1.2.3\",\n sha256 = \"a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-error/1.2.3/download\"],\n strip_prefix = \"quick-error-1.2.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-error-1.2.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quick-xml-0.26.0\",\n sha256 = \"7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quick-xml/0.26.0/download\"],\n strip_prefix = \"quick-xml-0.26.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quick-xml-0.26.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-0.11.9\",\n sha256 = \"b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn/0.11.9/download\"],\n strip_prefix = \"quinn-0.11.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-0.11.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-proto-0.11.14\",\n sha256 = \"434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-proto/0.11.14/download\"],\n strip_prefix = \"quinn-proto-0.11.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-proto-0.11.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quinn-udp-0.5.14\",\n sha256 = \"addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quinn-udp/0.5.14/download\"],\n strip_prefix = \"quinn-udp-0.5.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quinn-udp-0.5.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__quote-1.0.45\",\n sha256 = \"41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/quote/1.0.45/download\"],\n strip_prefix = \"quote-1.0.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.quote-1.0.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-5.3.0\",\n sha256 = \"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/5.3.0/download\"],\n strip_prefix = \"r-efi-5.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-5.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__r-efi-6.0.0\",\n sha256 = \"f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/r-efi/6.0.0/download\"],\n strip_prefix = \"r-efi-6.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.r-efi-6.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__radium-0.7.0\",\n sha256 = \"dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/radium/0.7.0/download\"],\n strip_prefix = \"radium-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.radium-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.8.6\",\n sha256 = \"5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.8.6/download\"],\n strip_prefix = \"rand-0.8.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.8.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand-0.9.4\",\n sha256 = \"44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand/0.9.4/download\"],\n strip_prefix = \"rand-0.9.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand-0.9.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.3.1\",\n sha256 = \"e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.3.1/download\"],\n strip_prefix = \"rand_chacha-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_chacha-0.9.0\",\n sha256 = \"d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_chacha/0.9.0/download\"],\n strip_prefix = \"rand_chacha-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_chacha-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.6.4\",\n sha256 = \"ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.6.4/download\"],\n strip_prefix = \"rand_core-0.6.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.6.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_core-0.9.5\",\n sha256 = \"76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_core/0.9.5/download\"],\n strip_prefix = \"rand_core-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_core-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rand_xorshift-0.4.0\",\n sha256 = \"513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rand_xorshift/0.4.0/download\"],\n strip_prefix = \"rand_xorshift-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rand_xorshift-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__raw-cpuid-10.7.0\",\n sha256 = \"6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/raw-cpuid/10.7.0/download\"],\n strip_prefix = \"raw-cpuid-10.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.raw-cpuid-10.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-1.12.0\",\n sha256 = \"fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon/1.12.0/download\"],\n strip_prefix = \"rayon-1.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-1.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rayon-core-1.13.0\",\n sha256 = \"22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rayon-core/1.13.0/download\"],\n strip_prefix = \"rayon-core-1.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rayon-core-1.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rcgen-0.13.2\",\n sha256 = \"75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rcgen/0.13.2/download\"],\n strip_prefix = \"rcgen-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rcgen-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.5.18\",\n sha256 = \"ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.5.18/download\"],\n strip_prefix = \"redox_syscall-0.5.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.5.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_syscall-0.7.4\",\n sha256 = \"f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_syscall/0.7.4/download\"],\n strip_prefix = \"redox_syscall-0.7.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_syscall-0.7.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__redox_users-0.4.6\",\n sha256 = \"ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/redox_users/0.4.6/download\"],\n strip_prefix = \"redox_users-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.redox_users-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-1.0.25\",\n sha256 = \"f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast/1.0.25/download\"],\n strip_prefix = \"ref-cast-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ref-cast-impl-1.0.25\",\n sha256 = \"b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ref-cast-impl/1.0.25/download\"],\n strip_prefix = \"ref-cast-impl-1.0.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ref-cast-impl-1.0.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regalloc2-0.11.2\",\n sha256 = \"dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regalloc2/0.11.2/download\"],\n strip_prefix = \"regalloc2-0.11.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regalloc2-0.11.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-1.12.3\",\n sha256 = \"e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex/1.12.3/download\"],\n strip_prefix = \"regex-1.12.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-1.12.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-automata-0.4.14\",\n sha256 = \"6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-automata/0.4.14/download\"],\n strip_prefix = \"regex-automata-0.4.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-automata-0.4.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-lite-0.1.9\",\n sha256 = \"cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-lite/0.1.9/download\"],\n strip_prefix = \"regex-lite-0.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-lite-0.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__regex-syntax-0.8.10\",\n sha256 = \"dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/regex-syntax/0.8.10/download\"],\n strip_prefix = \"regex-syntax-0.8.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.regex-syntax-0.8.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__reqwest-0.12.28\",\n sha256 = \"eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/reqwest/0.12.28/download\"],\n strip_prefix = \"reqwest-0.12.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.reqwest-0.12.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rfc6979-0.4.0\",\n sha256 = \"f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rfc6979/0.4.0/download\"],\n strip_prefix = \"rfc6979-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rfc6979-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rgb-0.8.53\",\n sha256 = \"47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rgb/0.8.53/download\"],\n strip_prefix = \"rgb-0.8.53\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rgb-0.8.53.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ring-0.17.14\",\n sha256 = \"a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ring/0.17.14/download\"],\n strip_prefix = \"ring-0.17.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ring-0.17.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rlsf-0.2.2\",\n sha256 = \"1646a59a9734b8b7a0ac51689388a60fe1625d4b956348e9de07591a1478457a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rlsf/0.2.2/download\"],\n strip_prefix = \"rlsf-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rlsf-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-0.8.5\",\n sha256 = \"e5947688160b56fb6c827e3c20a72c90392a1d7e9dec74749197aa1780ac42ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp/0.8.5/download\"],\n strip_prefix = \"rmcp-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rmcp-macros-0.8.5\",\n sha256 = \"01263441d3f8635c628e33856c468b96ebbce1af2d3699ea712ca71432d4ee7a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rmcp-macros/0.8.5/download\"],\n strip_prefix = \"rmcp-macros-0.8.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rmcp-macros-0.8.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rpassword-7.4.0\",\n sha256 = \"66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rpassword/7.4.0/download\"],\n strip_prefix = \"rpassword-7.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rpassword-7.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rs_merkle-1.5.0\",\n sha256 = \"bb09b49230ba22e8c676e7b75dfe2887dea8121f18b530ae0ba519ce442d2b21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rs_merkle/1.5.0/download\"],\n strip_prefix = \"rs_merkle-1.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rs_merkle-1.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rsa-0.9.10\",\n sha256 = \"b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rsa/0.9.10/download\"],\n strip_prefix = \"rsa-0.9.10\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rsa-0.9.10.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtnetlink-0.14.1\",\n sha256 = \"b684475344d8df1859ddb2d395dd3dac4f8f3422a1aa0725993cb375fc5caba5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtnetlink/0.14.1/download\"],\n strip_prefix = \"rtnetlink-0.14.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtnetlink-0.14.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rtoolbox-0.0.5\",\n sha256 = \"50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rtoolbox/0.0.5/download\"],\n strip_prefix = \"rtoolbox-0.0.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rtoolbox-0.0.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-demangle-0.1.27\",\n sha256 = \"b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-demangle/0.1.27/download\"],\n strip_prefix = \"rustc-demangle-0.1.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-demangle-0.1.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc-hash-2.1.2\",\n sha256 = \"94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc-hash/2.1.2/download\"],\n strip_prefix = \"rustc-hash-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc-hash-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustc_version-0.4.1\",\n sha256 = \"cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustc_version/0.4.1/download\"],\n strip_prefix = \"rustc_version-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustc_version-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusticata-macros-4.1.0\",\n sha256 = \"faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusticata-macros/4.1.0/download\"],\n strip_prefix = \"rusticata-macros-4.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusticata-macros-4.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-0.38.44\",\n sha256 = \"fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/0.38.44/download\"],\n strip_prefix = \"rustix-0.38.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-0.38.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-1.1.4\",\n sha256 = \"b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix/1.1.4/download\"],\n strip_prefix = \"rustix-1.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-1.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustix-linux-procfs-0.1.1\",\n sha256 = \"2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustix-linux-procfs/0.1.1/download\"],\n strip_prefix = \"rustix-linux-procfs-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustix-linux-procfs-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.22.4\",\n sha256 = \"bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.22.4/download\"],\n strip_prefix = \"rustls-0.22.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.22.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-0.23.38\",\n sha256 = \"69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls/0.23.38/download\"],\n strip_prefix = \"rustls-0.23.38\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-0.23.38.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-native-certs-0.8.3\",\n sha256 = \"612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-native-certs/0.8.3/download\"],\n strip_prefix = \"rustls-native-certs-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-native-certs-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pemfile-2.2.0\",\n sha256 = \"dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pemfile/2.2.0/download\"],\n strip_prefix = \"rustls-pemfile-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pemfile-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-pki-types-1.14.0\",\n sha256 = \"be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-pki-types/1.14.0/download\"],\n strip_prefix = \"rustls-pki-types-1.14.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-pki-types-1.14.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.102.8\",\n sha256 = \"64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.102.8/download\"],\n strip_prefix = \"rustls-webpki-0.102.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.102.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustls-webpki-0.103.13\",\n sha256 = \"61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustls-webpki/0.103.13/download\"],\n strip_prefix = \"rustls-webpki-0.103.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustls-webpki-0.103.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rustversion-1.0.22\",\n sha256 = \"b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rustversion/1.0.22/download\"],\n strip_prefix = \"rustversion-1.0.22\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rustversion-1.0.22.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__rusty-fork-0.3.1\",\n sha256 = \"cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/rusty-fork/0.3.1/download\"],\n strip_prefix = \"rusty-fork-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.rusty-fork-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ryu-1.0.23\",\n sha256 = \"9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ryu/1.0.23/download\"],\n strip_prefix = \"ryu-1.0.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ryu-1.0.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__same-file-1.0.6\",\n sha256 = \"93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/same-file/1.0.6/download\"],\n strip_prefix = \"same-file-1.0.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.same-file-1.0.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schannel-0.1.29\",\n sha256 = \"91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schannel/0.1.29/download\"],\n strip_prefix = \"schannel-0.1.29\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schannel-0.1.29.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars-1.2.1\",\n sha256 = \"a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars/1.2.1/download\"],\n strip_prefix = \"schemars-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__schemars_derive-1.2.1\",\n sha256 = \"7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/schemars_derive/1.2.1/download\"],\n strip_prefix = \"schemars_derive-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.schemars_derive-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scopeguard-1.2.0\",\n sha256 = \"94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scopeguard/1.2.0/download\"],\n strip_prefix = \"scopeguard-1.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scopeguard-1.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll-0.12.0\",\n sha256 = \"6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll/0.12.0/download\"],\n strip_prefix = \"scroll-0.12.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll-0.12.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__scroll_derive-0.12.1\",\n sha256 = \"1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/scroll_derive/0.12.1/download\"],\n strip_prefix = \"scroll_derive-0.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.scroll_derive-0.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sec1-0.7.3\",\n sha256 = \"d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sec1/0.7.3/download\"],\n strip_prefix = \"sec1-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sec1-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-3.7.0\",\n sha256 = \"b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework/3.7.0/download\"],\n strip_prefix = \"security-framework-3.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-3.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__security-framework-sys-2.17.0\",\n sha256 = \"6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/security-framework-sys/2.17.0/download\"],\n strip_prefix = \"security-framework-sys-2.17.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.security-framework-sys-2.17.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__self_cell-1.2.2\",\n sha256 = \"b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/self_cell/1.2.2/download\"],\n strip_prefix = \"self_cell-1.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.self_cell-1.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__semver-1.0.28\",\n sha256 = \"8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/semver/1.0.28/download\"],\n strip_prefix = \"semver-1.0.28\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.semver-1.0.28.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde-1.0.228\",\n sha256 = \"9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde/1.0.228/download\"],\n strip_prefix = \"serde-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_core-1.0.228\",\n sha256 = \"41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_core/1.0.228/download\"],\n strip_prefix = \"serde_core-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_core-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive-1.0.228\",\n sha256 = \"d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive/1.0.228/download\"],\n strip_prefix = \"serde_derive-1.0.228\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive-1.0.228.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_derive_internals-0.29.1\",\n sha256 = \"18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_derive_internals/0.29.1/download\"],\n strip_prefix = \"serde_derive_internals-0.29.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_derive_internals-0.29.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_json-1.0.149\",\n sha256 = \"83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_json/1.0.149/download\"],\n strip_prefix = \"serde_json-1.0.149\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_json-1.0.149.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_path_to_error-0.1.20\",\n sha256 = \"10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_path_to_error/0.1.20/download\"],\n strip_prefix = \"serde_path_to_error-0.1.20\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_path_to_error-0.1.20.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_spanned-0.6.9\",\n sha256 = \"bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_spanned/0.6.9/download\"],\n strip_prefix = \"serde_spanned-0.6.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_spanned-0.6.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__serde_urlencoded-0.7.1\",\n sha256 = \"d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/serde_urlencoded/0.7.1/download\"],\n strip_prefix = \"serde_urlencoded-0.7.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.serde_urlencoded-0.7.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha1-0.10.6\",\n sha256 = \"e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha1/0.10.6/download\"],\n strip_prefix = \"sha1-0.10.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha1-0.10.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha2-0.10.9\",\n sha256 = \"a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha2/0.10.9/download\"],\n strip_prefix = \"sha2-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha2-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sha3-0.10.9\",\n sha256 = \"77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sha3/0.10.9/download\"],\n strip_prefix = \"sha3-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sha3-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sharded-slab-0.1.7\",\n sha256 = \"f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sharded-slab/0.1.7/download\"],\n strip_prefix = \"sharded-slab-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sharded-slab-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shellexpand-2.1.2\",\n sha256 = \"7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shellexpand/2.1.2/download\"],\n strip_prefix = \"shellexpand-2.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shellexpand-2.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__shlex-1.3.0\",\n sha256 = \"0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/shlex/1.3.0/download\"],\n strip_prefix = \"shlex-1.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.shlex-1.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-0.3.18\",\n sha256 = \"d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook/0.3.18/download\"],\n strip_prefix = \"signal-hook-0.3.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-0.3.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-registry-1.4.8\",\n sha256 = \"c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-registry/1.4.8/download\"],\n strip_prefix = \"signal-hook-registry-1.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-registry-1.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signal-hook-tokio-0.3.1\",\n sha256 = \"213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signal-hook-tokio/0.3.1/download\"],\n strip_prefix = \"signal-hook-tokio-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signal-hook-tokio-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__signature-2.2.0\",\n sha256 = \"77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/signature/2.2.0/download\"],\n strip_prefix = \"signature-2.2.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.signature-2.2.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__simd-adler32-0.3.9\",\n sha256 = \"703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/simd-adler32/0.3.9/download\"],\n strip_prefix = \"simd-adler32-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.simd-adler32-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__slab-0.4.12\",\n sha256 = \"0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/slab/0.4.12/download\"],\n strip_prefix = \"slab-0.4.12\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.slab-0.4.12.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__smallvec-1.15.1\",\n sha256 = \"67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/smallvec/1.15.1/download\"],\n strip_prefix = \"smallvec-1.15.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.smallvec-1.15.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__socket2-0.6.3\",\n sha256 = \"3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/socket2/0.6.3/download\"],\n strip_prefix = \"socket2-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.socket2-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spdx-0.10.9\",\n sha256 = \"c3e17e880bafaeb362a7b751ec46bdc5b61445a188f80e0606e68167cd540fa3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spdx/0.10.9/download\"],\n strip_prefix = \"spdx-0.10.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spdx-0.10.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.10.0\",\n sha256 = \"d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.10.0/download\"],\n strip_prefix = \"spin-0.10.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.10.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spin-0.9.8\",\n sha256 = \"6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spin/0.9.8/download\"],\n strip_prefix = \"spin-0.9.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spin-0.9.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.2.5\",\n sha256 = \"5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.2.5/download\"],\n strip_prefix = \"spinning_top-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spinning_top-0.3.0\",\n sha256 = \"d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spinning_top/0.3.0/download\"],\n strip_prefix = \"spinning_top-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spinning_top-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__spki-0.7.3\",\n sha256 = \"d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/spki/0.7.3/download\"],\n strip_prefix = \"spki-0.7.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.spki-0.7.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sptr-0.3.2\",\n sha256 = \"3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sptr/0.3.2/download\"],\n strip_prefix = \"sptr-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sptr-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sse-stream-0.2.2\",\n sha256 = \"2c5e6deb40826033bd7b11c7ef25ef71193fabd71f680f40dd16538a2704d2f4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sse-stream/0.2.2/download\"],\n strip_prefix = \"sse-stream-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sse-stream-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__stable_deref_trait-1.2.1\",\n sha256 = \"6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/stable_deref_trait/1.2.1/download\"],\n strip_prefix = \"stable_deref_trait-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.stable_deref_trait-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__static_assertions-1.1.0\",\n sha256 = \"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/static_assertions/1.1.0/download\"],\n strip_prefix = \"static_assertions-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.static_assertions-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__str_stack-0.1.0\",\n sha256 = \"9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/str_stack/0.1.0/download\"],\n strip_prefix = \"str_stack-0.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.str_stack-0.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strsim-0.11.1\",\n sha256 = \"7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strsim/0.11.1/download\"],\n strip_prefix = \"strsim-0.11.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strsim-0.11.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum-0.27.2\",\n sha256 = \"af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum/0.27.2/download\"],\n strip_prefix = \"strum-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__strum_macros-0.27.2\",\n sha256 = \"7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/strum_macros/0.27.2/download\"],\n strip_prefix = \"strum_macros-0.27.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.strum_macros-0.27.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__subtle-2.6.1\",\n sha256 = \"13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/subtle/2.6.1/download\"],\n strip_prefix = \"subtle-2.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.subtle-2.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__svgbobdoc-0.3.0\",\n sha256 = \"f2c04b93fc15d79b39c63218f15e3fdffaa4c227830686e3b7c5f41244eb3e50\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/svgbobdoc/0.3.0/download\"],\n strip_prefix = \"svgbobdoc-0.3.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.svgbobdoc-0.3.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-common-12.18.2\",\n sha256 = \"4bbc8b4f883265fb2207a0d6ce67095f4bd6cf13e5f9183eb8b3e73fa1b2466a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-common/12.18.2/download\"],\n strip_prefix = \"symbolic-common-12.18.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-common-12.18.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__symbolic-demangle-12.18.2\",\n sha256 = \"8eda470a26ea40eb5cafc35487718e23a2f19153d3a589affb9e8f7fa1aa73b3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/symbolic-demangle/12.18.2/download\"],\n strip_prefix = \"symbolic-demangle-12.18.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.symbolic-demangle-12.18.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-1.0.109\",\n sha256 = \"72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/1.0.109/download\"],\n strip_prefix = \"syn-1.0.109\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-1.0.109.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syn-2.0.117\",\n sha256 = \"e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syn/2.0.117/download\"],\n strip_prefix = \"syn-2.0.117\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syn-2.0.117.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__sync_wrapper-1.0.2\",\n sha256 = \"0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/sync_wrapper/1.0.2/download\"],\n strip_prefix = \"sync_wrapper-1.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.sync_wrapper-1.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__synstructure-0.13.2\",\n sha256 = \"728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/synstructure/0.13.2/download\"],\n strip_prefix = \"synstructure-0.13.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.synstructure-0.13.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__syslog-6.1.1\",\n sha256 = \"dfc7e95b5b795122fafe6519e27629b5ab4232c73ebb2428f568e82b1a457ad3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/syslog/6.1.1/download\"],\n strip_prefix = \"syslog-6.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.syslog-6.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-0.7.0\",\n sha256 = \"a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration/0.7.0/download\"],\n strip_prefix = \"system-configuration-0.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-0.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-configuration-sys-0.6.0\",\n sha256 = \"8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-configuration-sys/0.6.0/download\"],\n strip_prefix = \"system-configuration-sys-0.6.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-configuration-sys-0.6.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__system-interface-0.27.3\",\n sha256 = \"cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/system-interface/0.27.3/download\"],\n strip_prefix = \"system-interface-0.27.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.system-interface-0.27.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tap-1.0.1\",\n sha256 = \"55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tap/1.0.1/download\"],\n strip_prefix = \"tap-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tap-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tar-0.4.45\",\n sha256 = \"22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tar/0.4.45/download\"],\n strip_prefix = \"tar-0.4.45\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tar-0.4.45.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__target-lexicon-0.13.5\",\n sha256 = \"adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/target-lexicon/0.13.5/download\"],\n strip_prefix = \"target-lexicon-0.13.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.target-lexicon-0.13.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tempfile-3.27.0\",\n sha256 = \"32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tempfile/3.27.0/download\"],\n strip_prefix = \"tempfile-3.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tempfile-3.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termcolor-1.4.1\",\n sha256 = \"06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termcolor/1.4.1/download\"],\n strip_prefix = \"termcolor-1.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termcolor-1.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__termtree-0.5.1\",\n sha256 = \"8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/termtree/0.5.1/download\"],\n strip_prefix = \"termtree-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.termtree-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-1.0.69\",\n sha256 = \"b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/1.0.69/download\"],\n strip_prefix = \"thiserror-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-2.0.18\",\n sha256 = \"4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror/2.0.18/download\"],\n strip_prefix = \"thiserror-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-1.0.69\",\n sha256 = \"4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/1.0.69/download\"],\n strip_prefix = \"thiserror-impl-1.0.69\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-1.0.69.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thiserror-impl-2.0.18\",\n sha256 = \"ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thiserror-impl/2.0.18/download\"],\n strip_prefix = \"thiserror-impl-2.0.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thiserror-impl-2.0.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__thread_local-1.1.9\",\n sha256 = \"f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/thread_local/1.1.9/download\"],\n strip_prefix = \"thread_local-1.1.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.thread_local-1.1.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemalloc-sys-0.5.4-5.3.0-patched\",\n sha256 = \"9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemalloc-sys/0.5.4+5.3.0-patched/download\"],\n strip_prefix = \"tikv-jemalloc-sys-0.5.4+5.3.0-patched\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemalloc-sys-0.5.4+5.3.0-patched.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tikv-jemallocator-0.5.4\",\n sha256 = \"965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tikv-jemallocator/0.5.4/download\"],\n strip_prefix = \"tikv-jemallocator-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tikv-jemallocator-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-0.3.36\",\n sha256 = \"5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time/0.3.36/download\"],\n strip_prefix = \"time-0.3.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-0.3.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-core-0.1.2\",\n sha256 = \"ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-core/0.1.2/download\"],\n strip_prefix = \"time-core-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-core-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__time-macros-0.2.18\",\n sha256 = \"3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/time-macros/0.2.18/download\"],\n strip_prefix = \"time-macros-0.2.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.time-macros-0.2.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinystr-0.8.3\",\n sha256 = \"c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinystr/0.8.3/download\"],\n strip_prefix = \"tinystr-0.8.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinystr-0.8.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinytemplate-1.2.1\",\n sha256 = \"be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinytemplate/1.2.1/download\"],\n strip_prefix = \"tinytemplate-1.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinytemplate-1.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec-1.11.0\",\n sha256 = \"3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec/1.11.0/download\"],\n strip_prefix = \"tinyvec-1.11.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec-1.11.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tinyvec_macros-0.1.1\",\n sha256 = \"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tinyvec_macros/0.1.1/download\"],\n strip_prefix = \"tinyvec_macros-0.1.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tinyvec_macros-0.1.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-1.52.1\",\n sha256 = \"b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio/1.52.1/download\"],\n strip_prefix = \"tokio-1.52.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-1.52.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-macros-2.7.0\",\n sha256 = \"385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-macros/2.7.0/download\"],\n strip_prefix = \"tokio-macros-2.7.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-macros-2.7.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.25.0\",\n sha256 = \"775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.25.0/download\"],\n strip_prefix = \"tokio-rustls-0.25.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.25.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-rustls-0.26.4\",\n sha256 = \"1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-rustls/0.26.4/download\"],\n strip_prefix = \"tokio-rustls-0.26.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-rustls-0.26.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-stream-0.1.18\",\n sha256 = \"32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-stream/0.1.18/download\"],\n strip_prefix = \"tokio-stream-0.1.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-stream-0.1.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-tungstenite-0.27.0\",\n sha256 = \"489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-tungstenite/0.27.0/download\"],\n strip_prefix = \"tokio-tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-util-0.7.18\",\n sha256 = \"9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-util/0.7.18/download\"],\n strip_prefix = \"tokio-util-0.7.18\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-util-0.7.18.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tokio-vsock-0.7.2\",\n sha256 = \"8b319ef9394889dab2e1b4f0085b45ba11d0c79dc9d1a9d1afc057d009d0f1c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tokio-vsock/0.7.2/download\"],\n strip_prefix = \"tokio-vsock-0.7.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tokio-vsock-0.7.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml-0.8.23\",\n sha256 = \"dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml/0.8.23/download\"],\n strip_prefix = \"toml-0.8.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml-0.8.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_datetime-0.6.11\",\n sha256 = \"22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_datetime/0.6.11/download\"],\n strip_prefix = \"toml_datetime-0.6.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_datetime-0.6.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_edit-0.22.27\",\n sha256 = \"41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_edit/0.22.27/download\"],\n strip_prefix = \"toml_edit-0.22.27\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_edit-0.22.27.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__toml_write-0.1.2\",\n sha256 = \"5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/toml_write/0.1.2/download\"],\n strip_prefix = \"toml_write-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.toml_write-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-0.14.5\",\n sha256 = \"fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic/0.14.5/download\"],\n strip_prefix = \"tonic-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-build-0.14.5\",\n sha256 = \"1882ac3bf5ef12877d7ed57aad87e75154c11931c2ba7e6cde5e22d63522c734\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-build/0.14.5/download\"],\n strip_prefix = \"tonic-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-0.14.5\",\n sha256 = \"a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost/0.14.5/download\"],\n strip_prefix = \"tonic-prost-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tonic-prost-build-0.14.5\",\n sha256 = \"f3144df636917574672e93d0f56d7edec49f90305749c668df5101751bb8f95a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tonic-prost-build/0.14.5/download\"],\n strip_prefix = \"tonic-prost-build-0.14.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tonic-prost-build-0.14.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.4.13\",\n sha256 = \"b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.4.13/download\"],\n strip_prefix = \"tower-0.4.13\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.4.13.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-0.5.3\",\n sha256 = \"ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower/0.5.3/download\"],\n strip_prefix = \"tower-0.5.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-0.5.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-http-0.6.8\",\n sha256 = \"d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-http/0.6.8/download\"],\n strip_prefix = \"tower-http-0.6.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-http-0.6.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-layer-0.3.3\",\n sha256 = \"121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-layer/0.3.3/download\"],\n strip_prefix = \"tower-layer-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-layer-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tower-service-0.3.3\",\n sha256 = \"8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tower-service/0.3.3/download\"],\n strip_prefix = \"tower-service-0.3.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tower-service-0.3.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-0.1.44\",\n sha256 = \"63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing/0.1.44/download\"],\n strip_prefix = \"tracing-0.1.44\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-0.1.44.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-attributes-0.1.31\",\n sha256 = \"7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-attributes/0.1.31/download\"],\n strip_prefix = \"tracing-attributes-0.1.31\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-attributes-0.1.31.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-core-0.1.36\",\n sha256 = \"db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-core/0.1.36/download\"],\n strip_prefix = \"tracing-core-0.1.36\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-core-0.1.36.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tracing-subscriber-0.3.23\",\n sha256 = \"cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tracing-subscriber/0.3.23/download\"],\n strip_prefix = \"tracing-subscriber-0.3.23\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tracing-subscriber-0.3.23.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__trait-variant-0.1.2\",\n sha256 = \"70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/trait-variant/0.1.2/download\"],\n strip_prefix = \"trait-variant-0.1.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.trait-variant-0.1.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__try-lock-0.2.5\",\n sha256 = \"e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/try-lock/0.2.5/download\"],\n strip_prefix = \"try-lock-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.try-lock-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__tungstenite-0.27.0\",\n sha256 = \"eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/tungstenite/0.27.0/download\"],\n strip_prefix = \"tungstenite-0.27.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.tungstenite-0.27.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__typenum-1.20.0\",\n sha256 = \"40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/typenum/1.20.0/download\"],\n strip_prefix = \"typenum-1.20.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.typenum-1.20.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uart_16550-0.3.2\",\n sha256 = \"e492212ac378a5e00da953718dafb1340d9fbaf4f27d6f3c5cab03d931d1c049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uart_16550/0.3.2/download\"],\n strip_prefix = \"uart_16550-0.3.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uart_16550-0.3.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ubyte-0.10.4\",\n sha256 = \"f720def6ce1ee2fc44d40ac9ed6d3a59c361c80a75a7aa8e75bb9baed31cf2ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ubyte/0.10.4/download\"],\n strip_prefix = \"ubyte-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ubyte-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unarray-0.1.4\",\n sha256 = \"eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unarray/0.1.4/download\"],\n strip_prefix = \"unarray-0.1.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unarray-0.1.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicase-2.9.0\",\n sha256 = \"dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicase/2.9.0/download\"],\n strip_prefix = \"unicase-2.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicase-2.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-ident-1.0.24\",\n sha256 = \"e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-ident/1.0.24/download\"],\n strip_prefix = \"unicode-ident-1.0.24\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-ident-1.0.24.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-normalization-0.1.25\",\n sha256 = \"5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-normalization/0.1.25/download\"],\n strip_prefix = \"unicode-normalization-0.1.25\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-normalization-0.1.25.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.1.14\",\n sha256 = \"7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.1.14/download\"],\n strip_prefix = \"unicode-width-0.1.14\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.1.14.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-width-0.2.2\",\n sha256 = \"b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-width/0.2.2/download\"],\n strip_prefix = \"unicode-width-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-width-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__unicode-xid-0.2.6\",\n sha256 = \"ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/unicode-xid/0.2.6/download\"],\n strip_prefix = \"unicode-xid-0.2.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.unicode-xid-0.2.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__universal-hash-0.5.1\",\n sha256 = \"fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/universal-hash/0.5.1/download\"],\n strip_prefix = \"universal-hash-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.universal-hash-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__untrusted-0.9.0\",\n sha256 = \"8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/untrusted/0.9.0/download\"],\n strip_prefix = \"untrusted-0.9.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.untrusted-0.9.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__ureq-2.12.1\",\n sha256 = \"02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/ureq/2.12.1/download\"],\n strip_prefix = \"ureq-2.12.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.ureq-2.12.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__url-2.5.8\",\n sha256 = \"ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/url/2.5.8/download\"],\n strip_prefix = \"url-2.5.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.url-2.5.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf-8-0.7.6\",\n sha256 = \"09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf-8/0.7.6/download\"],\n strip_prefix = \"utf-8-0.7.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf-8-0.7.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8_iter-1.0.4\",\n sha256 = \"b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8_iter/1.0.4/download\"],\n strip_prefix = \"utf8_iter-1.0.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8_iter-1.0.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__utf8parse-0.2.2\",\n sha256 = \"06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/utf8parse/0.2.2/download\"],\n strip_prefix = \"utf8parse-0.2.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.utf8parse-0.2.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__uuid-1.23.1\",\n sha256 = \"ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/uuid/1.23.1/download\"],\n strip_prefix = \"uuid-1.23.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.uuid-1.23.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vcpkg-0.2.15\",\n sha256 = \"accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vcpkg/0.2.15/download\"],\n strip_prefix = \"vcpkg-0.2.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vcpkg-0.2.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__version_check-0.9.5\",\n sha256 = \"0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/version_check/0.9.5/download\"],\n strip_prefix = \"version_check-0.9.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.version_check-0.9.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__volatile-0.4.6\",\n sha256 = \"442887c63f2c839b346c192d047a7c87e73d0689c9157b00b53dcc27dd5ea793\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/volatile/0.4.6/download\"],\n strip_prefix = \"volatile-0.4.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.volatile-0.4.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__vsock-0.5.4\",\n sha256 = \"6ba782755fc073877e567c2253c0be48e4aa9a254c232d36d3985dfae0bd5205\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/vsock/0.5.4/download\"],\n strip_prefix = \"vsock-0.5.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.vsock-0.5.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wait-timeout-0.2.1\",\n sha256 = \"09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wait-timeout/0.2.1/download\"],\n strip_prefix = \"wait-timeout-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wait-timeout-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-0.5.1\",\n sha256 = \"6e2db2daf1dfbadf228fd8b3c22b96a359135fd673b3d2c203274ee6a0df9c77\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki/0.5.1/download\"],\n strip_prefix = \"waki-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__waki-macros-0.5.1\",\n sha256 = \"a061143f321cc5eeb523f60bdbcd45cfc3ee8851f8cf24f7a4b963bddc5642eb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/waki-macros/0.5.1/download\"],\n strip_prefix = \"waki-macros-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.waki-macros-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__walkdir-2.5.0\",\n sha256 = \"29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/walkdir/2.5.0/download\"],\n strip_prefix = \"walkdir-2.5.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.walkdir-2.5.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__want-0.3.1\",\n sha256 = \"bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/want/0.3.1/download\"],\n strip_prefix = \"want-0.3.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.want-0.3.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasi-0.11.1-wasi-snapshot-preview1\",\n sha256 = \"ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasi/0.11.1+wasi-snapshot-preview1/download\"],\n strip_prefix = \"wasi-0.11.1+wasi-snapshot-preview1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasi-0.11.1+wasi-snapshot-preview1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip2-1.0.3-wasi-0.2.9\",\n sha256 = \"20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip2/1.0.3+wasi-0.2.9/download\"],\n strip_prefix = \"wasip2-1.0.3+wasi-0.2.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip2-1.0.3+wasi-0.2.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasip3-0.4.0-wasi-0.3.0-rc-2026-01-06\",\n sha256 = \"5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download\"],\n strip_prefix = \"wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-0.2.118\",\n sha256 = \"0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-futures-0.4.68\",\n sha256 = \"f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-futures/0.4.68/download\"],\n strip_prefix = \"wasm-bindgen-futures-0.4.68\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-futures-0.4.68.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-0.2.118\",\n sha256 = \"eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-macro-support-0.2.118\",\n sha256 = \"9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-macro-support-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-macro-support-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-bindgen-shared-0.2.118\",\n sha256 = \"5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-bindgen-shared/0.2.118/download\"],\n strip_prefix = \"wasm-bindgen-shared-0.2.118\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-bindgen-shared-0.2.118.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.218.1\",\n sha256 = \"491f7e48672d0a1efdeadf897d98ac1f45942c26c3829cb44a6b828f6f26155f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.218.1/download\"],\n strip_prefix = \"wasm-encoder-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.219.2\",\n sha256 = \"8aa79bcd666a043b58f5fa62b221b0b914dd901e6f620e8ab7371057a797f3e1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.219.2/download\"],\n strip_prefix = \"wasm-encoder-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.228.0\",\n sha256 = \"05d30290541f2d4242a162bbda76b8f2d8b1ac59eab3568ed6f2327d52c9b2c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.228.0/download\"],\n strip_prefix = \"wasm-encoder-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-encoder-0.244.0\",\n sha256 = \"990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-encoder/0.244.0/download\"],\n strip_prefix = \"wasm-encoder-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-encoder-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.218.1\",\n sha256 = \"ca31626e08c121a67fe7cbca87e2ead2ed84ccc16043346c2a1d7cf38936c251\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.218.1/download\"],\n strip_prefix = \"wasm-metadata-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.219.2\",\n sha256 = \"b1ef51bd442042a2a7b562dddb6016ead52c4abab254c376dcffc83add2c9c34\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.219.2/download\"],\n strip_prefix = \"wasm-metadata-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-metadata-0.244.0\",\n sha256 = \"bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-metadata/0.244.0/download\"],\n strip_prefix = \"wasm-metadata-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-metadata-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasm-streams-0.4.2\",\n sha256 = \"15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasm-streams/0.4.2/download\"],\n strip_prefix = \"wasm-streams-0.4.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasm-streams-0.4.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi-0.31.2\",\n sha256 = \"77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi/0.31.2/download\"],\n strip_prefix = \"wasmi-0.31.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi-0.31.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_arena-0.4.1\",\n sha256 = \"104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_arena/0.4.1/download\"],\n strip_prefix = \"wasmi_arena-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_arena-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmi_core-0.13.0\",\n sha256 = \"dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmi_core/0.13.0/download\"],\n strip_prefix = \"wasmi_core-0.13.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmi_core-0.13.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.218.1\",\n sha256 = \"059739c2eac26eea736389a7d6d30b41a8201490bea204d0facde19183359849\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.218.1/download\"],\n strip_prefix = \"wasmparser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.219.2\",\n sha256 = \"5220ee4c6ffcc0cb9d7c47398052203bc902c8ef3985b0c8134118440c0b2921\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.219.2/download\"],\n strip_prefix = \"wasmparser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.228.0\",\n sha256 = \"4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.228.0/download\"],\n strip_prefix = \"wasmparser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-0.244.0\",\n sha256 = \"47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser/0.244.0/download\"],\n strip_prefix = \"wasmparser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmparser-nostd-0.100.2\",\n sha256 = \"d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmparser-nostd/0.100.2/download\"],\n strip_prefix = \"wasmparser-nostd-0.100.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmparser-nostd-0.100.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmprinter-0.228.0\",\n sha256 = \"0df64bd38c14db359d02ce2024c64eb161aa2618ccee5f3bc5acbbd65c9a875c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmprinter/0.228.0/download\"],\n strip_prefix = \"wasmprinter-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmprinter-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-32.0.1\",\n sha256 = \"ad01fc006f2c40ae475412c4d8d41ecb8790b3cc2b04cfb6c802bf845a93231e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime/32.0.1/download\"],\n strip_prefix = \"wasmtime-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-asm-macros-32.0.1\",\n sha256 = \"936dc7dcea4bcb11964c62e6e0a78a360b888b2fa8ffeec37cacf22ac43b7b03\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-asm-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-asm-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-asm-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cache-32.0.1\",\n sha256 = \"4e714cd20f559743c8daf9b5c992630765a329507a95cdd77204b99cc0a5f252\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cache/32.0.1/download\"],\n strip_prefix = \"wasmtime-cache-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cache-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-macro-32.0.1\",\n sha256 = \"dad44c6c446b99a0a5459798bb580824c424c82cd28d8498aa60f7c34a4c917a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-macro/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-component-util-32.0.1\",\n sha256 = \"d9aa325c17140d69de9a03dda4ce75d2f47eb90376c0cd9e01d54a9cb19cb7ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-component-util/32.0.1/download\"],\n strip_prefix = \"wasmtime-component-util-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-component-util-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-cranelift-32.0.1\",\n sha256 = \"4fc41e93228c2d5862e49c5cc7e6ecba29c5b4c9afcbd8ae2ca07622f75a439b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-cranelift/32.0.1/download\"],\n strip_prefix = \"wasmtime-cranelift-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-cranelift-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-environ-32.0.1\",\n sha256 = \"72985be5115421ea4f40bd3dc6081c0ced281171eba508c6d0cfe3e184a84e60\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-environ/32.0.1/download\"],\n strip_prefix = \"wasmtime-environ-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-environ-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-fiber-32.0.1\",\n sha256 = \"ff64b883df8e177c64b69ee68889c62913353bf20774ff5ce55aba0aa99aeb78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-fiber/32.0.1/download\"],\n strip_prefix = \"wasmtime-fiber-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-fiber-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-jit-icache-coherence-32.0.1\",\n sha256 = \"23ccb3dd740a0601addd260f4a6d91470cd3f7a2058efe46662054ca6b6da592\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-jit-icache-coherence/32.0.1/download\"],\n strip_prefix = \"wasmtime-jit-icache-coherence-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-jit-icache-coherence-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-math-32.0.1\",\n sha256 = \"7cdb839281525419d67958e37629d71da696b525756222d6cc1596df960a0112\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-math/32.0.1/download\"],\n strip_prefix = \"wasmtime-math-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-math-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-slab-32.0.1\",\n sha256 = \"06f9cbf0710c55c617a6cf016aecb6d76abaffb7b26511a6111808ff96d9233c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-slab/32.0.1/download\"],\n strip_prefix = \"wasmtime-slab-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-slab-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-versioned-export-macros-32.0.1\",\n sha256 = \"dbb192336c60c672de6d8d96e5ea9c92b11c41be78acf8af9bfecf6f1e72b546\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-versioned-export-macros/32.0.1/download\"],\n strip_prefix = \"wasmtime-versioned-export-macros-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-versioned-export-macros-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-32.0.1\",\n sha256 = \"7513ec128fbe590a33a10f3b144b86aaa633a65b857d108bad7b835877ae62bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-http-32.0.1\",\n sha256 = \"a53f8d62d9c85ae9845b2523765607f26e6f6923dfcb6e34e8e6bd14df77017c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-http/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-http-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-http-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wasi-io-32.0.1\",\n sha256 = \"f52b6decdc45591a05c698d66c50c6258a0741472ed28d0de51f13c71fd4583b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wasi-io/32.0.1/download\"],\n strip_prefix = \"wasmtime-wasi-io-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wasi-io-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-winch-32.0.1\",\n sha256 = \"3fcb97439811c7ff8283ee44ac13c1889b270a39187f2bac16889067d2a9f438\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-winch/32.0.1/download\"],\n strip_prefix = \"wasmtime-winch-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-winch-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wasmtime-wit-bindgen-32.0.1\",\n sha256 = \"5bd0a7ffc24aa19a2784849662d2ba93344a41bd956132da7b2f5fee41cdb7d9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wasmtime-wit-bindgen/32.0.1/download\"],\n strip_prefix = \"wasmtime-wit-bindgen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wasmtime-wit-bindgen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wast-35.0.2\",\n sha256 = \"2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wast/35.0.2/download\"],\n strip_prefix = \"wast-35.0.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wast-35.0.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-sys-0.3.95\",\n sha256 = \"4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-sys/0.3.95/download\"],\n strip_prefix = \"web-sys-0.3.95\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-sys-0.3.95.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__web-time-1.1.0\",\n sha256 = \"5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/web-time/1.1.0/download\"],\n strip_prefix = \"web-time-1.1.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.web-time-1.1.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-0.26.11\",\n sha256 = \"521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/0.26.11/download\"],\n strip_prefix = \"webpki-roots-0.26.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-0.26.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__webpki-roots-1.0.7\",\n sha256 = \"52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/webpki-roots/1.0.7/download\"],\n strip_prefix = \"webpki-roots-1.0.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.webpki-roots-1.0.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__which-5.0.0\",\n sha256 = \"9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/which/5.0.0/download\"],\n strip_prefix = \"which-5.0.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.which-5.0.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-32.0.1\",\n sha256 = \"b69703366897a920a393581773a0a928ad5547125b1db84099a875f105497068\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle/32.0.1/download\"],\n strip_prefix = \"wiggle-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-generate-32.0.1\",\n sha256 = \"3288f30a93cebce9bb5f85825bae0ba6ae11f1caa22e87e68b1195ddfc292cb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-generate/32.0.1/download\"],\n strip_prefix = \"wiggle-generate-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-generate-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wiggle-macro-32.0.1\",\n sha256 = \"3a7946f6957c3d1ab24584f5e8cf93f35af197eeaeab71abee77e4d422ec983e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wiggle-macro/32.0.1/download\"],\n strip_prefix = \"wiggle-macro-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wiggle-macro-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-0.3.9\",\n sha256 = \"5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi/0.3.9/download\"],\n strip_prefix = \"winapi-0.3.9\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-0.3.9.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-i686-pc-windows-gnu-0.4.0\",\n sha256 = \"ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-i686-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-util-0.1.11\",\n sha256 = \"c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-util/0.1.11/download\"],\n strip_prefix = \"winapi-util-0.1.11\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-util-0.1.11.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winapi-x86_64-pc-windows-gnu-0.4.0\",\n sha256 = \"712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download\"],\n strip_prefix = \"winapi-x86_64-pc-windows-gnu-0.4.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winch-codegen-32.0.1\",\n sha256 = \"1e7e8521de7cf48d6b6dd8c737b7ca72b40ce850b86a57b57ecf2e6f5bd233e5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winch-codegen/32.0.1/download\"],\n strip_prefix = \"winch-codegen-32.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winch-codegen-32.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-core-0.62.2\",\n sha256 = \"b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-core/0.62.2/download\"],\n strip_prefix = \"windows-core-0.62.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-core-0.62.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-implement-0.60.2\",\n sha256 = \"053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-implement/0.60.2/download\"],\n strip_prefix = \"windows-implement-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-implement-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-interface-0.59.3\",\n sha256 = \"3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-interface/0.59.3/download\"],\n strip_prefix = \"windows-interface-0.59.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-interface-0.59.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-link-0.2.1\",\n sha256 = \"f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-link/0.2.1/download\"],\n strip_prefix = \"windows-link-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-link-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-registry-0.6.1\",\n sha256 = \"02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-registry/0.6.1/download\"],\n strip_prefix = \"windows-registry-0.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-registry-0.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-result-0.4.1\",\n sha256 = \"7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-result/0.4.1/download\"],\n strip_prefix = \"windows-result-0.4.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-result-0.4.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-strings-0.5.1\",\n sha256 = \"7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-strings/0.5.1/download\"],\n strip_prefix = \"windows-strings-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-strings-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.45.0\",\n sha256 = \"75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.45.0/download\"],\n strip_prefix = \"windows-sys-0.45.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.45.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.48.0\",\n sha256 = \"677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.48.0/download\"],\n strip_prefix = \"windows-sys-0.48.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.48.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.52.0\",\n sha256 = \"282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.52.0/download\"],\n strip_prefix = \"windows-sys-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.59.0\",\n sha256 = \"1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.59.0/download\"],\n strip_prefix = \"windows-sys-0.59.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.59.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.60.2\",\n sha256 = \"f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.60.2/download\"],\n strip_prefix = \"windows-sys-0.60.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.60.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-sys-0.61.2\",\n sha256 = \"ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-sys/0.61.2/download\"],\n strip_prefix = \"windows-sys-0.61.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-sys-0.61.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.42.2\",\n sha256 = \"8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.42.2/download\"],\n strip_prefix = \"windows-targets-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.48.5\",\n sha256 = \"9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.48.5/download\"],\n strip_prefix = \"windows-targets-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.52.6\",\n sha256 = \"9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.52.6/download\"],\n strip_prefix = \"windows-targets-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows-targets-0.53.5\",\n sha256 = \"4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows-targets/0.53.5/download\"],\n strip_prefix = \"windows-targets-0.53.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows-targets-0.53.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.42.2\",\n sha256 = \"597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.48.5\",\n sha256 = \"2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.52.6\",\n sha256 = \"32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_gnullvm-0.53.1\",\n sha256 = \"a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.42.2\",\n sha256 = \"e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.48.5\",\n sha256 = \"dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.52.6\",\n sha256 = \"09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_aarch64_msvc-0.53.1\",\n sha256 = \"b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_aarch64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_aarch64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.42.2\",\n sha256 = \"c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.42.2/download\"],\n strip_prefix = \"windows_i686_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.48.5\",\n sha256 = \"a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.48.5/download\"],\n strip_prefix = \"windows_i686_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.52.6\",\n sha256 = \"8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnu-0.53.1\",\n sha256 = \"960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnu/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.52.6\",\n sha256 = \"0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_gnullvm-0.53.1\",\n sha256 = \"fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_i686_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.42.2\",\n sha256 = \"44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.42.2/download\"],\n strip_prefix = \"windows_i686_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.48.5\",\n sha256 = \"8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.48.5/download\"],\n strip_prefix = \"windows_i686_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.52.6\",\n sha256 = \"240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.52.6/download\"],\n strip_prefix = \"windows_i686_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_i686_msvc-0.53.1\",\n sha256 = \"1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_i686_msvc/0.53.1/download\"],\n strip_prefix = \"windows_i686_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_i686_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.42.2\",\n sha256 = \"8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.48.5\",\n sha256 = \"53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.52.6\",\n sha256 = \"147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnu-0.53.1\",\n sha256 = \"9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnu-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnu-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.42.2\",\n sha256 = \"26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.48.5\",\n sha256 = \"0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.52.6\",\n sha256 = \"24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_gnullvm-0.53.1\",\n sha256 = \"0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_gnullvm-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_gnullvm-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.42.2\",\n sha256 = \"9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.42.2/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.42.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.42.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.48.5\",\n sha256 = \"ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.48.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.48.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.52.6\",\n sha256 = \"589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.52.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.52.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__windows_x86_64_msvc-0.53.1\",\n sha256 = \"d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download\"],\n strip_prefix = \"windows_x86_64_msvc-0.53.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.windows_x86_64_msvc-0.53.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winnow-0.7.15\",\n sha256 = \"df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winnow/0.7.15/download\"],\n strip_prefix = \"winnow-0.7.15\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winnow-0.7.15.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__winx-0.36.4\",\n sha256 = \"3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/winx/0.36.4/download\"],\n strip_prefix = \"winx-0.36.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.winx-0.36.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.33.0\",\n sha256 = \"8fcf26778671a2327bd237a32c6f2d1d9bb0ec077e482b0839552b00d4566544\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.34.0\",\n sha256 = \"7e11ad55616555605a60a8b2d1d89e006c2076f46c465c892cc2c153b20d4b30\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.51.0\",\n sha256 = \"d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-0.57.1\",\n sha256 = \"1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen/0.57.1/download\"],\n strip_prefix = \"wit-bindgen-0.57.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-0.57.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.33.0\",\n sha256 = \"4b885a00e1c428fd12b7b7c4bccc4bad8b2a3ca0abe8eaf1e0f90adabb4c7ac7\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.34.0\",\n sha256 = \"163cee59d3d5ceec0b256735f3ab0dccac434afb0ec38c406276de9c5a11e906\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-core-0.51.0\",\n sha256 = \"ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-core/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-core-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-core-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.33.0\",\n sha256 = \"3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rt-0.34.0\",\n sha256 = \"744845cde309b8fa32408d6fb67456449278c66ea4dcd96de29797b302721f02\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rt/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rt-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rt-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.33.0\",\n sha256 = \"542608877814a54f6bea6b24dcbe249a2e293d67d709f4f8ec578d06b1c00730\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.34.0\",\n sha256 = \"f6919521fc7807f927a739181db93100ca7ed03c29509b84d5f96b27b2e49a9a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-0.51.0\",\n sha256 = \"b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.33.0\",\n sha256 = \"30d462025f670fff96606ddbfe62500255b4fe3de7298cd9cbabb2de3d567183\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.33.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.33.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.33.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.34.0\",\n sha256 = \"c967731fc5d50244d7241ecfc9302a8929db508eea3c601fbc5371b196ba38a5\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.34.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.34.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.34.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-bindgen-rust-macro-0.51.0\",\n sha256 = \"0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download\"],\n strip_prefix = \"wit-bindgen-rust-macro-0.51.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-bindgen-rust-macro-0.51.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.218.1\",\n sha256 = \"5152dd199894d1b3b0907738b1a3d2b2809cd492440204f5339cfa1bb4c9fc92\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.218.1/download\"],\n strip_prefix = \"wit-component-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.219.2\",\n sha256 = \"4b8479a29d81c063264c3ab89d496787ef78f8345317a2dcf6dece0f129e5fcd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.219.2/download\"],\n strip_prefix = \"wit-component-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-component-0.244.0\",\n sha256 = \"9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-component/0.244.0/download\"],\n strip_prefix = \"wit-component-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-component-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.218.1\",\n sha256 = \"f104473e8546f8096f1fa483d337101a98dc9525d67f4275816bcd177fe3e2be\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.218.1/download\"],\n strip_prefix = \"wit-parser-0.218.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.218.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.219.2\",\n sha256 = \"ca004bb251010fe956f4a5b9d4bf86b4e415064160dd6669569939e8cbf2504f\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.219.2/download\"],\n strip_prefix = \"wit-parser-0.219.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.219.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.228.0\",\n sha256 = \"399ce56e28d79fd3abfa03fdc7ceb89ffec4d4b2674fe3a92056b7d845653c38\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.228.0/download\"],\n strip_prefix = \"wit-parser-0.228.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.228.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wit-parser-0.244.0\",\n sha256 = \"ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wit-parser/0.244.0/download\"],\n strip_prefix = \"wit-parser-0.244.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wit-parser-0.244.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__witx-0.9.1\",\n sha256 = \"e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/witx/0.9.1/download\"],\n strip_prefix = \"witx-0.9.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.witx-0.9.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__writeable-0.6.3\",\n sha256 = \"1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/writeable/0.6.3/download\"],\n strip_prefix = \"writeable-0.6.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.writeable-0.6.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__wyz-0.5.1\",\n sha256 = \"05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/wyz/0.5.1/download\"],\n strip_prefix = \"wyz-0.5.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.wyz-0.5.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x25519-dalek-2.0.1\",\n sha256 = \"c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x25519-dalek/2.0.1/download\"],\n strip_prefix = \"x25519-dalek-2.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x25519-dalek-2.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-cert-0.2.5\",\n sha256 = \"1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-cert/0.2.5/download\"],\n strip_prefix = \"x509-cert-0.2.5\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-cert-0.2.5.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-ocsp-0.2.1\",\n sha256 = \"5e54e695a31f0fecb826cf59ae2093c941d7ef932a1f8508185dd23b29ce2e2e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-ocsp/0.2.1/download\"],\n strip_prefix = \"x509-ocsp-0.2.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-ocsp-0.2.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-parser-0.16.0\",\n sha256 = \"fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-parser/0.16.0/download\"],\n strip_prefix = \"x509-parser-0.16.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-parser-0.16.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x509-verify-0.4.8\",\n sha256 = \"c43a49bf845cd2f3aff9603a4276409dbf2b8fa4454d3e9501bf5b0028342964\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x509-verify/0.4.8/download\"],\n strip_prefix = \"x509-verify-0.4.8\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x509-verify-0.4.8.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86-0.52.0\",\n sha256 = \"2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86/0.52.0/download\"],\n strip_prefix = \"x86-0.52.0\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86-0.52.0.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__x86_64-0.15.4\",\n sha256 = \"f7841fa0098ceb15c567d93d3fae292c49e10a7662b4936d5f6a9728594555ba\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/x86_64/0.15.4/download\"],\n strip_prefix = \"x86_64-0.15.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.x86_64-0.15.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xattr-1.6.1\",\n sha256 = \"32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xattr/1.6.1/download\"],\n strip_prefix = \"xattr-1.6.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xattr-1.6.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__xz2-0.1.7\",\n sha256 = \"388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/xz2/0.1.7/download\"],\n strip_prefix = \"xz2-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.xz2-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yaml_serde-0.10.4\",\n sha256 = \"08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yaml_serde/0.10.4/download\"],\n strip_prefix = \"yaml_serde-0.10.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yaml_serde-0.10.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yansi-1.0.1\",\n sha256 = \"cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yansi/1.0.1/download\"],\n strip_prefix = \"yansi-1.0.1\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yansi-1.0.1.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yasna-0.5.2\",\n sha256 = \"e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yasna/0.5.2/download\"],\n strip_prefix = \"yasna-0.5.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yasna-0.5.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-0.8.2\",\n sha256 = \"abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke/0.8.2/download\"],\n strip_prefix = \"yoke-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__yoke-derive-0.8.2\",\n sha256 = \"de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/yoke-derive/0.8.2/download\"],\n strip_prefix = \"yoke-derive-0.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.yoke-derive-0.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-0.8.48\",\n sha256 = \"eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy/0.8.48/download\"],\n strip_prefix = \"zerocopy-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerocopy-derive-0.8.48\",\n sha256 = \"70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerocopy-derive/0.8.48/download\"],\n strip_prefix = \"zerocopy-derive-0.8.48\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerocopy-derive-0.8.48.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-0.1.7\",\n sha256 = \"69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom/0.1.7/download\"],\n strip_prefix = \"zerofrom-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerofrom-derive-0.1.7\",\n sha256 = \"11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerofrom-derive/0.1.7/download\"],\n strip_prefix = \"zerofrom-derive-0.1.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerofrom-derive-0.1.7.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize-1.8.2\",\n sha256 = \"b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize/1.8.2/download\"],\n strip_prefix = \"zeroize-1.8.2\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize-1.8.2.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zeroize_derive-1.4.3\",\n sha256 = \"85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zeroize_derive/1.4.3/download\"],\n strip_prefix = \"zeroize_derive-1.4.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zeroize_derive-1.4.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerotrie-0.2.4\",\n sha256 = \"0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerotrie/0.2.4/download\"],\n strip_prefix = \"zerotrie-0.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerotrie-0.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-0.11.6\",\n sha256 = \"90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec/0.11.6/download\"],\n strip_prefix = \"zerovec-0.11.6\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-0.11.6.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zerovec-derive-0.11.3\",\n sha256 = \"625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zerovec-derive/0.11.3/download\"],\n strip_prefix = \"zerovec-derive-0.11.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zerovec-derive-0.11.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zmij-1.0.21\",\n sha256 = \"b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zmij/1.0.21/download\"],\n strip_prefix = \"zmij-1.0.21\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zmij-1.0.21.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-0.13.3\",\n sha256 = \"e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd/0.13.3/download\"],\n strip_prefix = \"zstd-0.13.3\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-0.13.3.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-safe-7.2.4\",\n sha256 = \"8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-safe/7.2.4/download\"],\n strip_prefix = \"zstd-safe-7.2.4\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-safe-7.2.4.bazel\"),\n )\n\n maybe(\n http_archive,\n name = \"oak_std_crates_index__zstd-sys-2.0.16-zstd.1.5.7\",\n sha256 = \"91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748\",\n type = \"tar.gz\",\n urls = [\"https://static.crates.io/crates/zstd-sys/2.0.16+zstd.1.5.7/download\"],\n strip_prefix = \"zstd-sys-2.0.16+zstd.1.5.7\",\n build_file = Label(\"@oak_std_crates_index//oak_std_crates_index:BUILD.zstd-sys-2.0.16+zstd.1.5.7.bazel\"),\n )\n\n return [\n struct(repo=\"oak_std_crates_index__acpi-5.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aead-0.5.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aes-gcm-0.10.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__aml-0.16.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__anyhow-1.0.102\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__arrayvec-0.7.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__assertables-7.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-stream-0.3.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__async-trait-0.1.89\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__atomic_refcell-0.1.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__axum-0.7.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__base64-0.21.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bincode-1.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitflags-2.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bitvec-1.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__bytes-1.11.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__chrono-0.4.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ciborium-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__clap-4.6.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__colored-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-fds-0.3.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__command-group-5.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__const-oid-0.9.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__coset-0.3.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__criterion-macro-0.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__derive_builder-0.20.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ecdsa-0.16.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ed25519-dalek-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__elf-0.7.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__env_logger-0.11.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__flate2-1.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__futures-util-0.3.32\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__getrandom-0.2.17\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__goblin-0.8.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__googletest-0.14.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hashbrown-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hex-0.4.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hkdf-0.12.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hmac-0.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hpke-0.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-1.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__http-body-util-0.1.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__humantime-serde-1.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-1.9.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__hyper-util-0.1.20\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__indicatif-0.17.11\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__itertools-0.13.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jni-0.21.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__jwt-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lazy_static-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__libm-0.2.16\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__linked_list_allocator-0.10.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__lock_api-0.4.14\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__log-0.4.29\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__maplit-1.0.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__mockall-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nix-0.27.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__nom-8.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-client-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__oci-spec-0.8.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__once_cell-1.21.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__openssl-0.10.78\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-appender-tracing-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-otlp-0.31.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry-proto-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__opentelemetry_sdk-0.31.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__os_pipe-1.2.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ouroboros-0.18.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p256-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__p384-0.13.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__parking_lot-0.12.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pem-3.0.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pkcs8-0.10.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__port_check-0.1.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__portpicker-0.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__pprof-0.15.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__primeorder-0.13.6\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__procfs-0.16.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__proptest-1.11.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-build-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-derive-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__prost-types-0.14.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__quote-1.0.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand-0.9.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_chacha-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rand_core-0.6.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rcgen-0.13.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-1.12.3\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__regex-lite-0.1.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__reqwest-0.12.28\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rlsf-0.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rmcp-macros-0.8.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rpassword-7.4.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rs_merkle-1.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rsa-0.9.10\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rtnetlink-0.14.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-0.23.38\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pemfile-2.2.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__rustls-pki-types-1.14.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__self_cell-1.2.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde-1.0.228\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__serde_json-1.0.149\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha2-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__sha3-0.10.9\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-0.3.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__signal-hook-tokio-0.3.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__spinning_top-0.3.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__static_assertions-1.1.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__strum-0.27.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syn-2.0.117\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__syslog-6.1.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tar-0.4.45\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tempfile-3.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__thiserror-2.0.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tikv-jemallocator-0.5.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__time-macros-0.2.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-1.52.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-stream-0.1.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-util-0.7.18\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tokio-vsock-0.7.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__toml-0.8.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tonic-prost-build-0.14.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-0.4.13\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tower-http-0.6.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-0.1.44\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tracing-subscriber-0.3.23\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__tungstenite-0.27.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__uart_16550-0.3.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ubyte-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__ureq-2.12.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__url-2.5.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__waki-0.5.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__walkdir-2.5.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmi-0.31.2\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wasmtime-wasi-http-32.0.1\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__which-5.0.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__wit-bindgen-0.33.0\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-cert-0.2.5\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x509-verify-0.4.8\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__x86_64-0.15.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__xz2-0.1.7\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__yaml_serde-0.10.4\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zerocopy-0.8.48\", is_dev_dep = False),\n struct(repo=\"oak_std_crates_index__zeroize-1.8.2\", is_dev_dep = False),\n ]\n" } } }, @@ -6922,7 +6346,7 @@ "https://static.crates.io/crates/env_logger/0.11.10/download" ], "strip_prefix": "env_logger-0.11.10", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"env_logger\",\n deps = [\n \"@oak_std_crates_index__anstream-1.0.0//:anstream\",\n \"@oak_std_crates_index__anstyle-1.0.14//:anstyle\",\n \"@oak_std_crates_index__env_filter-1.0.1//:env_filter\",\n \"@oak_std_crates_index__jiff-0.2.24//:jiff\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"auto-color\",\n \"color\",\n \"default\",\n \"humantime\",\n \"regex\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=env_logger\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.11.10\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"env_logger\",\n deps = [\n \"@oak_std_crates_index__anstream-1.0.0//:anstream\",\n \"@oak_std_crates_index__anstyle-1.0.14//:anstyle\",\n \"@oak_std_crates_index__env_filter-1.0.1//:env_filter\",\n \"@oak_std_crates_index__jiff-0.2.23//:jiff\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"auto-color\",\n \"color\",\n \"default\",\n \"humantime\",\n \"regex\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=env_logger\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.11.10\",\n)\n" } }, "oak_std_crates_index__equator-0.4.2": { @@ -8042,7 +7466,7 @@ "https://static.crates.io/crates/hyper-rustls/0.27.9/download" ], "strip_prefix": "hyper-rustls-0.27.9", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hyper_rustls\",\n deps = [\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\",\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"http1\",\n \"ring\",\n \"tls12\",\n \"webpki-roots\",\n \"webpki-tokio\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hyper-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.9\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"hyper_rustls\",\n deps = [\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\",\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\",\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"http1\",\n \"ring\",\n \"tls12\",\n \"webpki-roots\",\n \"webpki-tokio\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=hyper-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.9\",\n)\n" } }, "oak_std_crates_index__hyper-timeout-0.5.2": { @@ -8541,36 +7965,36 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"itoa\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=itoa\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"1.0.18\",\n)\n" } }, - "oak_std_crates_index__jiff-0.2.24": { + "oak_std_crates_index__jiff-0.2.23": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d", + "sha256": "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/jiff/0.2.24/download" + "https://static.crates.io/crates/jiff/0.2.23/download" ], - "strip_prefix": "jiff-0.2.24", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"jiff\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.24\",\n)\n" + "strip_prefix": "jiff-0.2.23", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"jiff\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"alloc\",\n \"std\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.23\",\n)\n" } }, - "oak_std_crates_index__jiff-static-0.2.24": { + "oak_std_crates_index__jiff-static-0.2.23": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7", + "sha256": "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/jiff-static/0.2.24/download" + "https://static.crates.io/crates/jiff-static/0.2.23/download" ], - "strip_prefix": "jiff-static-0.2.24", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"jiff_static\",\n deps = [\n \"@oak_std_crates_index__proc-macro2-1.0.106//:proc_macro2\",\n \"@oak_std_crates_index__quote-1.0.45//:quote\",\n \"@oak_std_crates_index__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff-static\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.24\",\n)\n" + "strip_prefix": "jiff-static-0.2.23", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"jiff_static\",\n deps = [\n \"@oak_std_crates_index__proc-macro2-1.0.106//:proc_macro2\",\n \"@oak_std_crates_index__quote-1.0.45//:quote\",\n \"@oak_std_crates_index__syn-2.0.117//:syn\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=jiff-static\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.2.23\",\n)\n" } }, "oak_std_crates_index__jni-0.21.1": { @@ -10415,7 +9839,7 @@ "https://static.crates.io/crates/pprof/0.15.0/download" ], "strip_prefix": "pprof-0.15.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"pprof\",\n deps = [\n \"@oak_std_crates_index__aligned-vec-0.6.4//:aligned_vec\",\n \"@oak_std_crates_index__backtrace-0.3.76//:backtrace\",\n \"@oak_std_crates_index__cfg-if-1.0.4//:cfg_if\",\n \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n \"@oak_std_crates_index__findshlibs-0.10.2//:findshlibs\",\n \"@oak_std_crates_index__inferno-0.11.21//:inferno\",\n \"@oak_std_crates_index__libc-0.2.185//:libc\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__nix-0.26.4//:nix\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__pprof-0.15.0//:build_script_build\",\n \"@oak_std_crates_index__prost-0.12.6//:prost\",\n \"@oak_std_crates_index__smallvec-1.15.1//:smallvec\",\n \"@oak_std_crates_index__spin-0.10.0//:spin\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.3//:symbolic_demangle\",\n \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n ],\n proc_macro_deps = [\n \"@oak_std_crates_index__prost-derive-0.12.6//:prost_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.15.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n deps = [\n \"@oak_std_crates_index__prost-build-0.12.6//:prost_build\",\n \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n ],\n edition = \"2021\",\n pkg_name = \"pprof\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.15.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"pprof\",\n deps = [\n \"@oak_std_crates_index__aligned-vec-0.6.4//:aligned_vec\",\n \"@oak_std_crates_index__backtrace-0.3.76//:backtrace\",\n \"@oak_std_crates_index__cfg-if-1.0.4//:cfg_if\",\n \"@oak_std_crates_index__criterion-0.5.1//:criterion\",\n \"@oak_std_crates_index__findshlibs-0.10.2//:findshlibs\",\n \"@oak_std_crates_index__inferno-0.11.21//:inferno\",\n \"@oak_std_crates_index__libc-0.2.185//:libc\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__nix-0.26.4//:nix\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__pprof-0.15.0//:build_script_build\",\n \"@oak_std_crates_index__prost-0.12.6//:prost\",\n \"@oak_std_crates_index__smallvec-1.15.1//:smallvec\",\n \"@oak_std_crates_index__spin-0.10.0//:spin\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.2//:symbolic_demangle\",\n \"@oak_std_crates_index__tempfile-3.27.0//:tempfile\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n ],\n proc_macro_deps = [\n \"@oak_std_crates_index__prost-derive-0.12.6//:prost_derive\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.15.0\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"_protobuf\",\n \"cpp\",\n \"criterion\",\n \"default\",\n \"flamegraph\",\n \"frame-pointer\",\n \"inferno\",\n \"prost\",\n \"prost-build\",\n \"prost-codec\",\n \"prost-derive\",\n \"sha2\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n deps = [\n \"@oak_std_crates_index__prost-build-0.12.6//:prost_build\",\n \"@oak_std_crates_index__sha2-0.10.9//:sha2\",\n ],\n edition = \"2021\",\n pkg_name = \"pprof\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=pprof\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.15.0\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "oak_std_crates_index__ppv-lite86-0.2.21": { @@ -11311,7 +10735,7 @@ "https://static.crates.io/crates/reqwest/0.12.28/download" ], "strip_prefix": "reqwest-0.12.28", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"reqwest\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__futures-core-0.3.32//:futures_core\",\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__serde-1.0.228//:serde\",\n \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n \"@oak_std_crates_index__serde_urlencoded-0.7.1//:serde_urlencoded\",\n \"@oak_std_crates_index__sync_wrapper-1.0.2//:sync_wrapper\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # aarch64-apple-darwin\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-unknown-unknown\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-wasip2\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-none\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-none\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls\",\n \"__rustls-ring\",\n \"__tls\",\n \"blocking\",\n \"json\",\n \"rustls-tls\",\n \"rustls-tls-webpki-roots\",\n \"rustls-tls-webpki-roots-no-provider\",\n \"stream\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=reqwest\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.12.28\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"reqwest\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__futures-core-0.3.32//:futures_core\",\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__serde-1.0.228//:serde\",\n \"@oak_std_crates_index__serde_json-1.0.149//:serde_json\",\n \"@oak_std_crates_index__serde_urlencoded-0.7.1//:serde_urlencoded\",\n \"@oak_std_crates_index__sync_wrapper-1.0.2//:sync_wrapper\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # aarch64-apple-darwin\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # aarch64-apple-darwin\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-unknown-unknown\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [\n \"@oak_std_crates_index__js-sys-0.3.95//:js_sys\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-0.2.118//:wasm_bindgen\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-bindgen-futures-0.4.68//:wasm_bindgen_futures\", # cfg(target_arch = \"wasm32\")\n \"@oak_std_crates_index__wasm-streams-0.4.2//:wasm_streams\", # wasm32-wasip2\n \"@oak_std_crates_index__web-sys-0.3.95//:web_sys\", # cfg(target_arch = \"wasm32\")\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-linux-gnu\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"@oak_std_crates_index__futures-channel-0.3.32//:futures_channel\", # x86_64-unknown-none\n \"@oak_std_crates_index__http-body-1.0.1//:http_body\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__http-body-util-0.1.3//:http_body_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-1.9.0//:hyper\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__hyper-rustls-0.27.9//:hyper_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__hyper-util-0.1.20//:hyper_util\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__log-0.4.29//:log\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__percent-encoding-2.3.2//:percent_encoding\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__pin-project-lite-0.2.17//:pin_project_lite\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\", # x86_64-unknown-none\n \"@oak_std_crates_index__tokio-util-0.7.18//:tokio_util\", # x86_64-unknown-none\n \"@oak_std_crates_index__tower-0.5.3//:tower\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-http-0.6.8//:tower_http\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__tower-service-0.3.3//:tower_service\", # cfg(not(target_arch = \"wasm32\"))\n \"@oak_std_crates_index__webpki-roots-1.0.7//:webpki_roots\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls\",\n \"__rustls-ring\",\n \"__tls\",\n \"blocking\",\n \"json\",\n \"rustls-tls\",\n \"rustls-tls-webpki-roots\",\n \"rustls-tls-webpki-roots-no-provider\",\n \"stream\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=reqwest\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.12.28\",\n)\n" } }, "oak_std_crates_index__rfc6979-0.4.0": { @@ -11618,20 +11042,20 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rustls\",\n deps = [\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n \"@oak_std_crates_index__rustls-0.22.4//:build_script_build\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__rustls-webpki-0.102.8//:webpki\",\n \"@oak_std_crates_index__subtle-2.6.1//:subtle\",\n \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n ],\n aliases = {\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\": \"pki_types\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"log\",\n \"logging\",\n \"ring\",\n \"tls12\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.22.4\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"log\",\n \"logging\",\n \"ring\",\n \"tls12\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n ],\n edition = \"2021\",\n pkg_name = \"rustls\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.22.4\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, - "oak_std_crates_index__rustls-0.23.39": { + "oak_std_crates_index__rustls-0.23.38": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "7c2c118cb077cca2822033836dfb1b975355dfb784b5e8da48f7b6c5db74e60e", + "sha256": "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/rustls/0.23.39/download" + "https://static.crates.io/crates/rustls/0.23.38/download" ], - "strip_prefix": "rustls-0.23.39", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rustls\",\n deps = [\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n \"@oak_std_crates_index__rustls-0.23.39//:build_script_build\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__rustls-webpki-0.103.13//:webpki\",\n \"@oak_std_crates_index__subtle-2.6.1//:subtle\",\n \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n ],\n aliases = {\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\": \"pki_types\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.23.39\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n ],\n edition = \"2021\",\n pkg_name = \"rustls\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.23.39\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "strip_prefix": "rustls-0.23.38", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"rustls\",\n deps = [\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n \"@oak_std_crates_index__rustls-0.23.38//:build_script_build\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__rustls-webpki-0.103.13//:webpki\",\n \"@oak_std_crates_index__subtle-2.6.1//:subtle\",\n \"@oak_std_crates_index__zeroize-1.8.2//:zeroize\",\n ],\n aliases = {\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\": \"pki_types\",\n },\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.23.38\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"log\",\n \"logging\",\n \"ring\",\n \"std\",\n \"tls12\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n link_deps = [\n \"@oak_std_crates_index__ring-0.17.14//:ring\",\n ],\n edition = \"2021\",\n pkg_name = \"rustls\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"0.23.38\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "oak_std_crates_index__rustls-native-certs-0.8.3": { @@ -12562,36 +11986,36 @@ "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_proc_macro\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_proc_macro(\n name = \"svgbobdoc\",\n deps = [\n \"@oak_std_crates_index__base64-0.13.1//:base64\",\n \"@oak_std_crates_index__proc-macro2-1.0.106//:proc_macro2\",\n \"@oak_std_crates_index__quote-1.0.45//:quote\",\n \"@oak_std_crates_index__syn-1.0.109//:syn\",\n \"@oak_std_crates_index__unicode-width-0.1.14//:unicode_width\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=svgbobdoc\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.3.0\",\n)\n" } }, - "oak_std_crates_index__symbolic-common-12.18.3": { + "oak_std_crates_index__symbolic-common-12.18.2": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "332615d90111d8eeaf86a84dc9bbe9f65d0d8c5cf11b4caccedc37754eb0dcfd", + "sha256": "4bbc8b4f883265fb2207a0d6ce67095f4bd6cf13e5f9183eb8b3e73fa1b2466a", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/symbolic-common/12.18.3/download" + "https://static.crates.io/crates/symbolic-common/12.18.2/download" ], - "strip_prefix": "symbolic-common-12.18.3", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_common\",\n deps = [\n \"@oak_std_crates_index__debugid-0.8.0//:debugid\",\n \"@oak_std_crates_index__memmap2-0.9.10//:memmap2\",\n \"@oak_std_crates_index__stable_deref_trait-1.2.1//:stable_deref_trait\",\n \"@oak_std_crates_index__uuid-1.23.1//:uuid\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-common\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.3\",\n)\n" + "strip_prefix": "symbolic-common-12.18.2", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_common\",\n deps = [\n \"@oak_std_crates_index__debugid-0.8.0//:debugid\",\n \"@oak_std_crates_index__memmap2-0.9.10//:memmap2\",\n \"@oak_std_crates_index__stable_deref_trait-1.2.1//:stable_deref_trait\",\n \"@oak_std_crates_index__uuid-1.23.1//:uuid\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-common\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.2\",\n)\n" } }, - "oak_std_crates_index__symbolic-demangle-12.18.3": { + "oak_std_crates_index__symbolic-demangle-12.18.2": { "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive", "attributes": { "patch_args": [], "patch_tool": "", "patches": [], "remote_patch_strip": 1, - "sha256": "912017718eb4d21930546245af9a3475c9dccf15675a5c215664e76621afc471", + "sha256": "8eda470a26ea40eb5cafc35487718e23a2f19153d3a589affb9e8f7fa1aa73b3", "type": "tar.gz", "urls": [ - "https://static.crates.io/crates/symbolic-demangle/12.18.3/download" + "https://static.crates.io/crates/symbolic-demangle/12.18.2/download" ], - "strip_prefix": "symbolic-demangle-12.18.3", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_demangle\",\n deps = [\n \"@oak_std_crates_index__cpp_demangle-0.4.5//:cpp_demangle\",\n \"@oak_std_crates_index__rustc-demangle-0.1.27//:rustc_demangle\",\n \"@oak_std_crates_index__symbolic-common-12.18.3//:symbolic_common\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.3//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.3\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"symbolic-demangle\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"12.18.3\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" + "strip_prefix": "symbolic-demangle-12.18.2", + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\n \"@rules_rust//cargo:defs.bzl\",\n \"cargo_build_script\",\n \"cargo_toml_env_vars\",\n)\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"symbolic_demangle\",\n deps = [\n \"@oak_std_crates_index__cpp_demangle-0.4.5//:cpp_demangle\",\n \"@oak_std_crates_index__rustc-demangle-0.1.27//:rustc_demangle\",\n \"@oak_std_crates_index__symbolic-common-12.18.2//:symbolic_common\",\n \"@oak_std_crates_index__symbolic-demangle-12.18.2//:build_script_build\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"12.18.2\",\n)\n\ncargo_build_script(\n name = \"_bs\",\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \"**/*.rs\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"cpp\",\n \"cpp_demangle\",\n \"rust\",\n \"rustc-demangle\",\n ],\n crate_name = \"build_script_build\",\n crate_root = \"build.rs\",\n data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n edition = \"2021\",\n pkg_name = \"symbolic-demangle\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=symbolic-demangle\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n version = \"12.18.2\",\n visibility = [\"//visibility:private\"],\n)\n\nalias(\n name = \"build_script_build\",\n actual = \":_bs\",\n tags = [\"manual\"],\n)\n" } }, "oak_std_crates_index__syn-1.0.109": { @@ -13103,7 +12527,7 @@ "https://static.crates.io/crates/tokio-rustls/0.26.4/download" ], "strip_prefix": "tokio-rustls-0.26.4", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_rustls\",\n deps = [\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"logging\",\n \"tls12\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"ring\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"ring\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"ring\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.26.4\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_rustls\",\n deps = [\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"logging\",\n \"tls12\",\n ] + select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [\n \"ring\", # aarch64-apple-darwin\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [\n \"ring\", # x86_64-unknown-linux-gnu\n ],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [\n \"ring\", # x86_64-unknown-none\n ],\n \"//conditions:default\": [],\n }),\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-rustls\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.26.4\",\n)\n" } }, "oak_std_crates_index__tokio-stream-0.1.18": { @@ -13135,7 +12559,7 @@ "https://static.crates.io/crates/tokio-tungstenite/0.27.0/download" ], "strip_prefix": "tokio-tungstenite-0.27.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_tungstenite\",\n deps = [\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__rustls-native-certs-0.8.3//:rustls_native_certs\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"connect\",\n \"default\",\n \"handshake\",\n \"rustls\",\n \"rustls-native-certs\",\n \"rustls-pki-types\",\n \"rustls-tls-native-roots\",\n \"stream\",\n \"tokio-rustls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tokio_tungstenite\",\n deps = [\n \"@oak_std_crates_index__futures-util-0.3.32//:futures_util\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__rustls-native-certs-0.8.3//:rustls_native_certs\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__tokio-1.52.1//:tokio\",\n \"@oak_std_crates_index__tokio-rustls-0.26.4//:tokio_rustls\",\n \"@oak_std_crates_index__tungstenite-0.27.0//:tungstenite\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"connect\",\n \"default\",\n \"handshake\",\n \"rustls\",\n \"rustls-native-certs\",\n \"rustls-pki-types\",\n \"rustls-tls-native-roots\",\n \"stream\",\n \"tokio-rustls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tokio-tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" } }, "oak_std_crates_index__tokio-util-0.7.18": { @@ -13487,7 +12911,7 @@ "https://static.crates.io/crates/tungstenite/0.27.0/download" ], "strip_prefix": "tungstenite-0.27.0", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tungstenite\",\n deps = [\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__data-encoding-2.10.0//:data_encoding\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__httparse-1.10.1//:httparse\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rand-0.9.4//:rand\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__sha1-0.10.6//:sha1\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__utf-8-0.7.6//:utf8\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"data-encoding\",\n \"default\",\n \"handshake\",\n \"http\",\n \"httparse\",\n \"rustls\",\n \"rustls-pki-types\",\n \"sha1\",\n \"url\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"tungstenite\",\n deps = [\n \"@oak_std_crates_index__bytes-1.11.1//:bytes\",\n \"@oak_std_crates_index__data-encoding-2.10.0//:data_encoding\",\n \"@oak_std_crates_index__http-1.4.0//:http\",\n \"@oak_std_crates_index__httparse-1.10.1//:httparse\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__rand-0.9.4//:rand\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__sha1-0.10.6//:sha1\",\n \"@oak_std_crates_index__thiserror-2.0.18//:thiserror\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__utf-8-0.7.6//:utf8\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"__rustls-tls\",\n \"data-encoding\",\n \"default\",\n \"handshake\",\n \"http\",\n \"httparse\",\n \"rustls\",\n \"rustls-pki-types\",\n \"sha1\",\n \"url\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2021\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=tungstenite\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"0.27.0\",\n)\n" } }, "oak_std_crates_index__typenum-1.20.0": { @@ -13695,7 +13119,7 @@ "https://static.crates.io/crates/ureq/2.12.1/download" ], "strip_prefix": "ureq-2.12.1", - "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"ureq\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__rustls-0.23.39//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__webpki-roots-0.26.11//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"gzip\",\n \"tls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=ureq\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.12.1\",\n)\n" + "build_file_content": "###############################################################################\n# @generated\n# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To \n# regenerate this file, run the following:\n#\n# bazel mod show_repo 'oak'\n###############################################################################\n\nload(\"@rules_rust//cargo:defs.bzl\", \"cargo_toml_env_vars\")\n\nload(\"@rules_rust//rust:defs.bzl\", \"rust_library\")\n\n# buildifier: disable=bzl-visibility\nload(\"@rules_rust//crate_universe/private:selects.bzl\", \"selects\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\ncargo_toml_env_vars(\n name = \"cargo_toml_env_vars\",\n src = \"Cargo.toml\",\n)\n\nrust_library(\n name = \"ureq\",\n deps = [\n \"@oak_std_crates_index__base64-0.22.1//:base64\",\n \"@oak_std_crates_index__flate2-1.1.9//:flate2\",\n \"@oak_std_crates_index__log-0.4.29//:log\",\n \"@oak_std_crates_index__once_cell-1.21.4//:once_cell\",\n \"@oak_std_crates_index__rustls-0.23.38//:rustls\",\n \"@oak_std_crates_index__rustls-pki-types-1.14.0//:rustls_pki_types\",\n \"@oak_std_crates_index__url-2.5.8//:url\",\n \"@oak_std_crates_index__webpki-roots-0.26.11//:webpki_roots\",\n ],\n compile_data = glob(\n allow_empty = True,\n include = [\"**\"],\n exclude = [\n \"**/* *\",\n \".tmp_git_root/**/*\",\n \"BUILD\",\n \"BUILD.bazel\",\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n ],\n ),\n crate_features = [\n \"default\",\n \"gzip\",\n \"tls\",\n ],\n crate_root = \"src/lib.rs\",\n edition = \"2018\",\n rustc_env_files = [\n \":cargo_toml_env_vars\",\n ],\n rustc_flags = [\n \"--cap-lints=allow\",\n ],\n srcs = glob(\n allow_empty = True,\n include = [\"**/*.rs\"],\n ),\n tags = [\n \"cargo-bazel\",\n \"crate-name=ureq\",\n \"manual\",\n \"noclippy\",\n \"norustfmt\",\n ],\n target_compatible_with = select({\n \"@rules_rust//rust/platform:aarch64-apple-darwin\": [],\n \"@rules_rust//rust/platform:wasm32-unknown-unknown\": [],\n \"@rules_rust//rust/platform:wasm32-wasip2\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-linux-gnu\": [],\n \"@rules_rust//rust/platform:x86_64-unknown-none\": [],\n \"//conditions:default\": [\"@platforms//:incompatible\"],\n }),\n version = \"2.12.1\",\n)\n" } }, "oak_std_crates_index__url-2.5.8": { diff --git a/oak_private_memory/database/BUILD b/oak_private_memory/database/BUILD index 5fe42d87ee..181668ad10 100644 --- a/oak_private_memory/database/BUILD +++ b/oak_private_memory/database/BUILD @@ -68,7 +68,6 @@ rust_library( "@oak_crates_index//:tonic", "@pm_crates//:cxx", "@pm_crates//:rand", - "@pm_crates//:uuid", ], ) diff --git a/oak_private_memory/database/icing.rs b/oak_private_memory/database/icing.rs index e254067975..eb5a3d4714 100644 --- a/oak_private_memory/database/icing.rs +++ b/oak_private_memory/database/icing.rs @@ -635,7 +635,8 @@ impl IcingMetaDatabase { for view in &views.llm_views { let mut view = view.clone(); if view.id.is_empty() { - view.id = uuid::Uuid::new_v4().to_string(); + let random: u128 = rand::rng().random::(); + view.id = format!("{:032x}", random); } if let Some(pending_view_metadata) = PendingLlmViewMetadata::new(memory, &view, &blob_id)?