WORKSPACE: update rules_rust and replace cargo-raze with crate_universe

cargo-raze is deprecated, unmaintained and doesn't build anymore.
create_universe reduces the clutter inside the repo and allows simpler
setup of rust requirements.

Change-Id: Iebe88902ae469a28c0378707447f7d97006d0479
Reviewed-on: https://review.monogon.dev/c/monogon/+/2749
Reviewed-by: Lorenz Brun <lorenz@monogon.tech>
Tested-by: Jenkins CI
diff --git a/WORKSPACE b/WORKSPACE
index 69663fb..d06299e 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -104,37 +104,61 @@
 # Rust rules
 http_archive(
     name = "rules_rust",
+    integrity = "sha256-ZQGWDD5NoySV0eEAfe0HaaU0yxlcMN6jaqVPnYo/A2E=",
     patch_args = ["-p1"],
     patches = [
         "//third_party:rust-uefi-platform.patch",
         "//third_party:rust-prost-nostd.patch",
         "//third_party:rust-reproducibility.patch",
     ],
-    sha256 = "c46bdafc582d9bd48a6f97000d05af4829f62d5fee10a2a3edddf2f3d9a232c1",
-    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.28.0/rules_rust-v0.28.0.tar.gz"],
+    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.38.0/rules_rust-v0.38.0.tar.gz"],
 )
 
 load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
 
 rules_rust_dependencies()
 
-# Rust Toolchains
 rust_register_toolchains(
     edition = "2021",
     extra_target_triples = [
+        "x86_64-unknown-uefi",
+    ],
+    versions = ["1.71.0"],
+)
+
+load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")
+
+crate_universe_dependencies()
+
+load("@rules_rust//crate_universe:defs.bzl", "crates_repository")
+
+crates_repository(
+    name = "crate_index",
+    cargo_lockfile = "//third_party/rust:Cargo.lock",
+    generate_binaries = True,
+    lockfile = "//third_party/rust:Cargo.Bazel.lock",
+    manifests = ["//third_party/rust:Cargo.toml"],
+)
+
+load("@crate_index//:defs.bzl", "crate_repositories")
+
+crate_repositories()
+
+crates_repository(
+    name = "crate_index_efi",
+    cargo_lockfile = "//third_party/rust_efi:Cargo.lock",
+    generate_binaries = True,
+    lockfile = "//third_party/rust_efi:Cargo.Bazel.lock",
+    manifests = ["//third_party/rust_efi:Cargo.toml"],
+    supported_platform_triples = [
         "x86_64-unknown-linux-gnu",
         "x86_64-unknown-uefi",
     ],
-    versions = ["1.71.0"],  # Linking EFI binaries is broken in 1.72
 )
 
-load("//third_party/rust/cargo:crates.bzl", "raze_fetch_remote_crates")
+load("@crate_index_efi//:defs.bzl", crate_efi_repositories = "crate_repositories")
 
-raze_fetch_remote_crates()
-
-load("//third_party/rust_efi/cargo:crates.bzl", "rsefi_fetch_remote_crates")
-
-rsefi_fetch_remote_crates()
+crate_efi_repositories()
 
 load("@rules_rust//proto/prost:repositories.bzl", "rust_prost_dependencies")
 
diff --git a/build/rust/BUILD.bazel b/build/rust/BUILD.bazel
index 90de9c8..ffc1682 100644
--- a/build/rust/BUILD.bazel
+++ b/build/rust/BUILD.bazel
@@ -1,11 +1,19 @@
 load("@rules_rust//proto/prost:defs.bzl", "rust_prost_toolchain")
+load("@rules_rust//rust:defs.bzl", "rust_library_group")
+
+rust_library_group(
+    name = "prost_runtime_efi",
+    deps = [
+        "@crate_index_efi//:prost",
+    ],
+)
 
 rust_prost_toolchain(
     name = "prost_efi_toolchain_impl",
     is_nostd = True,
-    prost_plugin = "@raze__protoc_gen_prost__0_2_3//:cargo_bin_protoc_gen_prost",
-    prost_runtime = "@rsefi__prost__0_12_1//:prost",
-    prost_types = "@rsefi__prost_types__0_12_1//:prost_types",
+    prost_plugin = "@crate_index//:protoc-gen-prost__protoc-gen-prost",
+    prost_runtime = ":prost_runtime_efi",
+    prost_types = "@crate_index_efi//:prost-types",
     proto_compiler = "@com_google_protobuf//:protoc",
     # This defaults to a non-empty value, which triggers an error that not all
     # tonic flags are set. We do not want tonic, so explicitly set this to
diff --git a/metropolis/handbook/defs.bzl b/metropolis/handbook/defs.bzl
index c875980..8944e9a 100644
--- a/metropolis/handbook/defs.bzl
+++ b/metropolis/handbook/defs.bzl
@@ -105,7 +105,7 @@
             doc = "The mdbook tool.",
             executable = True,
             cfg = "host",
-            default = "@dev_source_monogon//third_party/rust:cargo_bin_mdbook",
+            default = "@crate_index//:mdbook__mdbook",
         ),
     },
 )
diff --git a/metropolis/node/core/abloader/BUILD.bazel b/metropolis/node/core/abloader/BUILD.bazel
index 2e382fa..d56a391 100644
--- a/metropolis/node/core/abloader/BUILD.bazel
+++ b/metropolis/node/core/abloader/BUILD.bazel
@@ -10,9 +10,9 @@
     ],
     deps = [
         "//metropolis/node/core/abloader/spec:abloader_proto_rs",
-        "@rsefi__prost__0_12_1//:prost",
-        "@rsefi__uefi__0_24_0//:uefi",
-        "@rsefi__uefi_services__0_21_0//:uefi_services",
+        "@crate_index_efi//:prost",
+        "@crate_index_efi//:uefi",
+        "@crate_index_efi//:uefi-services",
     ],
 )
 
diff --git a/third_party/rust-prost-nostd.patch b/third_party/rust-prost-nostd.patch
index 71c2058..2809877 100644
--- a/third_party/rust-prost-nostd.patch
+++ b/third_party/rust-prost-nostd.patch
@@ -1,6 +1,6 @@
-From 8cc9584796b41c3b5c9d213b751de9762963ebbf Mon Sep 17 00:00:00 2001
-From: Lorenz Brun <lorenz@monogon.tech>
-Date: Mon, 2 Oct 2023 15:35:38 +0200
+From 2aff5ddecae1bbbe85b07c047bc6cbfa2da5ba96 Mon Sep 17 00:00:00 2001
+From: Tim Windelschmidt <tim@monogon.tech>
+Date: Fri, 12 Jan 2024 15:41:50 +0100
 Subject: [PATCH] Support no_std in Prost toolchain
 
 ---
@@ -9,28 +9,28 @@
  2 files changed, 22 insertions(+), 3 deletions(-)
 
 diff --git a/proto/prost/private/prost.bzl b/proto/prost/private/prost.bzl
-index 6cd3d522..ae7ead91 100644
+index 0a9f3500..e3e5e382 100644
 --- a/proto/prost/private/prost.bzl
 +++ b/proto/prost/private/prost.bzl
-@@ -64,6 +64,9 @@ def _compile_proto(ctx, crate_name, proto_info, deps, prost_toolchain, rustfmt_t
+@@ -58,6 +58,9 @@ def _compile_proto(ctx, crate_name, proto_info, deps, prost_toolchain, rustfmt_t
      additional_args.add("--descriptor_set={}".format(proto_info.direct_descriptor_set.path))
      additional_args.add_all(prost_toolchain.prost_opts, format_each = "--prost_opt=%s")
- 
+
 +    if prost_toolchain.is_nostd:
 +        additional_args.add("--is_nostd")
 +
      if prost_toolchain.tonic_plugin:
          tonic_plugin = prost_toolchain.tonic_plugin[DefaultInfo].files_to_run
          additional_args.add(prost_toolchain.tonic_plugin_flag % tonic_plugin.executable.path)
-@@ -371,6 +374,7 @@ def _rust_prost_toolchain_impl(ctx):
+@@ -335,6 +338,7 @@ def _rust_prost_toolchain_impl(ctx):
          tonic_plugin = ctx.attr.tonic_plugin,
          tonic_plugin_flag = ctx.attr.tonic_plugin_flag,
          tonic_runtime = ctx.attr.tonic_runtime,
 +        is_nostd = ctx.attr.is_nostd,
      )]
- 
+
  rust_prost_toolchain = rule(
-@@ -423,6 +427,10 @@ rust_prost_toolchain = rule(
+@@ -387,6 +391,10 @@ rust_prost_toolchain = rule(
              doc = "The Tonic runtime crates to use.",
              providers = [[rust_common.crate_info], [rust_common.crate_group_info]],
          ),
@@ -40,60 +40,60 @@
 +        ),
      },
  )
- 
+
 diff --git a/proto/prost/private/protoc_wrapper.rs b/proto/prost/private/protoc_wrapper.rs
-index eb0c3319..716ba211 100644
+index f8be6478..44f6ad8e 100644
 --- a/proto/prost/private/protoc_wrapper.rs
 +++ b/proto/prost/private/protoc_wrapper.rs
-@@ -116,7 +116,7 @@ struct Module {
+@@ -117,7 +117,7 @@ struct Module {
  ///     }
  /// }
  /// ```
 -fn generate_lib_rs(prost_outputs: &BTreeSet<PathBuf>, is_tonic: bool) -> String {
 +fn generate_lib_rs(prost_outputs: &BTreeSet<PathBuf>, is_tonic: bool, is_nostd: bool) -> String {
      let mut module_info = BTreeMap::new();
- 
+
      for path in prost_outputs.iter() {
-@@ -188,7 +188,8 @@ fn generate_lib_rs(prost_outputs: &BTreeSet<PathBuf>, is_tonic: bool) -> String
+@@ -189,7 +189,8 @@ fn generate_lib_rs(prost_outputs: &BTreeSet<PathBuf>, is_tonic: bool) -> String
          }
      }
- 
+
 -    let mut content = "// @generated\n\n".to_string();
 +    let mut content = if is_nostd { "#![no_std]\n".to_string() } else { "".to_string() };
 +    content.push_str(&"// @generated\n\n");
      write_module(&mut content, &module_info, "", 0);
      content
  }
-@@ -442,6 +443,9 @@ struct Args {
+@@ -443,6 +444,9 @@ struct Args {
      /// Whether to generate tonic code.
      is_tonic: bool,
- 
+
 +    // Whether to put a no_std tag into the generated code.
 +    is_nostd: bool,
 +
      /// Extra arguments to pass to protoc.
      extra_args: Vec<String>,
  }
-@@ -462,6 +466,7 @@ impl Args {
+@@ -463,6 +467,7 @@ impl Args {
          let mut label: Option<String> = None;
          let mut tonic_or_prost_opts = Vec::new();
          let mut is_tonic = false;
 +        let mut is_nostd = false;
- 
+
          let mut extra_args = Vec::new();
- 
-@@ -487,6 +492,10 @@ impl Args {
+
+@@ -485,6 +490,10 @@ impl Args {
                  is_tonic = true;
-                 continue;
+                 return;
              }
 +            if arg == "--is_nostd" {
 +                is_nostd = true;
-+                continue;
++                return;
 +            }
- 
+
              if !arg.contains('=') {
                  extra_args.push(arg);
-@@ -599,6 +608,7 @@ impl Args {
+@@ -613,6 +622,7 @@ impl Args {
              rustfmt,
              proto_paths,
              is_tonic,
@@ -101,23 +101,23 @@
              label: label.unwrap(),
              extra_args,
          })
-@@ -704,6 +714,7 @@ fn main() {
+@@ -718,6 +728,7 @@ fn main() {
          rustfmt,
          proto_paths,
          is_tonic,
 +        is_nostd,
          extra_args,
      } = Args::parse().expect("Failed to parse args");
- 
-@@ -816,7 +827,7 @@ fn main() {
+
+@@ -830,7 +841,7 @@ fn main() {
          .expect("Failed to compute proto package info");
- 
+
      // Write outputs
 -    fs::write(&out_librs, generate_lib_rs(&rust_files, is_tonic)).expect("Failed to write file.");
 +    fs::write(&out_librs, generate_lib_rs(&rust_files, is_tonic, is_nostd)).expect("Failed to write file.");
      fs::write(
          package_info_file,
          extern_paths
--- 
-2.41.0
+--
+2.42.0
 
diff --git a/third_party/rust-reproducibility.patch b/third_party/rust-reproducibility.patch
index 3b42085..d21c77a 100644
--- a/third_party/rust-reproducibility.patch
+++ b/third_party/rust-reproducibility.patch
@@ -1,3 +1,8 @@
+From d20698e4802b801807d0474f1d1d003b13c78277 Mon Sep 17 00:00:00 2001
+From: Tim Windelschmidt <tim@monogon.tech>
+Date: Fri, 12 Jan 2024 15:44:41 +0100
+Subject: [PATCH] Improve reproducibility
+
 Fixes a few issues with rules_rust/rustc reproducibility when the same code is
 being built in slightly different BuildConfigurations.
 
@@ -18,12 +23,20 @@
     codegen, too.
  2. We add a remap path option to rustc that replaces bazel-out/<dir>/bin/ with
     bin/.
+---
+ proto/prost/private/prost.bzl | 4 +++-
+ proto/protobuf/proto.bzl      | 2 +-
+ rust/private/clippy.bzl       | 2 +-
+ rust/private/rust.bzl         | 6 +++---
+ rust/private/rustc.bzl        | 4 ++++
+ rust/private/utils.bzl        | 7 +++++--
+ 6 files changed, 17 insertions(+), 8 deletions(-)
 
 diff --git a/proto/prost/private/prost.bzl b/proto/prost/private/prost.bzl
-index 6cd3d522..56d897b5 100644
+index e3e5e382..b91123f3 100644
 --- a/proto/prost/private/prost.bzl
 +++ b/proto/prost/private/prost.bzl
-@@ -128,7 +128,9 @@ def _compile_rust(ctx, attr, crate_name, src, deps, edition):
+@@ -125,7 +125,9 @@ def _compile_rust(ctx, attr, crate_name, src, deps, edition):
        A DepVariantInfo provider.
      """
      toolchain = ctx.toolchains["@rules_rust//rust:toolchain_type"]
@@ -31,16 +44,16 @@
 +    src_path = src.path.replace(ctx.bin_dir.path, 'bin')
 +    print(src.path, src_path)
 +    output_hash = repr(hash(src_path + ".prost"))
- 
+
      lib_name = "{prefix}{name}-{lib_hash}{extension}".format(
          prefix = "lib",
 diff --git a/proto/protobuf/proto.bzl b/proto/protobuf/proto.bzl
-index ca2df8a2..b4bf3335 100644
+index 7b254305..d61a1cbc 100644
 --- a/proto/protobuf/proto.bzl
 +++ b/proto/protobuf/proto.bzl
-@@ -188,7 +188,7 @@ def _rust_proto_compile(protos, descriptor_sets, imports, crate_name, ctx, is_gr
+@@ -187,7 +187,7 @@ def _rust_proto_compile(protos, descriptor_sets, imports, crate_name, ctx, is_gr
      srcs.append(lib_rs)
- 
+
      # And simulate rust_library behavior
 -    output_hash = determine_output_hash(lib_rs, ctx.label)
 +    output_hash = determine_output_hash(ctx.bin_dir, lib_rs, ctx.label)
@@ -48,7 +61,7 @@
          output_dir,
          crate_name,
 diff --git a/rust/private/clippy.bzl b/rust/private/clippy.bzl
-index 071ca29c..968a4ad6 100644
+index 9fd9842c..54a0547c 100644
 --- a/rust/private/clippy.bzl
 +++ b/rust/private/clippy.bzl
 @@ -120,7 +120,7 @@ def _clippy_aspect_impl(target, ctx):
@@ -61,44 +74,44 @@
          out_dir = out_dir,
          build_env_files = build_env_files,
 diff --git a/rust/private/rust.bzl b/rust/private/rust.bzl
-index 014d8d0d..cb783dc9 100644
+index 7727febb..217f1059 100644
 --- a/rust/private/rust.bzl
 +++ b/rust/private/rust.bzl
-@@ -275,7 +275,7 @@ def _rust_library_common(ctx, crate_type):
+@@ -159,7 +159,7 @@ def _rust_library_common(ctx, crate_type):
      if crate_type in ["cdylib", "staticlib"]:
          output_hash = None
      else:
 -        output_hash = determine_output_hash(crate_root, ctx.label)
 +        output_hash = determine_output_hash(ctx.bin_dir, crate_root, ctx.label)
- 
-     crate_name = compute_crate_name(ctx.workspace_name, ctx.label, toolchain, ctx.attr.crate_name)
-     rust_lib_name = _determine_lib_name(
-@@ -390,7 +390,7 @@ def _rust_test_impl(ctx):
+
+     rust_lib_name = determine_lib_name(
+         crate_name,
+@@ -310,7 +310,7 @@ def _rust_test_impl(ctx):
          # Target is building the crate in `test` config
          crate = ctx.attr.crate[rust_common.crate_info] if rust_common.crate_info in ctx.attr.crate else ctx.attr.crate[rust_common.test_crate_info].crate
- 
+
 -        output_hash = determine_output_hash(crate.root, ctx.label)
 +        output_hash = determine_output_hash(ctx.bin_dir, crate.root, ctx.label)
          output = ctx.actions.declare_file(
              "test-%s/%s%s" % (
                  output_hash,
-@@ -441,7 +441,7 @@ def _rust_test_impl(ctx):
+@@ -369,7 +369,7 @@ def _rust_test_impl(ctx):
              crate_root = crate_root_src(ctx.attr.name, ctx.files.srcs, crate_root_type)
-         srcs, crate_root = _transform_sources(ctx, ctx.files.srcs, crate_root)
- 
+         srcs, crate_root = transform_sources(ctx, ctx.files.srcs, crate_root)
+
 -        output_hash = determine_output_hash(crate_root, ctx.label)
 +        output_hash = determine_output_hash(ctx.bin_dir, crate_root, ctx.label)
          output = ctx.actions.declare_file(
              "test-%s/%s%s" % (
                  output_hash,
 diff --git a/rust/private/rustc.bzl b/rust/private/rustc.bzl
-index e76c20bd..cebd5a73 100644
+index ef3479e5..06c94574 100644
 --- a/rust/private/rustc.bzl
 +++ b/rust/private/rustc.bzl
-@@ -952,6 +952,10 @@ def construct_arguments(
+@@ -966,6 +966,10 @@ def construct_arguments(
      if remap_path_prefix != None:
          rustc_flags.add("--remap-path-prefix=${{pwd}}={}".format(remap_path_prefix))
- 
+
 +    # Replace unstable bindir path (based on ST-hash which is in turn based on
 +    # build configuration) with a stable bin/ path.
 +    rustc_flags.add("--remap-path-prefix={}=bin".format(ctx.bin_dir.path))
@@ -107,22 +120,22 @@
          rustc_flags.add_joined(emit_with_paths, format_joined = "--emit=%s", join_with = ",")
      if error_format != "json":
 diff --git a/rust/private/utils.bzl b/rust/private/utils.bzl
-index 879e2b62..08ef530f 100644
+index 4e9b4b79..82317359 100644
 --- a/rust/private/utils.bzl
 +++ b/rust/private/utils.bzl
-@@ -181,7 +181,7 @@ def abs(value):
+@@ -182,7 +182,7 @@ def abs(value):
          return -value
      return value
- 
+
 -def determine_output_hash(crate_root, label):
 +def determine_output_hash(bin_dir, crate_root, label):
      """Generates a hash of the crate root file's path.
- 
+
      Args:
-@@ -192,8 +192,11 @@ def determine_output_hash(crate_root, label):
+@@ -193,8 +193,11 @@ def determine_output_hash(crate_root, label):
          str: A string representation of the hash.
      """
- 
+
 +    # Remove any unstable BuildConfiguration derived dir fragments to unify
 +    # hashes between different configs.
 +    crate_root_path = crate_root.path.replace(bin_dir.path, 'bin')
@@ -130,5 +143,8 @@
 -    h = abs(hash(crate_root.path) + hash(repr(label)))
 +    h = abs(hash(crate_root_path) + hash(repr(label)))
      return repr(h)
- 
+
  def get_preferred_artifact(library_to_link, use_pic):
+--
+2.42.0
+
diff --git a/third_party/rust-uefi-platform.patch b/third_party/rust-uefi-platform.patch
index e70f7f3..6ca627e 100644
--- a/third_party/rust-uefi-platform.patch
+++ b/third_party/rust-uefi-platform.patch
@@ -25,10 +25,9 @@
      "x86_64-unknown-none",
 +    "x86_64-unknown-uefi",
  ]
- 
- SUPPORTED_PLATFORM_TRIPLES = SUPPORTED_T1_PLATFORM_TRIPLES + SUPPORTED_T2_PLATFORM_TRIPLES
+
 @@ -97,6 +99,7 @@ _SYSTEM_TO_BUILTIN_SYS_SUFFIX = {
-     "none": "none",
+     "nto": "qnx",
      "openbsd": "openbsd",
      "solaris": None,
 +    "uefi": "uefi",
@@ -36,31 +35,31 @@
      "wasi": None,
      "windows": "windows",
 @@ -113,6 +116,7 @@ _SYSTEM_TO_BINARY_EXT = {
-     "ios": "",
-     "linux": "",
+     "nixos": "",
      "none": "",
+     "nto": "",
 +    "uefi": ".efi",
      # This is currently a hack allowing us to have the proper
      # generated extension for the wasm target, similarly to the
      # windows target
 @@ -132,6 +136,7 @@ _SYSTEM_TO_STATICLIB_EXT = {
-     "ios": ".a",
-     "linux": ".a",
+     "nixos": ".a",
      "none": ".a",
+     "nto": ".a",
 +    "uefi": ".lib",
      "unknown": "",
      "wasi": "",
      "windows": ".lib",
 @@ -148,6 +153,7 @@ _SYSTEM_TO_DYLIB_EXT = {
-     "ios": ".dylib",
-     "linux": ".so",
+     "nixos": ".so",
      "none": ".so",
+     "nto": ".a",
 +    "uefi": "", # UEFI doesn't have dynamic linking
      "unknown": ".wasm",
      "wasi": ".wasm",
      "windows": ".dll",
 @@ -191,6 +197,7 @@ _SYSTEM_TO_STDLIB_LINKFLAGS = {
-     "none": [],
+     "nto": [],
      "openbsd": ["-lpthread"],
      "solaris": ["-lsocket", "-lposix4", "-lpthread", "-lresolv"],
 +    "uefi": [],
diff --git a/third_party/rust/BUILD.bazel b/third_party/rust/BUILD.bazel
index 747ebbf..e69de29 100644
--- a/third_party/rust/BUILD.bazel
+++ b/third_party/rust/BUILD.bazel
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-package(default_visibility = ["//visibility:public"])
-
-licenses([
-    "notice",  # See individual crates for specific licenses
-])
-
-# Aliased targets
-alias(
-    name = "cargo_bin_mdbook",
-    actual = "@raze__mdbook__0_4_35//:cargo_bin_mdbook",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-alias(
-    name = "mdbook",
-    actual = "@raze__mdbook__0_4_35//:mdbook",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-alias(
-    name = "protoc_gen_prost",
-    actual = "@raze__protoc_gen_prost__0_2_3//:protoc_gen_prost",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-# Export file for Stardoc support
-exports_files(
-    glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
-
-filegroup(
-    name = "srcs",
-    srcs = glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
diff --git a/third_party/rust/Cargo.Bazel.lock b/third_party/rust/Cargo.Bazel.lock
new file mode 100644
index 0000000..45f49c6
--- /dev/null
+++ b/third_party/rust/Cargo.Bazel.lock
@@ -0,0 +1,12818 @@
+{
+  "checksum": "be4e517bbf43e7232cedbc5860881dad00f1d3e801a776efe9c9bccc33c238d0",
+  "crates": {
+    "addr2line 0.21.0": {
+      "name": "addr2line",
+      "version": "0.21.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/addr2line/0.21.0/download",
+          "sha256": "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "addr2line",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "addr2line",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "gimli 0.28.1",
+              "target": "gimli"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.21.0"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "adler 1.0.2": {
+      "name": "adler",
+      "version": "1.0.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/adler/1.0.2/download",
+          "sha256": "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "adler",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "adler",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.0.2"
+      },
+      "license": "0BSD OR MIT OR Apache-2.0"
+    },
+    "aho-corasick 1.1.2": {
+      "name": "aho-corasick",
+      "version": "1.1.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/aho-corasick/1.1.2/download",
+          "sha256": "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "aho_corasick",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "aho_corasick",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "perf-literal",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.1.2"
+      },
+      "license": "Unlicense OR MIT"
+    },
+    "ammonia 3.3.0": {
+      "name": "ammonia",
+      "version": "3.3.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ammonia/3.3.0/download",
+          "sha256": "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ammonia",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ammonia",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "html5ever 0.26.0",
+              "target": "html5ever"
+            },
+            {
+              "id": "maplit 1.0.2",
+              "target": "maplit"
+            },
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            },
+            {
+              "id": "tendril 0.4.3",
+              "target": "tendril"
+            },
+            {
+              "id": "url 2.5.0",
+              "target": "url"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "3.3.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "android-tzdata 0.1.1": {
+      "name": "android-tzdata",
+      "version": "0.1.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/android-tzdata/0.1.1/download",
+          "sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "android_tzdata",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "android_tzdata",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.1.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "android_system_properties 0.1.5": {
+      "name": "android_system_properties",
+      "version": "0.1.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/android_system_properties/0.1.5/download",
+          "sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "android_system_properties",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "android_system_properties",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.1.5"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "anstream 0.6.7": {
+      "name": "anstream",
+      "version": "0.6.7",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anstream/0.6.7/download",
+          "sha256": "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anstream",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anstream",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "auto",
+            "default",
+            "wincon"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "anstyle 1.0.4",
+              "target": "anstyle"
+            },
+            {
+              "id": "anstyle-parse 0.2.3",
+              "target": "anstyle_parse"
+            },
+            {
+              "id": "anstyle-query 1.0.2",
+              "target": "anstyle_query"
+            },
+            {
+              "id": "colorchoice 1.0.0",
+              "target": "colorchoice"
+            },
+            {
+              "id": "utf8parse 0.2.1",
+              "target": "utf8parse"
+            }
+          ],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "anstyle-wincon 3.0.2",
+                "target": "anstyle_wincon"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.6.7"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "anstyle 1.0.4": {
+      "name": "anstyle",
+      "version": "1.0.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anstyle/1.0.4/download",
+          "sha256": "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anstyle",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anstyle",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.0.4"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "anstyle-parse 0.2.3": {
+      "name": "anstyle-parse",
+      "version": "0.2.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anstyle-parse/0.2.3/download",
+          "sha256": "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anstyle_parse",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anstyle_parse",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "utf8"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "utf8parse 0.2.1",
+              "target": "utf8parse"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.2.3"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "anstyle-query 1.0.2": {
+      "name": "anstyle-query",
+      "version": "1.0.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anstyle-query/1.0.2/download",
+          "sha256": "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anstyle_query",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anstyle_query",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "1.0.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "anstyle-wincon 3.0.2": {
+      "name": "anstyle-wincon",
+      "version": "3.0.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anstyle-wincon/3.0.2/download",
+          "sha256": "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anstyle_wincon",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anstyle_wincon",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "anstyle 1.0.4",
+              "target": "anstyle"
+            }
+          ],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "3.0.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "anyhow 1.0.79": {
+      "name": "anyhow",
+      "version": "1.0.79",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anyhow/1.0.79/download",
+          "sha256": "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anyhow",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anyhow",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "anyhow 1.0.79",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.79"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "autocfg 1.1.0": {
+      "name": "autocfg",
+      "version": "1.1.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/autocfg/1.1.0/download",
+          "sha256": "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "autocfg",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "autocfg",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.1.0"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "backtrace 0.3.69": {
+      "name": "backtrace",
+      "version": "0.3.69",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/backtrace/0.3.69/download",
+          "sha256": "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "backtrace",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "backtrace",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "backtrace 0.3.69",
+              "target": "build_script_build"
+            },
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "rustc-demangle 0.1.23",
+              "target": "rustc_demangle"
+            }
+          ],
+          "selects": {
+            "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [
+              {
+                "id": "addr2line 0.21.0",
+                "target": "addr2line"
+              },
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              },
+              {
+                "id": "miniz_oxide 0.7.1",
+                "target": "miniz_oxide"
+              },
+              {
+                "id": "object 0.32.2",
+                "target": "object"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.3.69"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cc 1.0.83",
+              "target": "cc"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "base64 0.21.7": {
+      "name": "base64",
+      "version": "0.21.7",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/base64/0.21.7/download",
+          "sha256": "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "base64",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "base64",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.21.7"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "bitflags 1.3.2": {
+      "name": "bitflags",
+      "version": "1.3.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bitflags/1.3.2/download",
+          "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bitflags",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bitflags",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.3.2"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "bitflags 2.4.1": {
+      "name": "bitflags",
+      "version": "2.4.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bitflags/2.4.1/download",
+          "sha256": "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bitflags",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bitflags",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.4.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "block-buffer 0.10.4": {
+      "name": "block-buffer",
+      "version": "0.10.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/block-buffer/0.10.4/download",
+          "sha256": "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "block_buffer",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "block_buffer",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "generic-array 0.14.7",
+              "target": "generic_array"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.4"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "bstr 1.9.0": {
+      "name": "bstr",
+      "version": "1.9.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bstr/1.9.0/download",
+          "sha256": "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bstr",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bstr",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "std"
+          ],
+          "selects": {
+            "aarch64-unknown-linux-gnu": [
+              "default",
+              "unicode"
+            ],
+            "aarch64-unknown-nixos-gnu": [
+              "default",
+              "unicode"
+            ],
+            "arm-unknown-linux-gnueabi": [
+              "default",
+              "unicode"
+            ],
+            "armv7-unknown-linux-gnueabi": [
+              "default",
+              "unicode"
+            ],
+            "i686-unknown-linux-gnu": [
+              "default",
+              "unicode"
+            ],
+            "powerpc-unknown-linux-gnu": [
+              "default",
+              "unicode"
+            ],
+            "s390x-unknown-linux-gnu": [
+              "default",
+              "unicode"
+            ],
+            "x86_64-unknown-linux-gnu": [
+              "default",
+              "unicode"
+            ],
+            "x86_64-unknown-nixos-gnu": [
+              "default",
+              "unicode"
+            ]
+          }
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "regex-automata 0.4.3",
+              "target": "regex_automata"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.9.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "bumpalo 3.14.0": {
+      "name": "bumpalo",
+      "version": "3.14.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bumpalo/3.14.0/download",
+          "sha256": "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bumpalo",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bumpalo",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "3.14.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "byteorder 1.5.0": {
+      "name": "byteorder",
+      "version": "1.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/byteorder/1.5.0/download",
+          "sha256": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "byteorder",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "byteorder",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.5.0"
+      },
+      "license": "Unlicense OR MIT"
+    },
+    "bytes 1.5.0": {
+      "name": "bytes",
+      "version": "1.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bytes/1.5.0/download",
+          "sha256": "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bytes",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bytes",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.5.0"
+      },
+      "license": "MIT"
+    },
+    "cc 1.0.83": {
+      "name": "cc",
+      "version": "1.0.83",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/cc/1.0.83/download",
+          "sha256": "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "cc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "gcc-shim",
+            "crate_root": "src/bin/gcc-shim.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "cc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "1.0.83"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "cfg-if 1.0.0": {
+      "name": "cfg-if",
+      "version": "1.0.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/cfg-if/1.0.0/download",
+          "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "cfg_if",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "cfg_if",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.0"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "chrono 0.4.31": {
+      "name": "chrono",
+      "version": "0.4.31",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/chrono/0.4.31/download",
+          "sha256": "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "chrono",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "chrono",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "android-tzdata",
+            "clock",
+            "iana-time-zone",
+            "std",
+            "winapi",
+            "windows-targets"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "num-traits 0.2.17",
+              "target": "num_traits"
+            }
+          ],
+          "selects": {
+            "cfg(target_os = \"android\")": [
+              {
+                "id": "android-tzdata 0.1.1",
+                "target": "android_tzdata"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "iana-time-zone 0.1.59",
+                "target": "iana_time_zone"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-targets 0.48.5",
+                "target": "windows_targets"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.4.31"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "clap 4.4.16": {
+      "name": "clap",
+      "version": "4.4.16",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/clap/4.4.16/download",
+          "sha256": "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "clap",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "stdio-fixture",
+            "crate_root": "src/bin/stdio-fixture.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "clap",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "cargo",
+            "color",
+            "default",
+            "error-context",
+            "help",
+            "std",
+            "suggestions",
+            "usage",
+            "wrap_help"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "clap_builder 4.4.16",
+              "target": "clap_builder"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "4.4.16"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "clap_builder 4.4.16": {
+      "name": "clap_builder",
+      "version": "4.4.16",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/clap_builder/4.4.16/download",
+          "sha256": "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "clap_builder",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "clap_builder",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "cargo",
+            "color",
+            "error-context",
+            "help",
+            "std",
+            "suggestions",
+            "usage",
+            "wrap_help"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "anstream 0.6.7",
+              "target": "anstream"
+            },
+            {
+              "id": "anstyle 1.0.4",
+              "target": "anstyle"
+            },
+            {
+              "id": "clap_lex 0.6.0",
+              "target": "clap_lex"
+            },
+            {
+              "id": "strsim 0.10.0",
+              "target": "strsim"
+            },
+            {
+              "id": "terminal_size 0.3.0",
+              "target": "terminal_size"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "4.4.16"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "clap_complete 4.4.6": {
+      "name": "clap_complete",
+      "version": "4.4.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/clap_complete/4.4.6/download",
+          "sha256": "97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "clap_complete",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "clap_complete",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "clap 4.4.16",
+              "target": "clap"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "4.4.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "clap_lex 0.6.0": {
+      "name": "clap_lex",
+      "version": "0.6.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/clap_lex/0.6.0/download",
+          "sha256": "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "clap_lex",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "clap_lex",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "0.6.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "colorchoice 1.0.0": {
+      "name": "colorchoice",
+      "version": "1.0.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/colorchoice/1.0.0/download",
+          "sha256": "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "colorchoice",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "colorchoice",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "1.0.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "compile_with_bazel 0.0.0": {
+      "name": "compile_with_bazel",
+      "version": "0.0.0",
+      "repository": null,
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "compile_with_bazel",
+            "crate_root": "fake_lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "compile_with_bazel",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "mdbook 0.4.36",
+              "target": "mdbook"
+            },
+            {
+              "id": "protoc-gen-prost 0.2.3",
+              "target": "protoc_gen_prost"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.0.0"
+      },
+      "license": null
+    },
+    "core-foundation-sys 0.8.6": {
+      "name": "core-foundation-sys",
+      "version": "0.8.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/core-foundation-sys/0.8.6/download",
+          "sha256": "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "core_foundation_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "core_foundation_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "link"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.8.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "cpufeatures 0.2.12": {
+      "name": "cpufeatures",
+      "version": "0.2.12",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/cpufeatures/0.2.12/download",
+          "sha256": "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "cpufeatures",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "cpufeatures",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "aarch64-linux-android": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.2.12"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "crossbeam-channel 0.5.11": {
+      "name": "crossbeam-channel",
+      "version": "0.5.11",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/crossbeam-channel/0.5.11/download",
+          "sha256": "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "crossbeam_channel",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "crossbeam_channel",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-utils 0.8.19",
+              "target": "crossbeam_utils"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.5.11"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "crossbeam-deque 0.8.5": {
+      "name": "crossbeam-deque",
+      "version": "0.8.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/crossbeam-deque/0.8.5/download",
+          "sha256": "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "crossbeam_deque",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "crossbeam_deque",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-epoch 0.9.18",
+              "target": "crossbeam_epoch"
+            },
+            {
+              "id": "crossbeam-utils 0.8.19",
+              "target": "crossbeam_utils"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.8.5"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "crossbeam-epoch 0.9.18": {
+      "name": "crossbeam-epoch",
+      "version": "0.9.18",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/crossbeam-epoch/0.9.18/download",
+          "sha256": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "crossbeam_epoch",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "crossbeam_epoch",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-utils 0.8.19",
+              "target": "crossbeam_utils"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.9.18"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "crossbeam-utils 0.8.19": {
+      "name": "crossbeam-utils",
+      "version": "0.8.19",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/crossbeam-utils/0.8.19/download",
+          "sha256": "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "crossbeam_utils",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "crossbeam_utils",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-utils 0.8.19",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.8.19"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "crypto-common 0.1.6": {
+      "name": "crypto-common",
+      "version": "0.1.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/crypto-common/0.1.6/download",
+          "sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "crypto_common",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "crypto_common",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "generic-array 0.14.7",
+              "target": "generic_array"
+            },
+            {
+              "id": "typenum 1.17.0",
+              "target": "typenum"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.1.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "data-encoding 2.5.0": {
+      "name": "data-encoding",
+      "version": "2.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/data-encoding/2.5.0/download",
+          "sha256": "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "data_encoding",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "data_encoding",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "2.5.0"
+      },
+      "license": "MIT"
+    },
+    "digest 0.10.7": {
+      "name": "digest",
+      "version": "0.10.7",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/digest/0.10.7/download",
+          "sha256": "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "digest",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "digest",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "block-buffer",
+            "core-api",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "block-buffer 0.10.4",
+              "target": "block_buffer"
+            },
+            {
+              "id": "crypto-common 0.1.6",
+              "target": "crypto_common"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.7"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "either 1.9.0": {
+      "name": "either",
+      "version": "1.9.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/either/1.9.0/download",
+          "sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "either",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "either",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "use_std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.9.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "elasticlunr-rs 3.0.2": {
+      "name": "elasticlunr-rs",
+      "version": "3.0.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/elasticlunr-rs/3.0.2/download",
+          "sha256": "41e83863a500656dfa214fee6682de9c5b9f03de6860fec531235ed2ae9f6571"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "elasticlunr",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "elasticlunr",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "regex 1.10.2",
+              "target": "regex"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            },
+            {
+              "id": "serde_json 1.0.111",
+              "target": "serde_json"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "serde_derive 1.0.195",
+              "target": "serde_derive"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "3.0.2"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "env_logger 0.10.1": {
+      "name": "env_logger",
+      "version": "0.10.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/env_logger/0.10.1/download",
+          "sha256": "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "env_logger",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "env_logger",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "auto-color",
+            "color",
+            "default",
+            "humantime",
+            "regex"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "humantime 2.1.0",
+              "target": "humantime"
+            },
+            {
+              "id": "is-terminal 0.4.10",
+              "target": "is_terminal"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "regex 1.10.2",
+              "target": "regex"
+            },
+            {
+              "id": "termcolor 1.4.1",
+              "target": "termcolor"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.10.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "equivalent 1.0.1": {
+      "name": "equivalent",
+      "version": "1.0.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/equivalent/1.0.1/download",
+          "sha256": "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "equivalent",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "equivalent",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.0.1"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "errno 0.3.8": {
+      "name": "errno",
+      "version": "0.3.8",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/errno/0.3.8/download",
+          "sha256": "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "errno",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "errno",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(target_os = \"hermit\")": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(target_os = \"wasi\")": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.3.8"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "fastrand 2.0.1": {
+      "name": "fastrand",
+      "version": "2.0.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/fastrand/2.0.1/download",
+          "sha256": "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "fastrand",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "fastrand",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "2.0.1"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "filetime 0.2.23": {
+      "name": "filetime",
+      "version": "0.2.23",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/filetime/0.2.23/download",
+          "sha256": "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "filetime",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "filetime",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            }
+          ],
+          "selects": {
+            "cfg(target_os = \"redox\")": [
+              {
+                "id": "redox_syscall 0.4.1",
+                "target": "syscall"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.2.23"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "fixedbitset 0.4.2": {
+      "name": "fixedbitset",
+      "version": "0.4.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/fixedbitset/0.4.2/download",
+          "sha256": "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "fixedbitset",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "fixedbitset",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.4.2"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "fnv 1.0.7": {
+      "name": "fnv",
+      "version": "1.0.7",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/fnv/1.0.7/download",
+          "sha256": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "fnv",
+            "crate_root": "lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "fnv",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "1.0.7"
+      },
+      "license": "Apache-2.0 / MIT"
+    },
+    "form_urlencoded 1.2.1": {
+      "name": "form_urlencoded",
+      "version": "1.2.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/form_urlencoded/1.2.1/download",
+          "sha256": "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "form_urlencoded",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "form_urlencoded",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "percent-encoding 2.3.1",
+              "target": "percent_encoding"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.2.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "fsevent-sys 4.1.0": {
+      "name": "fsevent-sys",
+      "version": "4.1.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/fsevent-sys/4.1.0/download",
+          "sha256": "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "fsevent_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "fsevent_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "4.1.0"
+      },
+      "license": "MIT"
+    },
+    "futf 0.1.5": {
+      "name": "futf",
+      "version": "0.1.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futf/0.1.5/download",
+          "sha256": "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "futf",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futf",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "mac 0.1.1",
+              "target": "mac"
+            },
+            {
+              "id": "new_debug_unreachable 1.0.4",
+              "target": "debug_unreachable"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.1.5"
+      },
+      "license": "MIT / Apache-2.0"
+    },
+    "futures-channel 0.3.30": {
+      "name": "futures-channel",
+      "version": "0.3.30",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futures-channel/0.3.30/download",
+          "sha256": "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "futures_channel",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futures_channel",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "futures-sink",
+            "sink",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "futures-core 0.3.30",
+              "target": "futures_core"
+            },
+            {
+              "id": "futures-sink 0.3.30",
+              "target": "futures_sink"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.30"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "futures-core 0.3.30": {
+      "name": "futures-core",
+      "version": "0.3.30",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futures-core/0.3.30/download",
+          "sha256": "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "futures_core",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futures_core",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.30"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "futures-macro 0.3.30": {
+      "name": "futures-macro",
+      "version": "0.3.30",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futures-macro/0.3.30/download",
+          "sha256": "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "futures_macro",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futures_macro",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.30"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "futures-sink 0.3.30": {
+      "name": "futures-sink",
+      "version": "0.3.30",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futures-sink/0.3.30/download",
+          "sha256": "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "futures_sink",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futures_sink",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.30"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "futures-task 0.3.30": {
+      "name": "futures-task",
+      "version": "0.3.30",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futures-task/0.3.30/download",
+          "sha256": "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "futures_task",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futures_task",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.30"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "futures-util 0.3.30": {
+      "name": "futures-util",
+      "version": "0.3.30",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/futures-util/0.3.30/download",
+          "sha256": "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "futures_util",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "futures_util",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "async-await",
+            "async-await-macro",
+            "default",
+            "futures-macro",
+            "futures-sink",
+            "sink",
+            "slab",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "futures-core 0.3.30",
+              "target": "futures_core"
+            },
+            {
+              "id": "futures-sink 0.3.30",
+              "target": "futures_sink"
+            },
+            {
+              "id": "futures-task 0.3.30",
+              "target": "futures_task"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            },
+            {
+              "id": "pin-utils 0.1.0",
+              "target": "pin_utils"
+            },
+            {
+              "id": "slab 0.4.9",
+              "target": "slab"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "futures-macro 0.3.30",
+              "target": "futures_macro"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "0.3.30"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "generic-array 0.14.7": {
+      "name": "generic-array",
+      "version": "0.14.7",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/generic-array/0.14.7/download",
+          "sha256": "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "generic_array",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "generic_array",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "more_lengths"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "generic-array 0.14.7",
+              "target": "build_script_build"
+            },
+            {
+              "id": "typenum 1.17.0",
+              "target": "typenum"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.14.7"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "version_check 0.9.4",
+              "target": "version_check"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT"
+    },
+    "getrandom 0.2.12": {
+      "name": "getrandom",
+      "version": "0.2.12",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/getrandom/0.2.12/download",
+          "sha256": "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "getrandom",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "getrandom",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            }
+          ],
+          "selects": {
+            "cfg(target_os = \"wasi\")": [
+              {
+                "id": "wasi 0.11.0+wasi-snapshot-preview1",
+                "target": "wasi"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.2.12"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "gimli 0.28.1": {
+      "name": "gimli",
+      "version": "0.28.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/gimli/0.28.1/download",
+          "sha256": "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "gimli",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "gimli",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.28.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "globset 0.4.14": {
+      "name": "globset",
+      "version": "0.4.14",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/globset/0.4.14/download",
+          "sha256": "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "globset",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "globset",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "log"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "aho-corasick 1.1.2",
+              "target": "aho_corasick"
+            },
+            {
+              "id": "bstr 1.9.0",
+              "target": "bstr"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "regex-automata 0.4.3",
+              "target": "regex_automata"
+            },
+            {
+              "id": "regex-syntax 0.8.2",
+              "target": "regex_syntax"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.4.14"
+      },
+      "license": "Unlicense OR MIT"
+    },
+    "h2 0.3.23": {
+      "name": "h2",
+      "version": "0.3.23",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/h2/0.3.23/download",
+          "sha256": "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "h2",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "h2",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "fnv 1.0.7",
+              "target": "fnv"
+            },
+            {
+              "id": "futures-core 0.3.30",
+              "target": "futures_core"
+            },
+            {
+              "id": "futures-sink 0.3.30",
+              "target": "futures_sink"
+            },
+            {
+              "id": "futures-util 0.3.30",
+              "target": "futures_util"
+            },
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            },
+            {
+              "id": "indexmap 2.1.0",
+              "target": "indexmap"
+            },
+            {
+              "id": "slab 0.4.9",
+              "target": "slab"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            },
+            {
+              "id": "tokio-util 0.7.10",
+              "target": "tokio_util"
+            },
+            {
+              "id": "tracing 0.1.40",
+              "target": "tracing"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.23"
+      },
+      "license": "MIT"
+    },
+    "handlebars 4.5.0": {
+      "name": "handlebars",
+      "version": "4.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/handlebars/4.5.0/download",
+          "sha256": "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "handlebars",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "handlebars-cli",
+            "crate_root": "src/cli.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "handlebars",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "pest 2.7.6",
+              "target": "pest"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            },
+            {
+              "id": "serde_json 1.0.111",
+              "target": "serde_json"
+            },
+            {
+              "id": "thiserror 1.0.56",
+              "target": "thiserror"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "pest_derive 2.7.6",
+              "target": "pest_derive"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "4.5.0"
+      },
+      "license": "MIT"
+    },
+    "hashbrown 0.14.3": {
+      "name": "hashbrown",
+      "version": "0.14.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/hashbrown/0.14.3/download",
+          "sha256": "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "hashbrown",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "hashbrown",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "raw"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.14.3"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "headers 0.3.9": {
+      "name": "headers",
+      "version": "0.3.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/headers/0.3.9/download",
+          "sha256": "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "headers",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "headers",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "base64 0.21.7",
+              "target": "base64"
+            },
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "headers-core 0.2.0",
+              "target": "headers_core"
+            },
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            },
+            {
+              "id": "httpdate 1.0.3",
+              "target": "httpdate"
+            },
+            {
+              "id": "mime 0.3.17",
+              "target": "mime"
+            },
+            {
+              "id": "sha1 0.10.6",
+              "target": "sha1"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.3.9"
+      },
+      "license": "MIT"
+    },
+    "headers-core 0.2.0": {
+      "name": "headers-core",
+      "version": "0.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/headers-core/0.2.0/download",
+          "sha256": "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "headers_core",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "headers_core",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.2.0"
+      },
+      "license": "MIT"
+    },
+    "heck 0.4.1": {
+      "name": "heck",
+      "version": "0.4.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/heck/0.4.1/download",
+          "sha256": "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "heck",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "heck",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.4.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "hermit-abi 0.3.3": {
+      "name": "hermit-abi",
+      "version": "0.3.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/hermit-abi/0.3.3/download",
+          "sha256": "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "hermit_abi",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "hermit_abi",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "0.3.3"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "home 0.5.9": {
+      "name": "home",
+      "version": "0.5.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/home/0.5.9/download",
+          "sha256": "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "home",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "home",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.5.9"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "html5ever 0.26.0": {
+      "name": "html5ever",
+      "version": "0.26.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/html5ever/0.26.0/download",
+          "sha256": "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "html5ever",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "html5ever",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "html5ever 0.26.0",
+              "target": "build_script_build"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "mac 0.1.1",
+              "target": "mac"
+            },
+            {
+              "id": "markup5ever 0.11.0",
+              "target": "markup5ever"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.26.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 1.0.109",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "http 0.2.11": {
+      "name": "http",
+      "version": "0.2.11",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/http/0.2.11/download",
+          "sha256": "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "http",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "http",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "fnv 1.0.7",
+              "target": "fnv"
+            },
+            {
+              "id": "itoa 1.0.10",
+              "target": "itoa"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.11"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "http-body 0.4.6": {
+      "name": "http-body",
+      "version": "0.4.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/http-body/0.4.6/download",
+          "sha256": "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "http_body",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "http_body",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.4.6"
+      },
+      "license": "MIT"
+    },
+    "httparse 1.8.0": {
+      "name": "httparse",
+      "version": "1.8.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/httparse/1.8.0/download",
+          "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "httparse",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "httparse",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "httparse 1.8.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.8.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "httpdate 1.0.3": {
+      "name": "httpdate",
+      "version": "1.0.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/httpdate/1.0.3/download",
+          "sha256": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "httpdate",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "httpdate",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "1.0.3"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "humantime 2.1.0": {
+      "name": "humantime",
+      "version": "2.1.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/humantime/2.1.0/download",
+          "sha256": "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "humantime",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "humantime",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "2.1.0"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "hyper 0.14.28": {
+      "name": "hyper",
+      "version": "0.14.28",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/hyper/0.14.28/download",
+          "sha256": "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "hyper",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "hyper",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "client",
+            "default",
+            "h2",
+            "http1",
+            "http2",
+            "server",
+            "socket2",
+            "stream",
+            "tcp"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "futures-channel 0.3.30",
+              "target": "futures_channel"
+            },
+            {
+              "id": "futures-core 0.3.30",
+              "target": "futures_core"
+            },
+            {
+              "id": "futures-util 0.3.30",
+              "target": "futures_util"
+            },
+            {
+              "id": "h2 0.3.23",
+              "target": "h2"
+            },
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            },
+            {
+              "id": "http-body 0.4.6",
+              "target": "http_body"
+            },
+            {
+              "id": "httparse 1.8.0",
+              "target": "httparse"
+            },
+            {
+              "id": "httpdate 1.0.3",
+              "target": "httpdate"
+            },
+            {
+              "id": "itoa 1.0.10",
+              "target": "itoa"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            },
+            {
+              "id": "socket2 0.5.5",
+              "target": "socket2"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            },
+            {
+              "id": "tower-service 0.3.2",
+              "target": "tower_service"
+            },
+            {
+              "id": "tracing 0.1.40",
+              "target": "tracing"
+            },
+            {
+              "id": "want 0.3.1",
+              "target": "want"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.14.28"
+      },
+      "license": "MIT"
+    },
+    "iana-time-zone 0.1.59": {
+      "name": "iana-time-zone",
+      "version": "0.1.59",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/iana-time-zone/0.1.59/download",
+          "sha256": "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "iana_time_zone",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "iana_time_zone",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "fallback"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [
+              {
+                "id": "core-foundation-sys 0.8.6",
+                "target": "core_foundation_sys"
+              }
+            ],
+            "cfg(target_arch = \"wasm32\")": [
+              {
+                "id": "js-sys 0.3.66",
+                "target": "js_sys"
+              },
+              {
+                "id": "wasm-bindgen 0.2.89",
+                "target": "wasm_bindgen"
+              }
+            ],
+            "cfg(target_os = \"android\")": [
+              {
+                "id": "android_system_properties 0.1.5",
+                "target": "android_system_properties"
+              }
+            ],
+            "cfg(target_os = \"haiku\")": [
+              {
+                "id": "iana-time-zone-haiku 0.1.2",
+                "target": "iana_time_zone_haiku"
+              }
+            ],
+            "cfg(target_os = \"windows\")": [
+              {
+                "id": "windows-core 0.52.0",
+                "target": "windows_core"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.1.59"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "iana-time-zone-haiku 0.1.2": {
+      "name": "iana-time-zone-haiku",
+      "version": "0.1.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download",
+          "sha256": "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "iana_time_zone_haiku",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "iana_time_zone_haiku",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "iana-time-zone-haiku 0.1.2",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.1.2"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cc 1.0.83",
+              "target": "cc"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "idna 0.5.0": {
+      "name": "idna",
+      "version": "0.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/idna/0.5.0/download",
+          "sha256": "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "idna",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "idna",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "unicode-bidi 0.3.14",
+              "target": "unicode_bidi"
+            },
+            {
+              "id": "unicode-normalization 0.1.22",
+              "target": "unicode_normalization"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.5.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "ignore 0.4.22": {
+      "name": "ignore",
+      "version": "0.4.22",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ignore/0.4.22/download",
+          "sha256": "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ignore",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ignore",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-deque 0.8.5",
+              "target": "crossbeam_deque"
+            },
+            {
+              "id": "globset 0.4.14",
+              "target": "globset"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "regex-automata 0.4.3",
+              "target": "regex_automata"
+            },
+            {
+              "id": "same-file 1.0.6",
+              "target": "same_file"
+            },
+            {
+              "id": "walkdir 2.4.0",
+              "target": "walkdir"
+            }
+          ],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "winapi-util 0.1.6",
+                "target": "winapi_util"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.4.22"
+      },
+      "license": "Unlicense OR MIT"
+    },
+    "indexmap 2.1.0": {
+      "name": "indexmap",
+      "version": "2.1.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/indexmap/2.1.0/download",
+          "sha256": "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "indexmap",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "indexmap",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "equivalent 1.0.1",
+              "target": "equivalent"
+            },
+            {
+              "id": "hashbrown 0.14.3",
+              "target": "hashbrown"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.1.0"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "inotify 0.9.6": {
+      "name": "inotify",
+      "version": "0.9.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/inotify/0.9.6/download",
+          "sha256": "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "inotify",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "inotify",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 1.3.2",
+              "target": "bitflags"
+            },
+            {
+              "id": "inotify-sys 0.1.5",
+              "target": "inotify_sys"
+            },
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.9.6"
+      },
+      "license": "ISC"
+    },
+    "inotify-sys 0.1.5": {
+      "name": "inotify-sys",
+      "version": "0.1.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/inotify-sys/0.1.5/download",
+          "sha256": "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "inotify_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "inotify_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.1.5"
+      },
+      "license": "ISC"
+    },
+    "is-terminal 0.4.10": {
+      "name": "is-terminal",
+      "version": "0.4.10",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/is-terminal/0.4.10/download",
+          "sha256": "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "is_terminal",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "is_terminal",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [
+              {
+                "id": "rustix 0.38.28",
+                "target": "rustix"
+              }
+            ],
+            "cfg(target_os = \"hermit\")": [
+              {
+                "id": "hermit-abi 0.3.3",
+                "target": "hermit_abi"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.4.10"
+      },
+      "license": "MIT"
+    },
+    "itertools 0.10.5": {
+      "name": "itertools",
+      "version": "0.10.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/itertools/0.10.5/download",
+          "sha256": "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "itertools",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "itertools",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "use_alloc"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "either 1.9.0",
+              "target": "either"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.5"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "itoa 1.0.10": {
+      "name": "itoa",
+      "version": "1.0.10",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/itoa/1.0.10/download",
+          "sha256": "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "itoa",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "itoa",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.10"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "js-sys 0.3.66": {
+      "name": "js-sys",
+      "version": "0.3.66",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/js-sys/0.3.66/download",
+          "sha256": "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "js_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "js_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "wasm-bindgen 0.2.89",
+              "target": "wasm_bindgen"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.66"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "kqueue 1.0.8": {
+      "name": "kqueue",
+      "version": "1.0.8",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/kqueue/1.0.8/download",
+          "sha256": "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "kqueue",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "kqueue",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "kqueue-sys 1.0.4",
+              "target": "kqueue_sys"
+            },
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.8"
+      },
+      "license": "MIT"
+    },
+    "kqueue-sys 1.0.4": {
+      "name": "kqueue-sys",
+      "version": "1.0.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/kqueue-sys/1.0.4/download",
+          "sha256": "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "kqueue_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "kqueue_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 1.3.2",
+              "target": "bitflags"
+            },
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.4"
+      },
+      "license": "MIT"
+    },
+    "lazy_static 1.4.0": {
+      "name": "lazy_static",
+      "version": "1.4.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/lazy_static/1.4.0/download",
+          "sha256": "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "lazy_static",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "lazy_static",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.4.0"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "libc 0.2.152": {
+      "name": "libc",
+      "version": "0.2.152",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/libc/0.2.152/download",
+          "sha256": "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "libc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "libc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {
+            "aarch64-apple-darwin": [
+              "extra_traits"
+            ],
+            "aarch64-apple-ios": [
+              "extra_traits"
+            ],
+            "aarch64-apple-ios-sim": [
+              "extra_traits"
+            ],
+            "aarch64-fuchsia": [
+              "extra_traits"
+            ],
+            "aarch64-linux-android": [
+              "extra_traits"
+            ],
+            "aarch64-unknown-nto-qnx710": [
+              "extra_traits"
+            ],
+            "aarch64-unknown-uefi": [
+              "extra_traits"
+            ],
+            "armv7-linux-androideabi": [
+              "extra_traits"
+            ],
+            "i686-apple-darwin": [
+              "extra_traits"
+            ],
+            "i686-linux-android": [
+              "extra_traits"
+            ],
+            "i686-unknown-freebsd": [
+              "extra_traits"
+            ],
+            "powerpc-unknown-linux-gnu": [
+              "extra_traits"
+            ],
+            "riscv32imc-unknown-none-elf": [
+              "extra_traits"
+            ],
+            "riscv64gc-unknown-none-elf": [
+              "extra_traits"
+            ],
+            "s390x-unknown-linux-gnu": [
+              "extra_traits"
+            ],
+            "thumbv7em-none-eabi": [
+              "extra_traits"
+            ],
+            "thumbv8m.main-none-eabi": [
+              "extra_traits"
+            ],
+            "wasm32-unknown-unknown": [
+              "extra_traits"
+            ],
+            "wasm32-wasi": [
+              "extra_traits"
+            ],
+            "x86_64-apple-darwin": [
+              "extra_traits"
+            ],
+            "x86_64-apple-ios": [
+              "extra_traits"
+            ],
+            "x86_64-fuchsia": [
+              "extra_traits"
+            ],
+            "x86_64-linux-android": [
+              "extra_traits"
+            ],
+            "x86_64-unknown-freebsd": [
+              "extra_traits"
+            ],
+            "x86_64-unknown-none": [
+              "extra_traits"
+            ],
+            "x86_64-unknown-uefi": [
+              "extra_traits"
+            ]
+          }
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "libc 0.2.152",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.2.152"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "linux-raw-sys 0.4.12": {
+      "name": "linux-raw-sys",
+      "version": "0.4.12",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/linux-raw-sys/0.4.12/download",
+          "sha256": "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "linux_raw_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "linux_raw_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "general",
+            "ioctl",
+            "no_std"
+          ],
+          "selects": {
+            "aarch64-unknown-linux-gnu": [
+              "elf",
+              "errno"
+            ],
+            "aarch64-unknown-nixos-gnu": [
+              "elf",
+              "errno"
+            ],
+            "arm-unknown-linux-gnueabi": [
+              "elf",
+              "errno"
+            ],
+            "armv7-unknown-linux-gnueabi": [
+              "elf",
+              "errno"
+            ],
+            "i686-unknown-linux-gnu": [
+              "elf",
+              "errno"
+            ],
+            "x86_64-unknown-linux-gnu": [
+              "elf",
+              "errno"
+            ],
+            "x86_64-unknown-nixos-gnu": [
+              "elf",
+              "errno"
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.4.12"
+      },
+      "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
+    },
+    "lock_api 0.4.11": {
+      "name": "lock_api",
+      "version": "0.4.11",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/lock_api/0.4.11/download",
+          "sha256": "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "lock_api",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "lock_api",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "atomic_usize",
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "lock_api 0.4.11",
+              "target": "build_script_build"
+            },
+            {
+              "id": "scopeguard 1.2.0",
+              "target": "scopeguard"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.4.11"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "autocfg 1.1.0",
+              "target": "autocfg"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "log 0.4.20": {
+      "name": "log",
+      "version": "0.4.20",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/log/0.4.20/download",
+          "sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "log",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "log",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.4.20"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "mac 0.1.1": {
+      "name": "mac",
+      "version": "0.1.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/mac/0.1.1/download",
+          "sha256": "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "mac",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "mac",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.1.1"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "maplit 1.0.2": {
+      "name": "maplit",
+      "version": "1.0.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/maplit/1.0.2/download",
+          "sha256": "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "maplit",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "maplit",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.0.2"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "markup5ever 0.11.0": {
+      "name": "markup5ever",
+      "version": "0.11.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/markup5ever/0.11.0/download",
+          "sha256": "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "markup5ever",
+            "crate_root": "lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "markup5ever",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "markup5ever 0.11.0",
+              "target": "build_script_build"
+            },
+            {
+              "id": "phf 0.10.1",
+              "target": "phf"
+            },
+            {
+              "id": "string_cache 0.8.7",
+              "target": "string_cache"
+            },
+            {
+              "id": "tendril 0.4.3",
+              "target": "tendril"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.11.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "phf_codegen 0.10.0",
+              "target": "phf_codegen"
+            },
+            {
+              "id": "string_cache_codegen 0.5.2",
+              "target": "string_cache_codegen"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "mdbook 0.4.36": {
+      "name": "mdbook",
+      "version": "0.4.36",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/mdbook/0.4.36/download",
+          "sha256": "80992cb0e05f22cc052c99f8e883f1593b891014b96a8b4637fd274d7030c85e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "mdbook",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "mdbook",
+            "crate_root": "src/main.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "mdbook",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "search",
+            "serve",
+            "watch"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "ammonia 3.3.0",
+              "target": "ammonia"
+            },
+            {
+              "id": "anyhow 1.0.79",
+              "target": "anyhow"
+            },
+            {
+              "id": "chrono 0.4.31",
+              "target": "chrono"
+            },
+            {
+              "id": "clap 4.4.16",
+              "target": "clap"
+            },
+            {
+              "id": "clap_complete 4.4.6",
+              "target": "clap_complete"
+            },
+            {
+              "id": "elasticlunr-rs 3.0.2",
+              "target": "elasticlunr"
+            },
+            {
+              "id": "env_logger 0.10.1",
+              "target": "env_logger"
+            },
+            {
+              "id": "futures-util 0.3.30",
+              "target": "futures_util"
+            },
+            {
+              "id": "handlebars 4.5.0",
+              "target": "handlebars"
+            },
+            {
+              "id": "ignore 0.4.22",
+              "target": "ignore"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "notify 6.1.1",
+              "target": "notify"
+            },
+            {
+              "id": "notify-debouncer-mini 0.4.1",
+              "target": "notify_debouncer_mini"
+            },
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            },
+            {
+              "id": "opener 0.6.1",
+              "target": "opener"
+            },
+            {
+              "id": "pathdiff 0.2.1",
+              "target": "pathdiff"
+            },
+            {
+              "id": "pulldown-cmark 0.9.3",
+              "target": "pulldown_cmark"
+            },
+            {
+              "id": "regex 1.10.2",
+              "target": "regex"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            },
+            {
+              "id": "serde_json 1.0.111",
+              "target": "serde_json"
+            },
+            {
+              "id": "shlex 1.2.0",
+              "target": "shlex"
+            },
+            {
+              "id": "tempfile 3.9.0",
+              "target": "tempfile"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            },
+            {
+              "id": "toml 0.5.11",
+              "target": "toml"
+            },
+            {
+              "id": "topological-sort 0.2.2",
+              "target": "topological_sort"
+            },
+            {
+              "id": "warp 0.3.6",
+              "target": "warp"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.4.36"
+      },
+      "license": "MPL-2.0"
+    },
+    "memchr 2.7.1": {
+      "name": "memchr",
+      "version": "2.7.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/memchr/2.7.1/download",
+          "sha256": "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "memchr",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "memchr",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.7.1"
+      },
+      "license": "Unlicense OR MIT"
+    },
+    "mime 0.3.17": {
+      "name": "mime",
+      "version": "0.3.17",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/mime/0.3.17/download",
+          "sha256": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "mime",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "mime",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.3.17"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "mime_guess 2.0.4": {
+      "name": "mime_guess",
+      "version": "2.0.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/mime_guess/2.0.4/download",
+          "sha256": "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "mime_guess",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "mime_guess",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "rev-mappings"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "mime 0.3.17",
+              "target": "mime"
+            },
+            {
+              "id": "mime_guess 2.0.4",
+              "target": "build_script_build"
+            },
+            {
+              "id": "unicase 2.7.0",
+              "target": "unicase"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "2.0.4"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "unicase 2.7.0",
+              "target": "unicase"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT"
+    },
+    "miniz_oxide 0.7.1": {
+      "name": "miniz_oxide",
+      "version": "0.7.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/miniz_oxide/0.7.1/download",
+          "sha256": "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "miniz_oxide",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "miniz_oxide",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "adler 1.0.2",
+              "target": "adler"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.7.1"
+      },
+      "license": "MIT OR Zlib OR Apache-2.0"
+    },
+    "mio 0.8.10": {
+      "name": "mio",
+      "version": "0.8.10",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/mio/0.8.10/download",
+          "sha256": "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "mio",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "mio",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "net",
+            "os-ext",
+            "os-poll"
+          ],
+          "selects": {
+            "aarch64-linux-android": [
+              "default",
+              "log"
+            ],
+            "aarch64-unknown-linux-gnu": [
+              "default",
+              "log"
+            ],
+            "aarch64-unknown-nixos-gnu": [
+              "default",
+              "log"
+            ],
+            "arm-unknown-linux-gnueabi": [
+              "default",
+              "log"
+            ],
+            "armv7-linux-androideabi": [
+              "default",
+              "log"
+            ],
+            "armv7-unknown-linux-gnueabi": [
+              "default",
+              "log"
+            ],
+            "i686-linux-android": [
+              "default",
+              "log"
+            ],
+            "i686-unknown-freebsd": [
+              "default",
+              "log"
+            ],
+            "i686-unknown-linux-gnu": [
+              "default",
+              "log"
+            ],
+            "powerpc-unknown-linux-gnu": [
+              "default",
+              "log"
+            ],
+            "s390x-unknown-linux-gnu": [
+              "default",
+              "log"
+            ],
+            "x86_64-linux-android": [
+              "default",
+              "log"
+            ],
+            "x86_64-unknown-freebsd": [
+              "default",
+              "log"
+            ],
+            "x86_64-unknown-linux-gnu": [
+              "default",
+              "log"
+            ],
+            "x86_64-unknown-nixos-gnu": [
+              "default",
+              "log"
+            ]
+          }
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            }
+          ],
+          "selects": {
+            "cfg(target_os = \"wasi\")": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              },
+              {
+                "id": "wasi 0.11.0+wasi-snapshot-preview1",
+                "target": "wasi"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.48.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.8.10"
+      },
+      "license": "MIT"
+    },
+    "multimap 0.8.3": {
+      "name": "multimap",
+      "version": "0.8.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/multimap/0.8.3/download",
+          "sha256": "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "multimap",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "multimap",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.8.3"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "new_debug_unreachable 1.0.4": {
+      "name": "new_debug_unreachable",
+      "version": "1.0.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download",
+          "sha256": "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "debug_unreachable",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "debug_unreachable",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.4"
+      },
+      "license": "MIT"
+    },
+    "normpath 1.1.1": {
+      "name": "normpath",
+      "version": "1.1.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/normpath/1.1.1/download",
+          "sha256": "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "normpath",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "normpath",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.48.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "1.1.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "notify 6.1.1": {
+      "name": "notify",
+      "version": "6.1.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/notify/6.1.1/download",
+          "sha256": "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "notify",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "notify",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "crossbeam-channel",
+            "default",
+            "fsevent-sys",
+            "macos_fsevent"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-channel 0.5.11",
+              "target": "crossbeam_channel"
+            },
+            {
+              "id": "filetime 0.2.23",
+              "target": "filetime"
+            },
+            {
+              "id": "libc 0.2.152",
+              "target": "libc"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "walkdir 2.4.0",
+              "target": "walkdir"
+            }
+          ],
+          "selects": {
+            "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\"))": [
+              {
+                "id": "kqueue 1.0.8",
+                "target": "kqueue"
+              },
+              {
+                "id": "mio 0.8.10",
+                "target": "mio"
+              }
+            ],
+            "cfg(any(target_os = \"linux\", target_os = \"android\"))": [
+              {
+                "id": "inotify 0.9.6",
+                "target": "inotify"
+              },
+              {
+                "id": "mio 0.8.10",
+                "target": "mio"
+              }
+            ],
+            "cfg(target_os = \"macos\")": [
+              {
+                "id": "bitflags 2.4.1",
+                "target": "bitflags"
+              },
+              {
+                "id": "fsevent-sys 4.1.0",
+                "target": "fsevent_sys"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.48.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "6.1.1"
+      },
+      "license": "CC0-1.0"
+    },
+    "notify-debouncer-mini 0.4.1": {
+      "name": "notify-debouncer-mini",
+      "version": "0.4.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/notify-debouncer-mini/0.4.1/download",
+          "sha256": "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "notify_debouncer_mini",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "notify_debouncer_mini",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "crossbeam",
+            "crossbeam-channel",
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "crossbeam-channel 0.5.11",
+              "target": "crossbeam_channel"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "notify 6.1.1",
+              "target": "notify"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.4.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "num-traits 0.2.17": {
+      "name": "num-traits",
+      "version": "0.2.17",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/num-traits/0.2.17/download",
+          "sha256": "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "num_traits",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "num_traits",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "num-traits 0.2.17",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.17"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "autocfg 1.1.0",
+              "target": "autocfg"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "num_cpus 1.16.0": {
+      "name": "num_cpus",
+      "version": "1.16.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/num_cpus/1.16.0/download",
+          "sha256": "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "num_cpus",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "num_cpus",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(not(windows))": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(target_os = \"hermit\")": [
+              {
+                "id": "hermit-abi 0.3.3",
+                "target": "hermit_abi"
+              }
+            ]
+          }
+        },
+        "edition": "2015",
+        "version": "1.16.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "object 0.32.2": {
+      "name": "object",
+      "version": "0.32.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/object/0.32.2/download",
+          "sha256": "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "object",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "object",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.32.2"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "once_cell 1.19.0": {
+      "name": "once_cell",
+      "version": "1.19.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/once_cell/1.19.0/download",
+          "sha256": "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "once_cell",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "once_cell",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "race",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.19.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "opener 0.6.1": {
+      "name": "opener",
+      "version": "0.6.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/opener/0.6.1/download",
+          "sha256": "6c62dcb6174f9cb326eac248f07e955d5d559c272730b6c03e396b443b562788"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "opener",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "opener",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(target_os = \"linux\")": [
+              {
+                "id": "bstr 1.9.0",
+                "target": "bstr"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "normpath 1.1.1",
+                "target": "normpath"
+              },
+              {
+                "id": "winapi 0.3.9",
+                "target": "winapi"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.6.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "parking_lot 0.12.1": {
+      "name": "parking_lot",
+      "version": "0.12.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/parking_lot/0.12.1/download",
+          "sha256": "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "parking_lot",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "parking_lot",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "lock_api 0.4.11",
+              "target": "lock_api"
+            },
+            {
+              "id": "parking_lot_core 0.9.9",
+              "target": "parking_lot_core"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.12.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "parking_lot_core 0.9.9": {
+      "name": "parking_lot_core",
+      "version": "0.9.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/parking_lot_core/0.9.9/download",
+          "sha256": "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "parking_lot_core",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "parking_lot_core",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "parking_lot_core 0.9.9",
+              "target": "build_script_build"
+            },
+            {
+              "id": "smallvec 1.11.2",
+              "target": "smallvec"
+            }
+          ],
+          "selects": {
+            "cfg(target_os = \"redox\")": [
+              {
+                "id": "redox_syscall 0.4.1",
+                "target": "syscall"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-targets 0.48.5",
+                "target": "windows_targets"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.9.9"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "pathdiff 0.2.1": {
+      "name": "pathdiff",
+      "version": "0.2.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pathdiff/0.2.1/download",
+          "sha256": "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pathdiff",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pathdiff",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.2.1"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "percent-encoding 2.3.1": {
+      "name": "percent-encoding",
+      "version": "2.3.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/percent-encoding/2.3.1/download",
+          "sha256": "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "percent_encoding",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "percent_encoding",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "2.3.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "pest 2.7.6": {
+      "name": "pest",
+      "version": "2.7.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pest/2.7.6/download",
+          "sha256": "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pest",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pest",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "memchr",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "thiserror 1.0.56",
+              "target": "thiserror"
+            },
+            {
+              "id": "ucd-trie 0.1.6",
+              "target": "ucd_trie"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.7.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "pest_derive 2.7.6": {
+      "name": "pest_derive",
+      "version": "2.7.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pest_derive/2.7.6/download",
+          "sha256": "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "pest_derive",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pest_derive",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "pest 2.7.6",
+              "target": "pest"
+            },
+            {
+              "id": "pest_generator 2.7.6",
+              "target": "pest_generator"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.7.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "pest_generator 2.7.6": {
+      "name": "pest_generator",
+      "version": "2.7.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pest_generator/2.7.6/download",
+          "sha256": "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pest_generator",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pest_generator",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "pest 2.7.6",
+              "target": "pest"
+            },
+            {
+              "id": "pest_meta 2.7.6",
+              "target": "pest_meta"
+            },
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.7.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "pest_meta 2.7.6": {
+      "name": "pest_meta",
+      "version": "2.7.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pest_meta/2.7.6/download",
+          "sha256": "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pest_meta",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pest_meta",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            },
+            {
+              "id": "pest 2.7.6",
+              "target": "pest"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.7.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "petgraph 0.6.4": {
+      "name": "petgraph",
+      "version": "0.6.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/petgraph/0.6.4/download",
+          "sha256": "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "petgraph",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "petgraph",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "fixedbitset 0.4.2",
+              "target": "fixedbitset"
+            },
+            {
+              "id": "indexmap 2.1.0",
+              "target": "indexmap"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.6.4"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "phf 0.10.1": {
+      "name": "phf",
+      "version": "0.10.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/phf/0.10.1/download",
+          "sha256": "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "phf",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "phf",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "phf_shared 0.10.0",
+              "target": "phf_shared"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.1"
+      },
+      "license": "MIT"
+    },
+    "phf_codegen 0.10.0": {
+      "name": "phf_codegen",
+      "version": "0.10.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/phf_codegen/0.10.0/download",
+          "sha256": "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "phf_codegen",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "phf_codegen",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "phf_generator 0.10.0",
+              "target": "phf_generator"
+            },
+            {
+              "id": "phf_shared 0.10.0",
+              "target": "phf_shared"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.0"
+      },
+      "license": "MIT"
+    },
+    "phf_generator 0.10.0": {
+      "name": "phf_generator",
+      "version": "0.10.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/phf_generator/0.10.0/download",
+          "sha256": "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "phf_generator",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "gen_hash_test",
+            "crate_root": "src/bin/gen_hash_test.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "phf_generator",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "phf_shared 0.10.0",
+              "target": "phf_shared"
+            },
+            {
+              "id": "rand 0.8.5",
+              "target": "rand"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.0"
+      },
+      "license": "MIT"
+    },
+    "phf_shared 0.10.0": {
+      "name": "phf_shared",
+      "version": "0.10.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/phf_shared/0.10.0/download",
+          "sha256": "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "phf_shared",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "phf_shared",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "siphasher 0.3.11",
+              "target": "siphasher"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.10.0"
+      },
+      "license": "MIT"
+    },
+    "pin-project 1.1.3": {
+      "name": "pin-project",
+      "version": "1.1.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pin-project/1.1.3/download",
+          "sha256": "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pin_project",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pin_project",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "pin-project-internal 1.1.3",
+              "target": "pin_project_internal"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "1.1.3"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "pin-project-internal 1.1.3": {
+      "name": "pin-project-internal",
+      "version": "1.1.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pin-project-internal/1.1.3/download",
+          "sha256": "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "pin_project_internal",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pin_project_internal",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.1.3"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "pin-project-lite 0.2.13": {
+      "name": "pin-project-lite",
+      "version": "0.2.13",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download",
+          "sha256": "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pin_project_lite",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pin_project_lite",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.2.13"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "pin-utils 0.1.0": {
+      "name": "pin-utils",
+      "version": "0.1.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pin-utils/0.1.0/download",
+          "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pin_utils",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pin_utils",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.1.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "ppv-lite86 0.2.17": {
+      "name": "ppv-lite86",
+      "version": "0.2.17",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download",
+          "sha256": "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ppv_lite86",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ppv_lite86",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "simd",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.17"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "precomputed-hash 0.1.1": {
+      "name": "precomputed-hash",
+      "version": "0.1.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download",
+          "sha256": "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "precomputed_hash",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "precomputed_hash",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.1.1"
+      },
+      "license": "MIT"
+    },
+    "proc-macro2 1.0.76": {
+      "name": "proc-macro2",
+      "version": "1.0.76",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.76/download",
+          "sha256": "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "proc_macro2",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "proc_macro2",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "proc-macro"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "build_script_build"
+            },
+            {
+              "id": "unicode-ident 1.0.12",
+              "target": "unicode_ident"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.0.76"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "prost 0.11.9": {
+      "name": "prost",
+      "version": "0.11.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost/0.11.9/download",
+          "sha256": "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "prost",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "prost-derive",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "prost-derive 0.11.9",
+              "target": "prost_derive"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "0.11.9"
+      },
+      "license": "Apache-2.0"
+    },
+    "prost-build 0.11.9": {
+      "name": "prost-build",
+      "version": "0.11.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost-build/0.11.9/download",
+          "sha256": "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "prost_build",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost_build",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "heck 0.4.1",
+              "target": "heck"
+            },
+            {
+              "id": "itertools 0.10.5",
+              "target": "itertools"
+            },
+            {
+              "id": "lazy_static 1.4.0",
+              "target": "lazy_static"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "multimap 0.8.3",
+              "target": "multimap"
+            },
+            {
+              "id": "petgraph 0.6.4",
+              "target": "petgraph"
+            },
+            {
+              "id": "prost 0.11.9",
+              "target": "prost"
+            },
+            {
+              "id": "prost-types 0.11.9",
+              "target": "prost_types"
+            },
+            {
+              "id": "regex 1.10.2",
+              "target": "regex"
+            },
+            {
+              "id": "tempfile 3.9.0",
+              "target": "tempfile"
+            },
+            {
+              "id": "which 4.4.2",
+              "target": "which"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.11.9"
+      },
+      "license": "Apache-2.0"
+    },
+    "prost-derive 0.11.9": {
+      "name": "prost-derive",
+      "version": "0.11.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost-derive/0.11.9/download",
+          "sha256": "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "prost_derive",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost_derive",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "anyhow 1.0.79",
+              "target": "anyhow"
+            },
+            {
+              "id": "itertools 0.10.5",
+              "target": "itertools"
+            },
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 1.0.109",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.11.9"
+      },
+      "license": "Apache-2.0"
+    },
+    "prost-types 0.11.9": {
+      "name": "prost-types",
+      "version": "0.11.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost-types/0.11.9/download",
+          "sha256": "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "prost_types",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost_types",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "prost 0.11.9",
+              "target": "prost"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.11.9"
+      },
+      "license": "Apache-2.0"
+    },
+    "protoc-gen-prost 0.2.3": {
+      "name": "protoc-gen-prost",
+      "version": "0.2.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/protoc-gen-prost/0.2.3/download",
+          "sha256": "10dfa031ad41fdcfb180de73ece3ed076250f1132a13ad6bba218699f612fb95"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "protoc_gen_prost",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "protoc-gen-prost",
+            "crate_root": "src/main.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "protoc_gen_prost",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            },
+            {
+              "id": "prost 0.11.9",
+              "target": "prost"
+            },
+            {
+              "id": "prost-build 0.11.9",
+              "target": "prost_build"
+            },
+            {
+              "id": "prost-types 0.11.9",
+              "target": "prost_types"
+            },
+            {
+              "id": "regex 1.10.2",
+              "target": "regex"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.2.3"
+      },
+      "license": "Apache-2.0"
+    },
+    "pulldown-cmark 0.9.3": {
+      "name": "pulldown-cmark",
+      "version": "0.9.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/pulldown-cmark/0.9.3/download",
+          "sha256": "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "pulldown_cmark",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "Binary": {
+            "crate_name": "pulldown-cmark",
+            "crate_root": "src/main.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "pulldown_cmark",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 1.3.2",
+              "target": "bitflags"
+            },
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "pulldown-cmark 0.9.3",
+              "target": "build_script_build"
+            },
+            {
+              "id": "unicase 2.7.0",
+              "target": "unicase"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.9.3"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT"
+    },
+    "quote 1.0.35": {
+      "name": "quote",
+      "version": "1.0.35",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/quote/1.0.35/download",
+          "sha256": "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "quote",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "quote",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "proc-macro"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.35"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "rand 0.8.5": {
+      "name": "rand",
+      "version": "0.8.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/rand/0.8.5/download",
+          "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "rand",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "rand",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "getrandom",
+            "libc",
+            "rand_chacha",
+            "small_rng",
+            "std",
+            "std_rng"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "rand_chacha 0.3.1",
+              "target": "rand_chacha"
+            },
+            {
+              "id": "rand_core 0.6.4",
+              "target": "rand_core"
+            }
+          ],
+          "selects": {
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.8.5"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "rand_chacha 0.3.1": {
+      "name": "rand_chacha",
+      "version": "0.3.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/rand_chacha/0.3.1/download",
+          "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "rand_chacha",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "rand_chacha",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "ppv-lite86 0.2.17",
+              "target": "ppv_lite86"
+            },
+            {
+              "id": "rand_core 0.6.4",
+              "target": "rand_core"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "rand_core 0.6.4": {
+      "name": "rand_core",
+      "version": "0.6.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/rand_core/0.6.4/download",
+          "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "rand_core",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "rand_core",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "getrandom",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "getrandom 0.2.12",
+              "target": "getrandom"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.6.4"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "redox_syscall 0.4.1": {
+      "name": "redox_syscall",
+      "version": "0.4.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/redox_syscall/0.4.1/download",
+          "sha256": "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "syscall",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "syscall",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 1.3.2",
+              "target": "bitflags"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.4.1"
+      },
+      "license": "MIT"
+    },
+    "regex 1.10.2": {
+      "name": "regex",
+      "version": "1.10.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/regex/1.10.2/download",
+          "sha256": "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "regex",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "regex",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "perf",
+            "perf-backtrack",
+            "perf-cache",
+            "perf-dfa",
+            "perf-inline",
+            "perf-literal",
+            "perf-onepass",
+            "std",
+            "unicode",
+            "unicode-age",
+            "unicode-bool",
+            "unicode-case",
+            "unicode-gencat",
+            "unicode-perl",
+            "unicode-script",
+            "unicode-segment"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "aho-corasick 1.1.2",
+              "target": "aho_corasick"
+            },
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "regex-automata 0.4.3",
+              "target": "regex_automata"
+            },
+            {
+              "id": "regex-syntax 0.8.2",
+              "target": "regex_syntax"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.10.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "regex-automata 0.4.3": {
+      "name": "regex-automata",
+      "version": "0.4.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/regex-automata/0.4.3/download",
+          "sha256": "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "regex_automata",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "regex_automata",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "dfa-onepass",
+            "hybrid",
+            "meta",
+            "nfa",
+            "nfa-backtrack",
+            "nfa-pikevm",
+            "nfa-thompson",
+            "perf",
+            "perf-inline",
+            "perf-literal",
+            "perf-literal-multisubstring",
+            "perf-literal-substring",
+            "std",
+            "syntax",
+            "unicode",
+            "unicode-age",
+            "unicode-bool",
+            "unicode-case",
+            "unicode-gencat",
+            "unicode-perl",
+            "unicode-script",
+            "unicode-segment",
+            "unicode-word-boundary"
+          ],
+          "selects": {
+            "aarch64-unknown-linux-gnu": [
+              "dfa-search"
+            ],
+            "aarch64-unknown-nixos-gnu": [
+              "dfa-search"
+            ],
+            "arm-unknown-linux-gnueabi": [
+              "dfa-search"
+            ],
+            "armv7-unknown-linux-gnueabi": [
+              "dfa-search"
+            ],
+            "i686-unknown-linux-gnu": [
+              "dfa-search"
+            ],
+            "powerpc-unknown-linux-gnu": [
+              "dfa-search"
+            ],
+            "s390x-unknown-linux-gnu": [
+              "dfa-search"
+            ],
+            "x86_64-unknown-linux-gnu": [
+              "dfa-search"
+            ],
+            "x86_64-unknown-nixos-gnu": [
+              "dfa-search"
+            ]
+          }
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "aho-corasick 1.1.2",
+              "target": "aho_corasick"
+            },
+            {
+              "id": "memchr 2.7.1",
+              "target": "memchr"
+            },
+            {
+              "id": "regex-syntax 0.8.2",
+              "target": "regex_syntax"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.4.3"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "regex-syntax 0.8.2": {
+      "name": "regex-syntax",
+      "version": "0.8.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/regex-syntax/0.8.2/download",
+          "sha256": "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "regex_syntax",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "regex_syntax",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std",
+            "unicode",
+            "unicode-age",
+            "unicode-bool",
+            "unicode-case",
+            "unicode-gencat",
+            "unicode-perl",
+            "unicode-script",
+            "unicode-segment"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.8.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "rustc-demangle 0.1.23": {
+      "name": "rustc-demangle",
+      "version": "0.1.23",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/rustc-demangle/0.1.23/download",
+          "sha256": "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "rustc_demangle",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "rustc_demangle",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.1.23"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "rustix 0.38.28": {
+      "name": "rustix",
+      "version": "0.38.28",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/rustix/0.38.28/download",
+          "sha256": "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "rustix",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "rustix",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "fs",
+            "std"
+          ],
+          "selects": {
+            "aarch64-apple-darwin": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-apple-ios": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-apple-ios-sim": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-fuchsia": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-linux-android": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-unknown-linux-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-unknown-nixos-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-unknown-nto-qnx710": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "aarch64-unknown-uefi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "arm-unknown-linux-gnueabi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "armv7-linux-androideabi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "armv7-unknown-linux-gnueabi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "i686-apple-darwin": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "i686-linux-android": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "i686-unknown-freebsd": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "i686-unknown-linux-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "powerpc-unknown-linux-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "riscv32imc-unknown-none-elf": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "riscv64gc-unknown-none-elf": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "s390x-unknown-linux-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "thumbv7em-none-eabi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "thumbv8m.main-none-eabi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "wasm32-unknown-unknown": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "wasm32-wasi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-apple-darwin": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-apple-ios": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-fuchsia": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-linux-android": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-unknown-freebsd": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-unknown-linux-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-unknown-nixos-gnu": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-unknown-none": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ],
+            "x86_64-unknown-uefi": [
+              "default",
+              "termios",
+              "use-libc-auxv"
+            ]
+          }
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 2.4.1",
+              "target": "bitflags"
+            },
+            {
+              "id": "rustix 0.38.28",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {
+            "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", 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 = \"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\")))))))": [
+              {
+                "id": "linux-raw-sys 0.4.12",
+                "target": "linux_raw_sys"
+              }
+            ],
+            "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", 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 = \"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\"))))": [
+              {
+                "id": "linux-raw-sys 0.4.12",
+                "target": "linux_raw_sys"
+              }
+            ],
+            "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", 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 = \"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\")))))))": [
+              {
+                "id": "errno 0.3.8",
+                "target": "errno",
+                "alias": "libc_errno"
+              },
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "errno 0.3.8",
+                "target": "errno",
+                "alias": "libc_errno"
+              },
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.38.28"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
+    },
+    "rustls-pemfile 1.0.4": {
+      "name": "rustls-pemfile",
+      "version": "1.0.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/rustls-pemfile/1.0.4/download",
+          "sha256": "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "rustls_pemfile",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "rustls_pemfile",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "base64 0.21.7",
+              "target": "base64"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.4"
+      },
+      "license": "Apache-2.0 OR ISC OR MIT"
+    },
+    "ryu 1.0.16": {
+      "name": "ryu",
+      "version": "1.0.16",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ryu/1.0.16/download",
+          "sha256": "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ryu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ryu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.16"
+      },
+      "license": "Apache-2.0 OR BSL-1.0"
+    },
+    "same-file 1.0.6": {
+      "name": "same-file",
+      "version": "1.0.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/same-file/1.0.6/download",
+          "sha256": "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "same_file",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "same_file",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "winapi-util 0.1.6",
+                "target": "winapi_util"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "1.0.6"
+      },
+      "license": "Unlicense/MIT"
+    },
+    "scoped-tls 1.0.1": {
+      "name": "scoped-tls",
+      "version": "1.0.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/scoped-tls/1.0.1/download",
+          "sha256": "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "scoped_tls",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "scoped_tls",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.0.1"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "scopeguard 1.2.0": {
+      "name": "scopeguard",
+      "version": "1.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/scopeguard/1.2.0/download",
+          "sha256": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "scopeguard",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "scopeguard",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "1.2.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "serde 1.0.195": {
+      "name": "serde",
+      "version": "1.0.195",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/serde/1.0.195/download",
+          "sha256": "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "serde",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "serde",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "derive",
+            "serde_derive",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "serde 1.0.195",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "serde_derive 1.0.195",
+              "target": "serde_derive"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "1.0.195"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "serde_derive 1.0.195": {
+      "name": "serde_derive",
+      "version": "1.0.195",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/serde_derive/1.0.195/download",
+          "sha256": "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "serde_derive",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "serde_derive",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "1.0.195"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "serde_json 1.0.111": {
+      "name": "serde_json",
+      "version": "1.0.111",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/serde_json/1.0.111/download",
+          "sha256": "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "serde_json",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "serde_json",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "itoa 1.0.10",
+              "target": "itoa"
+            },
+            {
+              "id": "ryu 1.0.16",
+              "target": "ryu"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            },
+            {
+              "id": "serde_json 1.0.111",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.0.111"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "serde_urlencoded 0.7.1": {
+      "name": "serde_urlencoded",
+      "version": "0.7.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download",
+          "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "serde_urlencoded",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "serde_urlencoded",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "form_urlencoded 1.2.1",
+              "target": "form_urlencoded"
+            },
+            {
+              "id": "itoa 1.0.10",
+              "target": "itoa"
+            },
+            {
+              "id": "ryu 1.0.16",
+              "target": "ryu"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.7.1"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "sha1 0.10.6": {
+      "name": "sha1",
+      "version": "0.10.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/sha1/0.10.6/download",
+          "sha256": "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "sha1",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "sha1",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "digest 0.10.7",
+              "target": "digest"
+            }
+          ],
+          "selects": {
+            "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [
+              {
+                "id": "cpufeatures 0.2.12",
+                "target": "cpufeatures"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.10.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "sha2 0.10.8": {
+      "name": "sha2",
+      "version": "0.10.8",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/sha2/0.10.8/download",
+          "sha256": "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "sha2",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "sha2",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "digest 0.10.7",
+              "target": "digest"
+            }
+          ],
+          "selects": {
+            "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [
+              {
+                "id": "cpufeatures 0.2.12",
+                "target": "cpufeatures"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.10.8"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "shlex 1.2.0": {
+      "name": "shlex",
+      "version": "1.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/shlex/1.2.0/download",
+          "sha256": "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "shlex",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "shlex",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "1.2.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "siphasher 0.3.11": {
+      "name": "siphasher",
+      "version": "0.3.11",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/siphasher/0.3.11/download",
+          "sha256": "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "siphasher",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "siphasher",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.11"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "slab 0.4.9": {
+      "name": "slab",
+      "version": "0.4.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/slab/0.4.9/download",
+          "sha256": "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "slab",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "slab",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "slab 0.4.9",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.4.9"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "autocfg 1.1.0",
+              "target": "autocfg"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT"
+    },
+    "smallvec 1.11.2": {
+      "name": "smallvec",
+      "version": "1.11.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/smallvec/1.11.2/download",
+          "sha256": "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "smallvec",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "smallvec",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.11.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "socket2 0.5.5": {
+      "name": "socket2",
+      "version": "0.5.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/socket2/0.5.5/download",
+          "sha256": "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "socket2",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "socket2",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "all"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.48.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.5.5"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "string_cache 0.8.7": {
+      "name": "string_cache",
+      "version": "0.8.7",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/string_cache/0.8.7/download",
+          "sha256": "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "string_cache",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "string_cache",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "serde",
+            "serde_support"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "new_debug_unreachable 1.0.4",
+              "target": "debug_unreachable"
+            },
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            },
+            {
+              "id": "parking_lot 0.12.1",
+              "target": "parking_lot"
+            },
+            {
+              "id": "phf_shared 0.10.0",
+              "target": "phf_shared"
+            },
+            {
+              "id": "precomputed-hash 0.1.1",
+              "target": "precomputed_hash"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.8.7"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "string_cache_codegen 0.5.2": {
+      "name": "string_cache_codegen",
+      "version": "0.5.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download",
+          "sha256": "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "string_cache_codegen",
+            "crate_root": "lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "string_cache_codegen",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "phf_generator 0.10.0",
+              "target": "phf_generator"
+            },
+            {
+              "id": "phf_shared 0.10.0",
+              "target": "phf_shared"
+            },
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.5.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "strsim 0.10.0": {
+      "name": "strsim",
+      "version": "0.10.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/strsim/0.10.0/download",
+          "sha256": "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "strsim",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "strsim",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.10.0"
+      },
+      "license": "MIT"
+    },
+    "syn 1.0.109": {
+      "name": "syn",
+      "version": "1.0.109",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/syn/1.0.109/download",
+          "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "syn",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "syn",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "clone-impls",
+            "default",
+            "derive",
+            "extra-traits",
+            "fold",
+            "full",
+            "parsing",
+            "printing",
+            "proc-macro",
+            "quote"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 1.0.109",
+              "target": "build_script_build"
+            },
+            {
+              "id": "unicode-ident 1.0.12",
+              "target": "unicode_ident"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.109"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "syn 2.0.48": {
+      "name": "syn",
+      "version": "2.0.48",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/syn/2.0.48/download",
+          "sha256": "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "syn",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "syn",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "clone-impls",
+            "default",
+            "derive",
+            "full",
+            "parsing",
+            "printing",
+            "proc-macro",
+            "quote",
+            "visit-mut"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "unicode-ident 1.0.12",
+              "target": "unicode_ident"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.0.48"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "tempfile 3.9.0": {
+      "name": "tempfile",
+      "version": "3.9.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tempfile/3.9.0/download",
+          "sha256": "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tempfile",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tempfile",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "fastrand 2.0.1",
+              "target": "fastrand"
+            }
+          ],
+          "selects": {
+            "cfg(any(unix, target_os = \"wasi\"))": [
+              {
+                "id": "rustix 0.38.28",
+                "target": "rustix"
+              }
+            ],
+            "cfg(target_os = \"redox\")": [
+              {
+                "id": "redox_syscall 0.4.1",
+                "target": "syscall"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.52.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "3.9.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "tendril 0.4.3": {
+      "name": "tendril",
+      "version": "0.4.3",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tendril/0.4.3/download",
+          "sha256": "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tendril",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tendril",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "futf 0.1.5",
+              "target": "futf"
+            },
+            {
+              "id": "mac 0.1.1",
+              "target": "mac"
+            },
+            {
+              "id": "utf-8 0.7.6",
+              "target": "utf8"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.4.3"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "termcolor 1.4.1": {
+      "name": "termcolor",
+      "version": "1.4.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/termcolor/1.4.1/download",
+          "sha256": "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "termcolor",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "termcolor",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "winapi-util 0.1.6",
+                "target": "winapi_util"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "1.4.1"
+      },
+      "license": "Unlicense OR MIT"
+    },
+    "terminal_size 0.3.0": {
+      "name": "terminal_size",
+      "version": "0.3.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/terminal_size/0.3.0/download",
+          "sha256": "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "terminal_size",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "terminal_size",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(not(windows))": [
+              {
+                "id": "rustix 0.38.28",
+                "target": "rustix"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.48.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.3.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "thiserror 1.0.56": {
+      "name": "thiserror",
+      "version": "1.0.56",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/thiserror/1.0.56/download",
+          "sha256": "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "thiserror",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "thiserror",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "thiserror 1.0.56",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "thiserror-impl 1.0.56",
+              "target": "thiserror_impl"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "1.0.56"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "thiserror-impl 1.0.56": {
+      "name": "thiserror-impl",
+      "version": "1.0.56",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/thiserror-impl/1.0.56/download",
+          "sha256": "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "thiserror_impl",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "thiserror_impl",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.0.56"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "tinyvec 1.6.0": {
+      "name": "tinyvec",
+      "version": "1.6.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tinyvec/1.6.0/download",
+          "sha256": "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tinyvec",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tinyvec",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "tinyvec_macros"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "tinyvec_macros 0.1.1",
+              "target": "tinyvec_macros"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.6.0"
+      },
+      "license": "Zlib OR Apache-2.0 OR MIT"
+    },
+    "tinyvec_macros 0.1.1": {
+      "name": "tinyvec_macros",
+      "version": "0.1.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download",
+          "sha256": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tinyvec_macros",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tinyvec_macros",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.1.1"
+      },
+      "license": "MIT OR Apache-2.0 OR Zlib"
+    },
+    "tokio 1.35.1": {
+      "name": "tokio",
+      "version": "1.35.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tokio/1.35.1/download",
+          "sha256": "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tokio",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tokio",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "bytes",
+            "default",
+            "fs",
+            "io-util",
+            "libc",
+            "macros",
+            "mio",
+            "net",
+            "num_cpus",
+            "rt",
+            "rt-multi-thread",
+            "socket2",
+            "sync",
+            "time",
+            "tokio-macros"
+          ],
+          "selects": {
+            "aarch64-pc-windows-msvc": [
+              "windows-sys"
+            ],
+            "i686-pc-windows-msvc": [
+              "windows-sys"
+            ],
+            "x86_64-pc-windows-msvc": [
+              "windows-sys"
+            ]
+          }
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "mio 0.8.10",
+              "target": "mio"
+            },
+            {
+              "id": "num_cpus 1.16.0",
+              "target": "num_cpus"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            }
+          ],
+          "selects": {
+            "cfg(not(target_family = \"wasm\"))": [
+              {
+                "id": "socket2 0.5.5",
+                "target": "socket2"
+              }
+            ],
+            "cfg(tokio_taskdump)": [
+              {
+                "id": "backtrace 0.3.69",
+                "target": "backtrace"
+              }
+            ],
+            "cfg(unix)": [
+              {
+                "id": "libc 0.2.152",
+                "target": "libc"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "windows-sys 0.48.0",
+                "target": "windows_sys"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "tokio-macros 2.2.0",
+              "target": "tokio_macros"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "1.35.1"
+      },
+      "license": "MIT"
+    },
+    "tokio-macros 2.2.0": {
+      "name": "tokio-macros",
+      "version": "2.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tokio-macros/2.2.0/download",
+          "sha256": "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "tokio_macros",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tokio_macros",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.2.0"
+      },
+      "license": "MIT"
+    },
+    "tokio-stream 0.1.14": {
+      "name": "tokio-stream",
+      "version": "0.1.14",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tokio-stream/0.1.14/download",
+          "sha256": "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tokio_stream",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tokio_stream",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "time"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "futures-core 0.3.30",
+              "target": "futures_core"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.1.14"
+      },
+      "license": "MIT"
+    },
+    "tokio-tungstenite 0.20.1": {
+      "name": "tokio-tungstenite",
+      "version": "0.20.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tokio-tungstenite/0.20.1/download",
+          "sha256": "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tokio_tungstenite",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tokio_tungstenite",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "connect",
+            "default",
+            "handshake",
+            "stream"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "futures-util 0.3.30",
+              "target": "futures_util"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            },
+            {
+              "id": "tungstenite 0.20.1",
+              "target": "tungstenite"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.20.1"
+      },
+      "license": "MIT"
+    },
+    "tokio-util 0.7.10": {
+      "name": "tokio-util",
+      "version": "0.7.10",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tokio-util/0.7.10/download",
+          "sha256": "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tokio_util",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tokio_util",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "codec",
+            "default",
+            "io",
+            "tracing"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "futures-core 0.3.30",
+              "target": "futures_core"
+            },
+            {
+              "id": "futures-sink 0.3.30",
+              "target": "futures_sink"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            },
+            {
+              "id": "tracing 0.1.40",
+              "target": "tracing"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.7.10"
+      },
+      "license": "MIT"
+    },
+    "toml 0.5.11": {
+      "name": "toml",
+      "version": "0.5.11",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/toml/0.5.11/download",
+          "sha256": "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "toml",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "toml",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.5.11"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "topological-sort 0.2.2": {
+      "name": "topological-sort",
+      "version": "0.2.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/topological-sort/0.2.2/download",
+          "sha256": "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "topological_sort",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "topological_sort",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.2.2"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "tower-service 0.3.2": {
+      "name": "tower-service",
+      "version": "0.3.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tower-service/0.3.2/download",
+          "sha256": "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tower_service",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tower_service",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "0.3.2"
+      },
+      "license": "MIT"
+    },
+    "tracing 0.1.40": {
+      "name": "tracing",
+      "version": "0.1.40",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tracing/0.1.40/download",
+          "sha256": "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tracing",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tracing",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "log",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "pin-project-lite 0.2.13",
+              "target": "pin_project_lite"
+            },
+            {
+              "id": "tracing-core 0.1.32",
+              "target": "tracing_core"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.1.40"
+      },
+      "license": "MIT"
+    },
+    "tracing-core 0.1.32": {
+      "name": "tracing-core",
+      "version": "0.1.32",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tracing-core/0.1.32/download",
+          "sha256": "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tracing_core",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tracing_core",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "once_cell",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.1.32"
+      },
+      "license": "MIT"
+    },
+    "try-lock 0.2.5": {
+      "name": "try-lock",
+      "version": "0.2.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/try-lock/0.2.5/download",
+          "sha256": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "try_lock",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "try_lock",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.2.5"
+      },
+      "license": "MIT"
+    },
+    "tungstenite 0.20.1": {
+      "name": "tungstenite",
+      "version": "0.20.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/tungstenite/0.20.1/download",
+          "sha256": "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "tungstenite",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "tungstenite",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "data-encoding",
+            "handshake",
+            "http",
+            "httparse",
+            "sha1",
+            "url"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "byteorder 1.5.0",
+              "target": "byteorder"
+            },
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "data-encoding 2.5.0",
+              "target": "data_encoding"
+            },
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            },
+            {
+              "id": "httparse 1.8.0",
+              "target": "httparse"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "rand 0.8.5",
+              "target": "rand"
+            },
+            {
+              "id": "sha1 0.10.6",
+              "target": "sha1"
+            },
+            {
+              "id": "thiserror 1.0.56",
+              "target": "thiserror"
+            },
+            {
+              "id": "url 2.5.0",
+              "target": "url"
+            },
+            {
+              "id": "utf-8 0.7.6",
+              "target": "utf8"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.20.1"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "typenum 1.17.0": {
+      "name": "typenum",
+      "version": "1.17.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/typenum/1.17.0/download",
+          "sha256": "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "typenum",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_main",
+            "crate_root": "build/main.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "typenum",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "typenum 1.17.0",
+              "target": "build_script_main"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.17.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "ucd-trie 0.1.6": {
+      "name": "ucd-trie",
+      "version": "0.1.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ucd-trie/0.1.6/download",
+          "sha256": "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ucd_trie",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ucd_trie",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.1.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "unicase 2.7.0": {
+      "name": "unicase",
+      "version": "2.7.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/unicase/2.7.0/download",
+          "sha256": "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "unicase",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "unicase",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "unicase 2.7.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "2.7.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "version_check 0.9.4",
+              "target": "version_check"
+            }
+          ],
+          "selects": {}
+        }
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "unicode-bidi 0.3.14": {
+      "name": "unicode-bidi",
+      "version": "0.3.14",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/unicode-bidi/0.3.14/download",
+          "sha256": "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "unicode_bidi",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "unicode_bidi",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "hardcoded-data",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.14"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "unicode-ident 1.0.12": {
+      "name": "unicode-ident",
+      "version": "1.0.12",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/unicode-ident/1.0.12/download",
+          "sha256": "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "unicode_ident",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "unicode_ident",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.12"
+      },
+      "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
+    },
+    "unicode-normalization 0.1.22": {
+      "name": "unicode-normalization",
+      "version": "0.1.22",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download",
+          "sha256": "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "unicode_normalization",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "unicode_normalization",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "tinyvec 1.6.0",
+              "target": "tinyvec"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.1.22"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "url 2.5.0": {
+      "name": "url",
+      "version": "2.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/url/2.5.0/download",
+          "sha256": "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "url",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "url",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "form_urlencoded 1.2.1",
+              "target": "form_urlencoded"
+            },
+            {
+              "id": "idna 0.5.0",
+              "target": "idna"
+            },
+            {
+              "id": "percent-encoding 2.3.1",
+              "target": "percent_encoding"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "2.5.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "utf-8 0.7.6": {
+      "name": "utf-8",
+      "version": "0.7.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/utf-8/0.7.6/download",
+          "sha256": "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "utf8",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "utf8",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.7.6"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "utf8parse 0.2.1": {
+      "name": "utf8parse",
+      "version": "0.2.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/utf8parse/0.2.1/download",
+          "sha256": "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "utf8parse",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "utf8parse",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.1"
+      },
+      "license": "Apache-2.0 OR MIT"
+    },
+    "version_check 0.9.4": {
+      "name": "version_check",
+      "version": "0.9.4",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/version_check/0.9.4/download",
+          "sha256": "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "version_check",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "version_check",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.9.4"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "walkdir 2.4.0": {
+      "name": "walkdir",
+      "version": "2.4.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/walkdir/2.4.0/download",
+          "sha256": "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "walkdir",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "walkdir",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "same-file 1.0.6",
+              "target": "same_file"
+            }
+          ],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "winapi-util 0.1.6",
+                "target": "winapi_util"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "2.4.0"
+      },
+      "license": "Unlicense/MIT"
+    },
+    "want 0.3.1": {
+      "name": "want",
+      "version": "0.3.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/want/0.3.1/download",
+          "sha256": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "want",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "want",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "try-lock 0.2.5",
+              "target": "try_lock"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.1"
+      },
+      "license": "MIT"
+    },
+    "warp 0.3.6": {
+      "name": "warp",
+      "version": "0.3.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/warp/0.3.6/download",
+          "sha256": "c1e92e22e03ff1230c03a1a8ee37d2f89cd489e2e541b7550d6afad96faed169"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "warp",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "warp",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "tokio-tungstenite",
+            "websocket"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            },
+            {
+              "id": "futures-channel 0.3.30",
+              "target": "futures_channel"
+            },
+            {
+              "id": "futures-util 0.3.30",
+              "target": "futures_util"
+            },
+            {
+              "id": "headers 0.3.9",
+              "target": "headers"
+            },
+            {
+              "id": "http 0.2.11",
+              "target": "http"
+            },
+            {
+              "id": "hyper 0.14.28",
+              "target": "hyper"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "mime 0.3.17",
+              "target": "mime"
+            },
+            {
+              "id": "mime_guess 2.0.4",
+              "target": "mime_guess"
+            },
+            {
+              "id": "percent-encoding 2.3.1",
+              "target": "percent_encoding"
+            },
+            {
+              "id": "pin-project 1.1.3",
+              "target": "pin_project"
+            },
+            {
+              "id": "rustls-pemfile 1.0.4",
+              "target": "rustls_pemfile"
+            },
+            {
+              "id": "scoped-tls 1.0.1",
+              "target": "scoped_tls"
+            },
+            {
+              "id": "serde 1.0.195",
+              "target": "serde"
+            },
+            {
+              "id": "serde_json 1.0.111",
+              "target": "serde_json"
+            },
+            {
+              "id": "serde_urlencoded 0.7.1",
+              "target": "serde_urlencoded"
+            },
+            {
+              "id": "tokio 1.35.1",
+              "target": "tokio"
+            },
+            {
+              "id": "tokio-stream 0.1.14",
+              "target": "tokio_stream"
+            },
+            {
+              "id": "tokio-tungstenite 0.20.1",
+              "target": "tokio_tungstenite"
+            },
+            {
+              "id": "tokio-util 0.7.10",
+              "target": "tokio_util"
+            },
+            {
+              "id": "tower-service 0.3.2",
+              "target": "tower_service"
+            },
+            {
+              "id": "tracing 0.1.40",
+              "target": "tracing"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.6"
+      },
+      "license": "MIT"
+    },
+    "wasi 0.11.0+wasi-snapshot-preview1": {
+      "name": "wasi",
+      "version": "0.11.0+wasi-snapshot-preview1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download",
+          "sha256": "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "wasi",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "wasi",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.11.0+wasi-snapshot-preview1"
+      },
+      "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
+    },
+    "wasm-bindgen 0.2.89": {
+      "name": "wasm-bindgen",
+      "version": "0.2.89",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/wasm-bindgen/0.2.89/download",
+          "sha256": "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "wasm_bindgen",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "wasm_bindgen",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "wasm-bindgen 0.2.89",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "wasm-bindgen-macro 0.2.89",
+              "target": "wasm_bindgen_macro"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "0.2.89"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "wasm-bindgen-backend 0.2.89": {
+      "name": "wasm-bindgen-backend",
+      "version": "0.2.89",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.89/download",
+          "sha256": "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "wasm_bindgen_backend",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "wasm_bindgen_backend",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bumpalo 3.14.0",
+              "target": "bumpalo"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "once_cell 1.19.0",
+              "target": "once_cell"
+            },
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            },
+            {
+              "id": "wasm-bindgen-shared 0.2.89",
+              "target": "wasm_bindgen_shared"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.89"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "wasm-bindgen-macro 0.2.89": {
+      "name": "wasm-bindgen-macro",
+      "version": "0.2.89",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.89/download",
+          "sha256": "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "wasm_bindgen_macro",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "wasm_bindgen_macro",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "wasm-bindgen-macro-support 0.2.89",
+              "target": "wasm_bindgen_macro_support"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.89"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "wasm-bindgen-macro-support 0.2.89": {
+      "name": "wasm-bindgen-macro-support",
+      "version": "0.2.89",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.89/download",
+          "sha256": "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "wasm_bindgen_macro_support",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "wasm_bindgen_macro_support",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.76",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.35",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.48",
+              "target": "syn"
+            },
+            {
+              "id": "wasm-bindgen-backend 0.2.89",
+              "target": "wasm_bindgen_backend"
+            },
+            {
+              "id": "wasm-bindgen-shared 0.2.89",
+              "target": "wasm_bindgen_shared"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.89"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "wasm-bindgen-shared 0.2.89": {
+      "name": "wasm-bindgen-shared",
+      "version": "0.2.89",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.89/download",
+          "sha256": "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "wasm_bindgen_shared",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "wasm_bindgen_shared",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "wasm-bindgen-shared 0.2.89",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.2.89"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ],
+        "links": "wasm_bindgen"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "which 4.4.2": {
+      "name": "which",
+      "version": "4.4.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/which/4.4.2/download",
+          "sha256": "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "which",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "which",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "either 1.9.0",
+              "target": "either"
+            },
+            {
+              "id": "rustix 0.38.28",
+              "target": "rustix"
+            }
+          ],
+          "selects": {
+            "cfg(any(windows, unix, target_os = \"redox\"))": [
+              {
+                "id": "home 0.5.9",
+                "target": "home"
+              }
+            ],
+            "cfg(windows)": [
+              {
+                "id": "once_cell 1.19.0",
+                "target": "once_cell"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "4.4.2"
+      },
+      "license": "MIT"
+    },
+    "winapi 0.3.9": {
+      "name": "winapi",
+      "version": "0.3.9",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/winapi/0.3.9/download",
+          "sha256": "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "winapi",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "winapi",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "consoleapi",
+            "errhandlingapi",
+            "fileapi",
+            "minwindef",
+            "processenv",
+            "shellapi",
+            "std",
+            "sysinfoapi",
+            "winbase",
+            "wincon",
+            "winerror",
+            "winnt"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "winapi 0.3.9",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {
+            "i686-pc-windows-gnu": [
+              {
+                "id": "winapi-i686-pc-windows-gnu 0.4.0",
+                "target": "winapi_i686_pc_windows_gnu"
+              }
+            ],
+            "x86_64-pc-windows-gnu": [
+              {
+                "id": "winapi-x86_64-pc-windows-gnu 0.4.0",
+                "target": "winapi_x86_64_pc_windows_gnu"
+              }
+            ]
+          }
+        },
+        "edition": "2015",
+        "version": "0.3.9"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "winapi-i686-pc-windows-gnu 0.4.0": {
+      "name": "winapi-i686-pc-windows-gnu",
+      "version": "0.4.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download",
+          "sha256": "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "winapi_i686_pc_windows_gnu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "winapi_i686_pc_windows_gnu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "winapi-i686-pc-windows-gnu 0.4.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.4.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "winapi-util 0.1.6": {
+      "name": "winapi-util",
+      "version": "0.1.6",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/winapi-util/0.1.6/download",
+          "sha256": "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "winapi_util",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "winapi_util",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "cfg(windows)": [
+              {
+                "id": "winapi 0.3.9",
+                "target": "winapi"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.1.6"
+      },
+      "license": "Unlicense/MIT"
+    },
+    "winapi-x86_64-pc-windows-gnu 0.4.0": {
+      "name": "winapi-x86_64-pc-windows-gnu",
+      "version": "0.4.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download",
+          "sha256": "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "winapi_x86_64_pc_windows_gnu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "winapi_x86_64_pc_windows_gnu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "winapi-x86_64-pc-windows-gnu 0.4.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.4.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "windows-core 0.52.0": {
+      "name": "windows-core",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows-core/0.52.0/download",
+          "sha256": "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_core",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_core",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows-targets 0.52.0",
+              "target": "windows_targets"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows-sys 0.48.0": {
+      "name": "windows-sys",
+      "version": "0.48.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows-sys/0.48.0/download",
+          "sha256": "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "Win32",
+            "Win32_Foundation",
+            "Win32_Networking",
+            "Win32_Networking_WinSock",
+            "Win32_Security",
+            "Win32_Storage",
+            "Win32_Storage_FileSystem",
+            "Win32_System",
+            "Win32_System_Console",
+            "Win32_System_IO",
+            "Win32_System_Pipes",
+            "Win32_System_SystemServices",
+            "Win32_System_Threading",
+            "Win32_System_WindowsProgramming",
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "windows-targets 0.48.5",
+              "target": "windows_targets"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows-sys 0.52.0": {
+      "name": "windows-sys",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows-sys/0.52.0/download",
+          "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_sys",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_sys",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "Win32",
+            "Win32_Foundation",
+            "Win32_NetworkManagement",
+            "Win32_NetworkManagement_IpHelper",
+            "Win32_Networking",
+            "Win32_Networking_WinSock",
+            "Win32_Storage",
+            "Win32_Storage_FileSystem",
+            "Win32_System",
+            "Win32_System_Com",
+            "Win32_System_Console",
+            "Win32_System_Diagnostics",
+            "Win32_System_Diagnostics_Debug",
+            "Win32_System_Threading",
+            "Win32_UI",
+            "Win32_UI_Shell",
+            "default"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "windows-targets 0.52.0",
+              "target": "windows_targets"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows-targets 0.48.5": {
+      "name": "windows-targets",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows-targets/0.48.5/download",
+          "sha256": "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_targets",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_targets",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "aarch64-pc-windows-gnullvm": [
+              {
+                "id": "windows_aarch64_gnullvm 0.48.5",
+                "target": "windows_aarch64_gnullvm"
+              }
+            ],
+            "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_aarch64_msvc 0.48.5",
+                "target": "windows_aarch64_msvc"
+              }
+            ],
+            "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_i686_gnu 0.48.5",
+                "target": "windows_i686_gnu"
+              }
+            ],
+            "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_i686_msvc 0.48.5",
+                "target": "windows_i686_msvc"
+              }
+            ],
+            "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [
+              {
+                "id": "windows_x86_64_gnu 0.48.5",
+                "target": "windows_x86_64_gnu"
+              }
+            ],
+            "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_x86_64_msvc 0.48.5",
+                "target": "windows_x86_64_msvc"
+              }
+            ],
+            "x86_64-pc-windows-gnullvm": [
+              {
+                "id": "windows_x86_64_gnullvm 0.48.5",
+                "target": "windows_x86_64_gnullvm"
+              }
+            ]
+          }
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows-targets 0.52.0": {
+      "name": "windows-targets",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows-targets/0.52.0/download",
+          "sha256": "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_targets",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_targets",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [],
+          "selects": {
+            "aarch64-pc-windows-gnullvm": [
+              {
+                "id": "windows_aarch64_gnullvm 0.52.0",
+                "target": "windows_aarch64_gnullvm"
+              }
+            ],
+            "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_aarch64_msvc 0.52.0",
+                "target": "windows_aarch64_msvc"
+              }
+            ],
+            "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_i686_gnu 0.52.0",
+                "target": "windows_i686_gnu"
+              }
+            ],
+            "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_i686_msvc 0.52.0",
+                "target": "windows_i686_msvc"
+              }
+            ],
+            "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [
+              {
+                "id": "windows_x86_64_gnu 0.52.0",
+                "target": "windows_x86_64_gnu"
+              }
+            ],
+            "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+              {
+                "id": "windows_x86_64_msvc 0.52.0",
+                "target": "windows_x86_64_msvc"
+              }
+            ],
+            "x86_64-pc-windows-gnullvm": [
+              {
+                "id": "windows_x86_64_gnullvm 0.52.0",
+                "target": "windows_x86_64_gnullvm"
+              }
+            ]
+          }
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_aarch64_gnullvm 0.48.5": {
+      "name": "windows_aarch64_gnullvm",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download",
+          "sha256": "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_aarch64_gnullvm",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_aarch64_gnullvm",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_aarch64_gnullvm 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_aarch64_gnullvm 0.52.0": {
+      "name": "windows_aarch64_gnullvm",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.52.0/download",
+          "sha256": "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_aarch64_gnullvm",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_aarch64_gnullvm",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_aarch64_gnullvm 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_aarch64_msvc 0.48.5": {
+      "name": "windows_aarch64_msvc",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download",
+          "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_aarch64_msvc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_aarch64_msvc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_aarch64_msvc 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_aarch64_msvc 0.52.0": {
+      "name": "windows_aarch64_msvc",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_aarch64_msvc/0.52.0/download",
+          "sha256": "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_aarch64_msvc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_aarch64_msvc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_aarch64_msvc 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_i686_gnu 0.48.5": {
+      "name": "windows_i686_gnu",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download",
+          "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_i686_gnu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_i686_gnu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_i686_gnu 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_i686_gnu 0.52.0": {
+      "name": "windows_i686_gnu",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_i686_gnu/0.52.0/download",
+          "sha256": "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_i686_gnu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_i686_gnu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_i686_gnu 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_i686_msvc 0.48.5": {
+      "name": "windows_i686_msvc",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download",
+          "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_i686_msvc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_i686_msvc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_i686_msvc 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_i686_msvc 0.52.0": {
+      "name": "windows_i686_msvc",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_i686_msvc/0.52.0/download",
+          "sha256": "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_i686_msvc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_i686_msvc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_i686_msvc 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_x86_64_gnu 0.48.5": {
+      "name": "windows_x86_64_gnu",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download",
+          "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_x86_64_gnu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_x86_64_gnu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_x86_64_gnu 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_x86_64_gnu 0.52.0": {
+      "name": "windows_x86_64_gnu",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_x86_64_gnu/0.52.0/download",
+          "sha256": "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_x86_64_gnu",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_x86_64_gnu",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_x86_64_gnu 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_x86_64_gnullvm 0.48.5": {
+      "name": "windows_x86_64_gnullvm",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download",
+          "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_x86_64_gnullvm",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_x86_64_gnullvm",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_x86_64_gnullvm 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_x86_64_gnullvm 0.52.0": {
+      "name": "windows_x86_64_gnullvm",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.52.0/download",
+          "sha256": "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_x86_64_gnullvm",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_x86_64_gnullvm",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_x86_64_gnullvm 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_x86_64_msvc 0.48.5": {
+      "name": "windows_x86_64_msvc",
+      "version": "0.48.5",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download",
+          "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_x86_64_msvc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_x86_64_msvc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_x86_64_msvc 0.48.5",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.48.5"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "windows_x86_64_msvc 0.52.0": {
+      "name": "windows_x86_64_msvc",
+      "version": "0.52.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/windows_x86_64_msvc/0.52.0/download",
+          "sha256": "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "windows_x86_64_msvc",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "windows_x86_64_msvc",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "windows_x86_64_msvc 0.52.0",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.52.0"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    }
+  },
+  "binary_crates": [
+    "cc 1.0.83",
+    "clap 4.4.16",
+    "handlebars 4.5.0",
+    "mdbook 0.4.36",
+    "phf_generator 0.10.0",
+    "protoc-gen-prost 0.2.3",
+    "pulldown-cmark 0.9.3"
+  ],
+  "workspace_members": {
+    "compile_with_bazel 0.0.0": "third_party/rust"
+  },
+  "conditions": {
+    "aarch64-apple-darwin": [
+      "aarch64-apple-darwin"
+    ],
+    "aarch64-apple-ios": [
+      "aarch64-apple-ios"
+    ],
+    "aarch64-apple-ios-sim": [
+      "aarch64-apple-ios-sim"
+    ],
+    "aarch64-fuchsia": [
+      "aarch64-fuchsia"
+    ],
+    "aarch64-linux-android": [
+      "aarch64-linux-android"
+    ],
+    "aarch64-pc-windows-gnullvm": [],
+    "aarch64-pc-windows-msvc": [
+      "aarch64-pc-windows-msvc"
+    ],
+    "aarch64-unknown-linux-gnu": [
+      "aarch64-unknown-linux-gnu"
+    ],
+    "aarch64-unknown-nixos-gnu": [
+      "aarch64-unknown-nixos-gnu"
+    ],
+    "aarch64-unknown-nto-qnx710": [
+      "aarch64-unknown-nto-qnx710"
+    ],
+    "aarch64-unknown-uefi": [
+      "aarch64-unknown-uefi"
+    ],
+    "arm-unknown-linux-gnueabi": [
+      "arm-unknown-linux-gnueabi"
+    ],
+    "armv7-linux-androideabi": [
+      "armv7-linux-androideabi"
+    ],
+    "armv7-unknown-linux-gnueabi": [
+      "armv7-unknown-linux-gnueabi"
+    ],
+    "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", 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 = \"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\")))))))": [
+      "aarch64-linux-android",
+      "armv7-linux-androideabi",
+      "i686-linux-android",
+      "powerpc-unknown-linux-gnu",
+      "s390x-unknown-linux-gnu",
+      "x86_64-linux-android"
+    ],
+    "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", 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 = \"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\"))))": [
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "arm-unknown-linux-gnueabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-unknown-linux-gnu",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", 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 = \"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\")))))))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "armv7-linux-androideabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-unknown-freebsd",
+      "powerpc-unknown-linux-gnu",
+      "riscv32imc-unknown-none-elf",
+      "riscv64gc-unknown-none-elf",
+      "s390x-unknown-linux-gnu",
+      "thumbv7em-none-eabi",
+      "thumbv8m.main-none-eabi",
+      "wasm32-unknown-unknown",
+      "wasm32-wasi",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+      "aarch64-pc-windows-msvc"
+    ],
+    "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu"
+    ],
+    "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim"
+    ],
+    "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [],
+    "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(windows_raw_dylib)))": [
+      "i686-unknown-linux-gnu"
+    ],
+    "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+      "i686-pc-windows-msvc"
+    ],
+    "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(all(target_arch = \"x86_64\", target_env = \"msvc\", not(windows_raw_dylib)))": [
+      "x86_64-pc-windows-msvc"
+    ],
+    "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-pc-windows-msvc",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-pc-windows-msvc",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-pc-windows-msvc",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-pc-windows-msvc",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-pc-windows-msvc",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-pc-windows-msvc",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(any(target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonflybsd\"))": [
+      "i686-unknown-freebsd",
+      "x86_64-unknown-freebsd"
+    ],
+    "cfg(any(target_os = \"linux\", target_os = \"android\"))": [
+      "aarch64-linux-android",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-linux-android",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "s390x-unknown-linux-gnu",
+      "x86_64-linux-android",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(any(target_os = \"macos\", target_os = \"ios\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "i686-apple-darwin",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios"
+    ],
+    "cfg(any(unix, target_os = \"wasi\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "s390x-unknown-linux-gnu",
+      "wasm32-wasi",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(any(windows, unix, target_os = \"redox\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-pc-windows-msvc",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-pc-windows-msvc",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "s390x-unknown-linux-gnu",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-pc-windows-msvc",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "riscv32imc-unknown-none-elf",
+      "riscv64gc-unknown-none-elf",
+      "s390x-unknown-linux-gnu",
+      "thumbv7em-none-eabi",
+      "thumbv8m.main-none-eabi",
+      "wasm32-unknown-unknown",
+      "wasm32-wasi",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(not(any(windows, target_os = \"hermit\", target_os = \"unknown\")))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "riscv32imc-unknown-none-elf",
+      "riscv64gc-unknown-none-elf",
+      "s390x-unknown-linux-gnu",
+      "thumbv7em-none-eabi",
+      "thumbv8m.main-none-eabi",
+      "wasm32-wasi",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(not(target_family = \"wasm\"))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-pc-windows-msvc",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-pc-windows-msvc",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "riscv32imc-unknown-none-elf",
+      "riscv64gc-unknown-none-elf",
+      "s390x-unknown-linux-gnu",
+      "thumbv7em-none-eabi",
+      "thumbv8m.main-none-eabi",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-pc-windows-msvc",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(not(windows))": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "aarch64-unknown-uefi",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "riscv32imc-unknown-none-elf",
+      "riscv64gc-unknown-none-elf",
+      "s390x-unknown-linux-gnu",
+      "thumbv7em-none-eabi",
+      "thumbv8m.main-none-eabi",
+      "wasm32-unknown-unknown",
+      "wasm32-wasi",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu",
+      "x86_64-unknown-none",
+      "x86_64-unknown-uefi"
+    ],
+    "cfg(target_arch = \"wasm32\")": [
+      "wasm32-unknown-unknown",
+      "wasm32-wasi"
+    ],
+    "cfg(target_os = \"android\")": [
+      "aarch64-linux-android",
+      "armv7-linux-androideabi",
+      "i686-linux-android",
+      "x86_64-linux-android"
+    ],
+    "cfg(target_os = \"haiku\")": [],
+    "cfg(target_os = \"hermit\")": [],
+    "cfg(target_os = \"linux\")": [
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "arm-unknown-linux-gnueabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "s390x-unknown-linux-gnu",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(target_os = \"macos\")": [
+      "aarch64-apple-darwin",
+      "i686-apple-darwin",
+      "x86_64-apple-darwin"
+    ],
+    "cfg(target_os = \"redox\")": [],
+    "cfg(target_os = \"wasi\")": [
+      "wasm32-wasi"
+    ],
+    "cfg(target_os = \"windows\")": [
+      "aarch64-pc-windows-msvc",
+      "i686-pc-windows-msvc",
+      "x86_64-pc-windows-msvc"
+    ],
+    "cfg(tokio_taskdump)": [],
+    "cfg(unix)": [
+      "aarch64-apple-darwin",
+      "aarch64-apple-ios",
+      "aarch64-apple-ios-sim",
+      "aarch64-fuchsia",
+      "aarch64-linux-android",
+      "aarch64-unknown-linux-gnu",
+      "aarch64-unknown-nixos-gnu",
+      "aarch64-unknown-nto-qnx710",
+      "arm-unknown-linux-gnueabi",
+      "armv7-linux-androideabi",
+      "armv7-unknown-linux-gnueabi",
+      "i686-apple-darwin",
+      "i686-linux-android",
+      "i686-unknown-freebsd",
+      "i686-unknown-linux-gnu",
+      "powerpc-unknown-linux-gnu",
+      "s390x-unknown-linux-gnu",
+      "x86_64-apple-darwin",
+      "x86_64-apple-ios",
+      "x86_64-fuchsia",
+      "x86_64-linux-android",
+      "x86_64-unknown-freebsd",
+      "x86_64-unknown-linux-gnu",
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "cfg(windows)": [
+      "aarch64-pc-windows-msvc",
+      "i686-pc-windows-msvc",
+      "x86_64-pc-windows-msvc"
+    ],
+    "i686-apple-darwin": [
+      "i686-apple-darwin"
+    ],
+    "i686-linux-android": [
+      "i686-linux-android"
+    ],
+    "i686-pc-windows-gnu": [],
+    "i686-pc-windows-msvc": [
+      "i686-pc-windows-msvc"
+    ],
+    "i686-unknown-freebsd": [
+      "i686-unknown-freebsd"
+    ],
+    "i686-unknown-linux-gnu": [
+      "i686-unknown-linux-gnu"
+    ],
+    "powerpc-unknown-linux-gnu": [
+      "powerpc-unknown-linux-gnu"
+    ],
+    "riscv32imc-unknown-none-elf": [
+      "riscv32imc-unknown-none-elf"
+    ],
+    "riscv64gc-unknown-none-elf": [
+      "riscv64gc-unknown-none-elf"
+    ],
+    "s390x-unknown-linux-gnu": [
+      "s390x-unknown-linux-gnu"
+    ],
+    "thumbv7em-none-eabi": [
+      "thumbv7em-none-eabi"
+    ],
+    "thumbv8m.main-none-eabi": [
+      "thumbv8m.main-none-eabi"
+    ],
+    "wasm32-unknown-unknown": [
+      "wasm32-unknown-unknown"
+    ],
+    "wasm32-wasi": [
+      "wasm32-wasi"
+    ],
+    "x86_64-apple-darwin": [
+      "x86_64-apple-darwin"
+    ],
+    "x86_64-apple-ios": [
+      "x86_64-apple-ios"
+    ],
+    "x86_64-fuchsia": [
+      "x86_64-fuchsia"
+    ],
+    "x86_64-linux-android": [
+      "x86_64-linux-android"
+    ],
+    "x86_64-pc-windows-gnu": [],
+    "x86_64-pc-windows-gnullvm": [],
+    "x86_64-pc-windows-msvc": [
+      "x86_64-pc-windows-msvc"
+    ],
+    "x86_64-unknown-freebsd": [
+      "x86_64-unknown-freebsd"
+    ],
+    "x86_64-unknown-linux-gnu": [
+      "x86_64-unknown-linux-gnu"
+    ],
+    "x86_64-unknown-nixos-gnu": [
+      "x86_64-unknown-nixos-gnu"
+    ],
+    "x86_64-unknown-none": [
+      "x86_64-unknown-none"
+    ],
+    "x86_64-unknown-uefi": [
+      "x86_64-unknown-uefi"
+    ]
+  },
+  "direct_deps": [
+    "mdbook 0.4.36",
+    "protoc-gen-prost 0.2.3"
+  ],
+  "direct_dev_deps": []
+}
diff --git a/third_party/rust/cargo/Cargo.raze.lock b/third_party/rust/Cargo.lock
similarity index 77%
rename from third_party/rust/cargo/Cargo.raze.lock
rename to third_party/rust/Cargo.lock
index fc9fc81..6e73fdf 100644
--- a/third_party/rust/cargo/Cargo.raze.lock
+++ b/third_party/rust/Cargo.lock
@@ -1,5 +1,7 @@
 # This file is automatically @generated by Cargo.
 # It is not intended for manual editing.
+version = 3
+
 [[package]]
 name = "addr2line"
 version = "0.21.0"
@@ -17,9 +19,9 @@
 
 [[package]]
 name = "aho-corasick"
-version = "1.1.1"
+version = "1.1.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab"
+checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
 dependencies = [
  "memchr",
 ]
@@ -54,9 +56,9 @@
 
 [[package]]
 name = "anstream"
-version = "0.6.4"
+version = "0.6.7"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44"
+checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba"
 dependencies = [
  "anstyle",
  "anstyle-parse",
@@ -74,37 +76,37 @@
 
 [[package]]
 name = "anstyle-parse"
-version = "0.2.2"
+version = "0.2.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140"
+checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
 dependencies = [
  "utf8parse",
 ]
 
 [[package]]
 name = "anstyle-query"
-version = "1.0.0"
+version = "1.0.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
+checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
 dependencies = [
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
 name = "anstyle-wincon"
-version = "3.0.1"
+version = "3.0.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628"
+checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
 dependencies = [
  "anstyle",
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
 name = "anyhow"
-version = "1.0.75"
+version = "1.0.79"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
+checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
 
 [[package]]
 name = "autocfg"
@@ -129,9 +131,9 @@
 
 [[package]]
 name = "base64"
-version = "0.21.4"
+version = "0.21.7"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
+checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
 
 [[package]]
 name = "bitflags"
@@ -141,9 +143,9 @@
 
 [[package]]
 name = "bitflags"
-version = "2.4.0"
+version = "2.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
+checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
 
 [[package]]
 name = "block-buffer"
@@ -156,9 +158,9 @@
 
 [[package]]
 name = "bstr"
-version = "1.6.2"
+version = "1.9.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a"
+checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
 dependencies = [
  "memchr",
  "regex-automata",
@@ -173,9 +175,9 @@
 
 [[package]]
 name = "byteorder"
-version = "1.4.3"
+version = "1.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
 
 [[package]]
 name = "bytes"
@@ -207,23 +209,23 @@
  "android-tzdata",
  "iana-time-zone",
  "num-traits",
- "windows-targets",
+ "windows-targets 0.48.5",
 ]
 
 [[package]]
 name = "clap"
-version = "4.4.6"
+version = "4.4.16"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956"
+checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445"
 dependencies = [
  "clap_builder",
 ]
 
 [[package]]
 name = "clap_builder"
-version = "4.4.6"
+version = "4.4.16"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45"
+checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb"
 dependencies = [
  "anstream",
  "anstyle",
@@ -234,18 +236,18 @@
 
 [[package]]
 name = "clap_complete"
-version = "4.4.3"
+version = "4.4.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3ae8ba90b9d8b007efe66e55e48fb936272f5ca00349b5b0e89877520d35ea7"
+checksum = "97aeaa95557bd02f23fbb662f981670c3d20c5a26e69f7354b28f57092437fcd"
 dependencies = [
  "clap",
 ]
 
 [[package]]
 name = "clap_lex"
-version = "0.5.1"
+version = "0.6.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
+checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
 
 [[package]]
 name = "colorchoice"
@@ -263,37 +265,52 @@
 
 [[package]]
 name = "core-foundation-sys"
-version = "0.8.4"
+version = "0.8.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
+checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
 
 [[package]]
 name = "cpufeatures"
-version = "0.2.9"
+version = "0.2.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
+checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
 dependencies = [
  "libc",
 ]
 
 [[package]]
 name = "crossbeam-channel"
-version = "0.5.8"
+version = "0.5.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
+checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
 dependencies = [
- "cfg-if",
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "crossbeam-deque"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
+dependencies = [
+ "crossbeam-epoch",
+ "crossbeam-utils",
+]
+
+[[package]]
+name = "crossbeam-epoch"
+version = "0.9.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
+dependencies = [
  "crossbeam-utils",
 ]
 
 [[package]]
 name = "crossbeam-utils"
-version = "0.8.16"
+version = "0.8.19"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
-dependencies = [
- "cfg-if",
-]
+checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
 
 [[package]]
 name = "crypto-common"
@@ -307,9 +324,9 @@
 
 [[package]]
 name = "data-encoding"
-version = "2.4.0"
+version = "2.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
+checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
 
 [[package]]
 name = "digest"
@@ -341,9 +358,9 @@
 
 [[package]]
 name = "env_logger"
-version = "0.10.0"
+version = "0.10.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
+checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
 dependencies = [
  "humantime",
  "is-terminal",
@@ -360,23 +377,12 @@
 
 [[package]]
 name = "errno"
-version = "0.3.4"
+version = "0.3.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480"
+checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
 dependencies = [
- "errno-dragonfly",
  "libc",
- "windows-sys",
-]
-
-[[package]]
-name = "errno-dragonfly"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
-dependencies = [
- "cc",
- "libc",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
@@ -387,14 +393,14 @@
 
 [[package]]
 name = "filetime"
-version = "0.2.22"
+version = "0.2.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
+checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
 dependencies = [
  "cfg-if",
  "libc",
  "redox_syscall",
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
@@ -411,9 +417,9 @@
 
 [[package]]
 name = "form_urlencoded"
-version = "1.2.0"
+version = "1.2.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
+checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
 dependencies = [
  "percent-encoding",
 ]
@@ -439,9 +445,9 @@
 
 [[package]]
 name = "futures-channel"
-version = "0.3.28"
+version = "0.3.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
+checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
 dependencies = [
  "futures-core",
  "futures-sink",
@@ -449,38 +455,38 @@
 
 [[package]]
 name = "futures-core"
-version = "0.3.28"
+version = "0.3.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
+checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
 
 [[package]]
 name = "futures-macro"
-version = "0.3.28"
+version = "0.3.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
+checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
 dependencies = [
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
 ]
 
 [[package]]
 name = "futures-sink"
-version = "0.3.28"
+version = "0.3.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
+checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
 
 [[package]]
 name = "futures-task"
-version = "0.3.28"
+version = "0.3.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
+checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
 
 [[package]]
 name = "futures-util"
-version = "0.3.28"
+version = "0.3.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
+checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
 dependencies = [
  "futures-core",
  "futures-macro",
@@ -503,9 +509,9 @@
 
 [[package]]
 name = "getrandom"
-version = "0.2.10"
+version = "0.2.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
+checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
 dependencies = [
  "cfg-if",
  "libc",
@@ -514,28 +520,28 @@
 
 [[package]]
 name = "gimli"
-version = "0.28.0"
+version = "0.28.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
+checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
 
 [[package]]
 name = "globset"
-version = "0.4.13"
+version = "0.4.14"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
+checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
 dependencies = [
  "aho-corasick",
  "bstr",
- "fnv",
  "log",
- "regex",
+ "regex-automata",
+ "regex-syntax",
 ]
 
 [[package]]
 name = "h2"
-version = "0.3.21"
+version = "0.3.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
+checksum = "b553656127a00601c8ae5590fcfdc118e4083a7924b6cf4ffc1ea4b99dc429d7"
 dependencies = [
  "bytes",
  "fnv",
@@ -543,7 +549,7 @@
  "futures-sink",
  "futures-util",
  "http",
- "indexmap 1.9.3",
+ "indexmap",
  "slab",
  "tokio",
  "tokio-util",
@@ -552,9 +558,9 @@
 
 [[package]]
 name = "handlebars"
-version = "4.4.0"
+version = "4.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683"
+checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225"
 dependencies = [
  "log",
  "pest",
@@ -566,15 +572,9 @@
 
 [[package]]
 name = "hashbrown"
-version = "0.12.3"
+version = "0.14.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-
-[[package]]
-name = "hashbrown"
-version = "0.14.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12"
+checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
 
 [[package]]
 name = "headers"
@@ -614,11 +614,11 @@
 
 [[package]]
 name = "home"
-version = "0.5.5"
+version = "0.5.9"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
+checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
 dependencies = [
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
@@ -637,9 +637,9 @@
 
 [[package]]
 name = "http"
-version = "0.2.9"
+version = "0.2.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
+checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
 dependencies = [
  "bytes",
  "fnv",
@@ -648,9 +648,9 @@
 
 [[package]]
 name = "http-body"
-version = "0.4.5"
+version = "0.4.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
+checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
 dependencies = [
  "bytes",
  "http",
@@ -677,9 +677,9 @@
 
 [[package]]
 name = "hyper"
-version = "0.14.27"
+version = "0.14.28"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
+checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
 dependencies = [
  "bytes",
  "futures-channel",
@@ -692,7 +692,7 @@
  "httpdate",
  "itoa",
  "pin-project-lite",
- "socket2 0.4.9",
+ "socket2",
  "tokio",
  "tower-service",
  "tracing",
@@ -701,16 +701,16 @@
 
 [[package]]
 name = "iana-time-zone"
-version = "0.1.57"
+version = "0.1.59"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
+checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
 dependencies = [
  "android_system_properties",
  "core-foundation-sys",
  "iana-time-zone-haiku",
  "js-sys",
  "wasm-bindgen",
- "windows",
+ "windows-core",
 ]
 
 [[package]]
@@ -724,9 +724,9 @@
 
 [[package]]
 name = "idna"
-version = "0.4.0"
+version = "0.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
+checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
 dependencies = [
  "unicode-bidi",
  "unicode-normalization",
@@ -734,39 +734,28 @@
 
 [[package]]
 name = "ignore"
-version = "0.4.20"
+version = "0.4.22"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
+checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
 dependencies = [
+ "crossbeam-deque",
  "globset",
- "lazy_static",
  "log",
  "memchr",
- "regex",
+ "regex-automata",
  "same-file",
- "thread_local",
  "walkdir",
  "winapi-util",
 ]
 
 [[package]]
 name = "indexmap"
-version = "1.9.3"
+version = "2.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
-dependencies = [
- "autocfg",
- "hashbrown 0.12.3",
-]
-
-[[package]]
-name = "indexmap"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897"
+checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
 dependencies = [
  "equivalent",
- "hashbrown 0.14.1",
+ "hashbrown",
 ]
 
 [[package]]
@@ -791,13 +780,13 @@
 
 [[package]]
 name = "is-terminal"
-version = "0.4.9"
+version = "0.4.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
+checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
 dependencies = [
  "hermit-abi",
  "rustix",
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
@@ -811,15 +800,15 @@
 
 [[package]]
 name = "itoa"
-version = "1.0.9"
+version = "1.0.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
+checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
 
 [[package]]
 name = "js-sys"
-version = "0.3.64"
+version = "0.3.66"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
+checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
 dependencies = [
  "wasm-bindgen",
 ]
@@ -852,21 +841,21 @@
 
 [[package]]
 name = "libc"
-version = "0.2.148"
+version = "0.2.152"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
+checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
 
 [[package]]
 name = "linux-raw-sys"
-version = "0.4.8"
+version = "0.4.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db"
+checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
 
 [[package]]
 name = "lock_api"
-version = "0.4.10"
+version = "0.4.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
+checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
 dependencies = [
  "autocfg",
  "scopeguard",
@@ -906,9 +895,9 @@
 
 [[package]]
 name = "mdbook"
-version = "0.4.35"
+version = "0.4.36"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c3f88addd34930bc5f01b9dc19f780447e51c92bf2536e3ded058018271775d"
+checksum = "80992cb0e05f22cc052c99f8e883f1593b891014b96a8b4637fd274d7030c85e"
 dependencies = [
  "ammonia",
  "anyhow",
@@ -926,6 +915,7 @@
  "notify-debouncer-mini",
  "once_cell",
  "opener",
+ "pathdiff",
  "pulldown-cmark",
  "regex",
  "serde",
@@ -940,9 +930,9 @@
 
 [[package]]
 name = "memchr"
-version = "2.6.4"
+version = "2.7.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
+checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
 
 [[package]]
 name = "mime"
@@ -971,14 +961,14 @@
 
 [[package]]
 name = "mio"
-version = "0.8.8"
+version = "0.8.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
+checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
 dependencies = [
  "libc",
  "log",
  "wasi",
- "windows-sys",
+ "windows-sys 0.48.0",
 ]
 
 [[package]]
@@ -999,7 +989,7 @@
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5"
 dependencies = [
- "windows-sys",
+ "windows-sys 0.48.0",
 ]
 
 [[package]]
@@ -1008,7 +998,7 @@
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
 dependencies = [
- "bitflags 2.4.0",
+ "bitflags 2.4.1",
  "crossbeam-channel",
  "filetime",
  "fsevent-sys",
@@ -1018,24 +1008,25 @@
  "log",
  "mio",
  "walkdir",
- "windows-sys",
+ "windows-sys 0.48.0",
 ]
 
 [[package]]
 name = "notify-debouncer-mini"
-version = "0.3.0"
+version = "0.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e55ee272914f4563a2f8b8553eb6811f3c0caea81c756346bad15b7e3ef969f0"
+checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43"
 dependencies = [
  "crossbeam-channel",
+ "log",
  "notify",
 ]
 
 [[package]]
 name = "num-traits"
-version = "0.2.16"
+version = "0.2.17"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
+checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
 dependencies = [
  "autocfg",
 ]
@@ -1052,18 +1043,18 @@
 
 [[package]]
 name = "object"
-version = "0.32.1"
+version = "0.32.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
+checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
 dependencies = [
  "memchr",
 ]
 
 [[package]]
 name = "once_cell"
-version = "1.18.0"
+version = "1.19.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
+checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
 
 [[package]]
 name = "opener"
@@ -1088,28 +1079,34 @@
 
 [[package]]
 name = "parking_lot_core"
-version = "0.9.8"
+version = "0.9.9"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
+checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
 dependencies = [
  "cfg-if",
  "libc",
  "redox_syscall",
  "smallvec",
- "windows-targets",
+ "windows-targets 0.48.5",
 ]
 
 [[package]]
-name = "percent-encoding"
-version = "2.3.0"
+name = "pathdiff"
+version = "0.2.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
+checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
+
+[[package]]
+name = "percent-encoding"
+version = "2.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
 
 [[package]]
 name = "pest"
-version = "2.7.4"
+version = "2.7.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4"
+checksum = "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06"
 dependencies = [
  "memchr",
  "thiserror",
@@ -1118,9 +1115,9 @@
 
 [[package]]
 name = "pest_derive"
-version = "2.7.4"
+version = "2.7.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8"
+checksum = "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde"
 dependencies = [
  "pest",
  "pest_generator",
@@ -1128,22 +1125,22 @@
 
 [[package]]
 name = "pest_generator"
-version = "2.7.4"
+version = "2.7.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a"
+checksum = "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275"
 dependencies = [
  "pest",
  "pest_meta",
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
 ]
 
 [[package]]
 name = "pest_meta"
-version = "2.7.4"
+version = "2.7.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d"
+checksum = "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d"
 dependencies = [
  "once_cell",
  "pest",
@@ -1157,7 +1154,7 @@
 checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
 dependencies = [
  "fixedbitset",
- "indexmap 2.0.2",
+ "indexmap",
 ]
 
 [[package]]
@@ -1215,7 +1212,7 @@
 dependencies = [
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
 ]
 
 [[package]]
@@ -1244,9 +1241,9 @@
 
 [[package]]
 name = "proc-macro2"
-version = "1.0.67"
+version = "1.0.76"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
+checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
 dependencies = [
  "unicode-ident",
 ]
@@ -1329,9 +1326,9 @@
 
 [[package]]
 name = "quote"
-version = "1.0.33"
+version = "1.0.35"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
+checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
 dependencies = [
  "proc-macro2",
 ]
@@ -1368,18 +1365,18 @@
 
 [[package]]
 name = "redox_syscall"
-version = "0.3.5"
+version = "0.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
+checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
 dependencies = [
  "bitflags 1.3.2",
 ]
 
 [[package]]
 name = "regex"
-version = "1.9.6"
+version = "1.10.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff"
+checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
 dependencies = [
  "aho-corasick",
  "memchr",
@@ -1389,9 +1386,9 @@
 
 [[package]]
 name = "regex-automata"
-version = "0.3.9"
+version = "0.4.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
+checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
 dependencies = [
  "aho-corasick",
  "memchr",
@@ -1400,9 +1397,9 @@
 
 [[package]]
 name = "regex-syntax"
-version = "0.7.5"
+version = "0.8.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
+checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
 
 [[package]]
 name = "rustc-demangle"
@@ -1412,31 +1409,31 @@
 
 [[package]]
 name = "rustix"
-version = "0.38.15"
+version = "0.38.28"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531"
+checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
 dependencies = [
- "bitflags 2.4.0",
+ "bitflags 2.4.1",
  "errno",
  "libc",
  "linux-raw-sys",
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
 name = "rustls-pemfile"
-version = "1.0.3"
+version = "1.0.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
+checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
 dependencies = [
  "base64",
 ]
 
 [[package]]
 name = "ryu"
-version = "1.0.15"
+version = "1.0.16"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
+checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
 
 [[package]]
 name = "same-file"
@@ -1461,29 +1458,29 @@
 
 [[package]]
 name = "serde"
-version = "1.0.188"
+version = "1.0.195"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
+checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
 dependencies = [
  "serde_derive",
 ]
 
 [[package]]
 name = "serde_derive"
-version = "1.0.188"
+version = "1.0.195"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
+checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
 dependencies = [
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
 ]
 
 [[package]]
 name = "serde_json"
-version = "1.0.107"
+version = "1.0.111"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
+checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
 dependencies = [
  "itoa",
  "ryu",
@@ -1547,28 +1544,18 @@
 
 [[package]]
 name = "smallvec"
-version = "1.11.1"
+version = "1.11.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
+checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
 
 [[package]]
 name = "socket2"
-version = "0.4.9"
+version = "0.5.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
+checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
 dependencies = [
  "libc",
- "winapi",
-]
-
-[[package]]
-name = "socket2"
-version = "0.5.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e"
-dependencies = [
- "libc",
- "windows-sys",
+ "windows-sys 0.48.0",
 ]
 
 [[package]]
@@ -1616,9 +1603,9 @@
 
 [[package]]
 name = "syn"
-version = "2.0.37"
+version = "2.0.48"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
+checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -1627,15 +1614,15 @@
 
 [[package]]
 name = "tempfile"
-version = "3.8.0"
+version = "3.9.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
+checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
 dependencies = [
  "cfg-if",
  "fastrand",
  "redox_syscall",
  "rustix",
- "windows-sys",
+ "windows-sys 0.52.0",
 ]
 
 [[package]]
@@ -1651,9 +1638,9 @@
 
 [[package]]
 name = "termcolor"
-version = "1.3.0"
+version = "1.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64"
+checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
 dependencies = [
  "winapi-util",
 ]
@@ -1665,37 +1652,27 @@
 checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
 dependencies = [
  "rustix",
- "windows-sys",
+ "windows-sys 0.48.0",
 ]
 
 [[package]]
 name = "thiserror"
-version = "1.0.49"
+version = "1.0.56"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4"
+checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
 dependencies = [
  "thiserror-impl",
 ]
 
 [[package]]
 name = "thiserror-impl"
-version = "1.0.49"
+version = "1.0.56"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc"
+checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
 dependencies = [
  "proc-macro2",
  "quote",
- "syn 2.0.37",
-]
-
-[[package]]
-name = "thread_local"
-version = "1.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
-dependencies = [
- "cfg-if",
- "once_cell",
+ "syn 2.0.48",
 ]
 
 [[package]]
@@ -1715,9 +1692,9 @@
 
 [[package]]
 name = "tokio"
-version = "1.32.0"
+version = "1.35.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
+checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
 dependencies = [
  "backtrace",
  "bytes",
@@ -1725,20 +1702,20 @@
  "mio",
  "num_cpus",
  "pin-project-lite",
- "socket2 0.5.4",
+ "socket2",
  "tokio-macros",
- "windows-sys",
+ "windows-sys 0.48.0",
 ]
 
 [[package]]
 name = "tokio-macros"
-version = "2.1.0"
+version = "2.2.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
+checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
 dependencies = [
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
 ]
 
 [[package]]
@@ -1766,9 +1743,9 @@
 
 [[package]]
 name = "tokio-util"
-version = "0.7.9"
+version = "0.7.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
+checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
 dependencies = [
  "bytes",
  "futures-core",
@@ -1801,11 +1778,10 @@
 
 [[package]]
 name = "tracing"
-version = "0.1.37"
+version = "0.1.40"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
+checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
 dependencies = [
- "cfg-if",
  "log",
  "pin-project-lite",
  "tracing-core",
@@ -1813,18 +1789,18 @@
 
 [[package]]
 name = "tracing-core"
-version = "0.1.31"
+version = "0.1.32"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
+checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
 dependencies = [
  "once_cell",
 ]
 
 [[package]]
 name = "try-lock"
-version = "0.2.4"
+version = "0.2.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
+checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
 
 [[package]]
 name = "tungstenite"
@@ -1868,9 +1844,9 @@
 
 [[package]]
 name = "unicode-bidi"
-version = "0.3.13"
+version = "0.3.14"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
+checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
 
 [[package]]
 name = "unicode-ident"
@@ -1889,9 +1865,9 @@
 
 [[package]]
 name = "url"
-version = "2.4.1"
+version = "2.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
+checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
 dependencies = [
  "form_urlencoded",
  "idna",
@@ -1973,9 +1949,9 @@
 
 [[package]]
 name = "wasm-bindgen"
-version = "0.2.87"
+version = "0.2.89"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
+checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
 dependencies = [
  "cfg-if",
  "wasm-bindgen-macro",
@@ -1983,24 +1959,24 @@
 
 [[package]]
 name = "wasm-bindgen-backend"
-version = "0.2.87"
+version = "0.2.89"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
+checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
 dependencies = [
  "bumpalo",
  "log",
  "once_cell",
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
  "wasm-bindgen-shared",
 ]
 
 [[package]]
 name = "wasm-bindgen-macro"
-version = "0.2.87"
+version = "0.2.89"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
+checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
 dependencies = [
  "quote",
  "wasm-bindgen-macro-support",
@@ -2008,22 +1984,22 @@
 
 [[package]]
 name = "wasm-bindgen-macro-support"
-version = "0.2.87"
+version = "0.2.89"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
+checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
 dependencies = [
  "proc-macro2",
  "quote",
- "syn 2.0.37",
+ "syn 2.0.48",
  "wasm-bindgen-backend",
  "wasm-bindgen-shared",
 ]
 
 [[package]]
 name = "wasm-bindgen-shared"
-version = "0.2.87"
+version = "0.2.89"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
+checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
 
 [[package]]
 name = "which"
@@ -2069,12 +2045,12 @@
 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
 
 [[package]]
-name = "windows"
-version = "0.48.0"
+name = "windows-core"
+version = "0.52.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
+checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
 dependencies = [
- "windows-targets",
+ "windows-targets 0.52.0",
 ]
 
 [[package]]
@@ -2083,7 +2059,16 @@
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
 dependencies = [
- "windows-targets",
+ "windows-targets 0.48.5",
+]
+
+[[package]]
+name = "windows-sys"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+dependencies = [
+ "windows-targets 0.52.0",
 ]
 
 [[package]]
@@ -2092,13 +2077,28 @@
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
 dependencies = [
- "windows_aarch64_gnullvm",
- "windows_aarch64_msvc",
- "windows_i686_gnu",
- "windows_i686_msvc",
- "windows_x86_64_gnu",
- "windows_x86_64_gnullvm",
- "windows_x86_64_msvc",
+ "windows_aarch64_gnullvm 0.48.5",
+ "windows_aarch64_msvc 0.48.5",
+ "windows_i686_gnu 0.48.5",
+ "windows_i686_msvc 0.48.5",
+ "windows_x86_64_gnu 0.48.5",
+ "windows_x86_64_gnullvm 0.48.5",
+ "windows_x86_64_msvc 0.48.5",
+]
+
+[[package]]
+name = "windows-targets"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
+dependencies = [
+ "windows_aarch64_gnullvm 0.52.0",
+ "windows_aarch64_msvc 0.52.0",
+ "windows_i686_gnu 0.52.0",
+ "windows_i686_msvc 0.52.0",
+ "windows_x86_64_gnu 0.52.0",
+ "windows_x86_64_gnullvm 0.52.0",
+ "windows_x86_64_msvc 0.52.0",
 ]
 
 [[package]]
@@ -2108,37 +2108,79 @@
 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
 
 [[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
+
+[[package]]
 name = "windows_aarch64_msvc"
 version = "0.48.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
 
 [[package]]
+name = "windows_aarch64_msvc"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
+
+[[package]]
 name = "windows_i686_gnu"
 version = "0.48.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
 
 [[package]]
+name = "windows_i686_gnu"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
+
+[[package]]
 name = "windows_i686_msvc"
 version = "0.48.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
 
 [[package]]
+name = "windows_i686_msvc"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
+
+[[package]]
 name = "windows_x86_64_gnu"
 version = "0.48.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
 
 [[package]]
+name = "windows_x86_64_gnu"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
+
+[[package]]
 name = "windows_x86_64_gnullvm"
 version = "0.48.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
 
 [[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
+
+[[package]]
 name = "windows_x86_64_msvc"
 version = "0.48.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
diff --git a/third_party/rust/Cargo.toml b/third_party/rust/Cargo.toml
index 8a50bf1..498e207 100644
--- a/third_party/rust/Cargo.toml
+++ b/third_party/rust/Cargo.toml
@@ -9,140 +9,3 @@
 [dependencies]
 mdbook = "0"
 protoc-gen-prost = "0.2.3"
-
-[package.metadata.raze]
-workspace_path = "//third_party/rust/cargo"
-package_aliases_dir = "."
-targets = [
-    "x86_64-unknown-linux-gnu",
-]
-genmode = "Remote"
-
-[package.metadata.raze.crates.prost.'0.11.9']
-data_dependencies = [
-    "README.md",
-]
-
-[package.metadata.raze.crates.protoc-gen-prost.'0.2.3']
-data_dependencies = [
-    "README.md",
-]
-
-[package.metadata.raze.crates.handlebars.'4.3.6']
-data_dependencies = [
-    "src/grammar.pest",
-]
-
-[package.metadata.raze.crates.opener.'0.6.1']
-data_dependencies = [
-    "src/xdg-open",
-]
-
-[package.metadata.raze.crates.clap.'4.4.6']
-data_dependencies = [
-    "README.md",
-    "examples/demo.md",
-]
-
-[package.metadata.raze.crates.clap_complete.'4.4.3']
-data_dependencies = [
-    "README.md",
-]
-
-[package.metadata.raze.crates.clap_builder.'4.4.6']
-data_dependencies = [
-    "README.md",
-]
-
-[package.metadata.raze.crates.bstr.'1.6.2']
-data_dependencies = [
-	"src/unicode/fsm/grapheme_break_fwd.littleendian.dfa",
-	"src/unicode/fsm/grapheme_break_rev.littleendian.dfa",
-	"src/unicode/fsm/regional_indicator_rev.littleendian.dfa",
-	"src/unicode/fsm/sentence_break_fwd.littleendian.dfa",
-	"src/unicode/fsm/simple_word_fwd.littleendian.dfa",
-	"src/unicode/fsm/whitespace_anchored_fwd.littleendian.dfa",
-	"src/unicode/fsm/whitespace_anchored_rev.littleendian.dfa",
-	"src/unicode/fsm/word_break_fwd.littleendian.dfa",
-]
-
-[package.metadata.raze.crates.mdbook.'0.4.35']
-data_dependencies = [
-    "src/theme/playground_editor/ace.js",
-    "src/theme/playground_editor/editor.js",
-    "src/theme/playground_editor/mode-rust.js",
-    "src/theme/playground_editor/theme-dawn.js",
-    "src/theme/playground_editor/theme-tomorrow_night.js",
-
-    "src/theme/fonts/OPEN-SANS-LICENSE.txt",
-    "src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt",
-    "src/theme/fonts/fonts.css",
-    "src/theme/fonts/open-sans-v17-all-charsets-300.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-600.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-700.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-800.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-italic.woff2",
-    "src/theme/fonts/open-sans-v17-all-charsets-regular.woff2",
-    "src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2",
-
-    "src/theme/searcher/elasticlunr.min.js",
-    "src/theme/searcher/mark.min.js",
-    "src/theme/searcher/searcher.js",
-
-    "src/theme/ayu-highlight.css",
-    "src/theme/book.js",
-    "src/theme/clipboard.min.js",
-    "src/theme/favicon.png",
-    "src/theme/favicon.svg",
-    "src/theme/head.hbs",
-    "src/theme/header.hbs",
-    "src/theme/highlight.css",
-    "src/theme/highlight.js",
-    "src/theme/index.hbs",
-    "src/theme/redirect.hbs",
-    "src/theme/tomorrow-night.css",
-
-    "src/theme/css/chrome.css",
-    "src/theme/css/general.css",
-    "src/theme/css/print.css",
-    "src/theme/css/variables.css",
-
-    "src/theme/FontAwesome/css/font-awesome.min.css",
-    "src/theme/FontAwesome/fonts/FontAwesome.otf",
-    "src/theme/FontAwesome/fonts/fontawesome-webfont.eot",
-    "src/theme/FontAwesome/fonts/fontawesome-webfont.svg",
-    "src/theme/FontAwesome/fonts/fontawesome-webfont.ttf",
-    "src/theme/FontAwesome/fonts/fontawesome-webfont.woff",
-    "src/theme/FontAwesome/fonts/fontawesome-webfont.woff2",
-]
-# Generate the binary target alias //third_party/rust:cargo_bin_mdbook.
-extra_aliased_targets = [
-    "cargo_bin_mdbook"
-]
-# We end up linking mdbook into a binary. rustc, when doing that, calls gcc as
-# a linker (probably because cc-rs?).
-#
-# On our sandbox sysroot, the gcc used as a linker is /usr/bin/gcc. This gcc
-# then attempts to call its corresponding system ld, expecting it to be on
-# PATH. However, rules_rust hermeticizes the build to the point where PATH is
-# totally stripped out. Here, we add back /usr/bin back as the sole PATH
-# element, thereby making 'ld' resolvable agan by /usr/bin/gcc.
-#
-# In an ideal world, we would be able to translate Bazel C++ toolchain
-# definitions into Cargo/rustc's build system. These definitions technically
-# contain everything needed to know how to call a toolchain. However, it seems
-# like the current ecosystem of linking C/C++ in Rust is not centralized enough
-# for this to be easily doable, as the responsibility is spread between rustc,
-# Cargo, and third-party crates like cc-rs.
-#
-# For now, this has to do - as long as we don't use Cargo/Rust for secondary
-# operating system tools like mdbook, and not as something directly in the
-# transitive dependency set of building a Metropolis release. This is also why
-# we 'fix' this only for mdbook for now, we don't want to even pretend that
-# this is something that should be used where reproducibility and hermeticity
-# matters.
-additional_env.PATH = "/usr/bin"
diff --git a/third_party/rust/cargo/BUILD.bazel b/third_party/rust/cargo/BUILD.bazel
deleted file mode 100644
index 406c168..0000000
--- a/third_party/rust/cargo/BUILD.bazel
+++ /dev/null
@@ -1,24 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# Export file for Stardoc support
-exports_files(
-    glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
-
-filegroup(
-    name = "srcs",
-    srcs = glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
diff --git a/third_party/rust/cargo/crates.bzl b/third_party/rust/cargo/crates.bzl
deleted file mode 100644
index fd709c1..0000000
--- a/third_party/rust/cargo/crates.bzl
+++ /dev/null
@@ -1,2272 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")  # buildifier: disable=load
-load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")  # buildifier: disable=load
-load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")  # buildifier: disable=load
-
-def raze_fetch_remote_crates():
-    """This function defines a collection of repos and should be called in a WORKSPACE file"""
-    maybe(
-        http_archive,
-        name = "raze__addr2line__0_21_0",
-        url = "https://crates.io/api/v1/crates/addr2line/0.21.0/download",
-        type = "tar.gz",
-        sha256 = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb",
-        strip_prefix = "addr2line-0.21.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.addr2line-0.21.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__adler__1_0_2",
-        url = "https://crates.io/api/v1/crates/adler/1.0.2/download",
-        type = "tar.gz",
-        sha256 = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe",
-        strip_prefix = "adler-1.0.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.adler-1.0.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__aho_corasick__1_1_1",
-        url = "https://crates.io/api/v1/crates/aho-corasick/1.1.1/download",
-        type = "tar.gz",
-        sha256 = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab",
-        strip_prefix = "aho-corasick-1.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.aho-corasick-1.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__ammonia__3_3_0",
-        url = "https://crates.io/api/v1/crates/ammonia/3.3.0/download",
-        type = "tar.gz",
-        sha256 = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170",
-        strip_prefix = "ammonia-3.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ammonia-3.3.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__android_tzdata__0_1_1",
-        url = "https://crates.io/api/v1/crates/android-tzdata/0.1.1/download",
-        type = "tar.gz",
-        sha256 = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0",
-        strip_prefix = "android-tzdata-0.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.android-tzdata-0.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__android_system_properties__0_1_5",
-        url = "https://crates.io/api/v1/crates/android_system_properties/0.1.5/download",
-        type = "tar.gz",
-        sha256 = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311",
-        strip_prefix = "android_system_properties-0.1.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.android_system_properties-0.1.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__anstream__0_6_4",
-        url = "https://crates.io/api/v1/crates/anstream/0.6.4/download",
-        type = "tar.gz",
-        sha256 = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44",
-        strip_prefix = "anstream-0.6.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anstream-0.6.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__anstyle__1_0_4",
-        url = "https://crates.io/api/v1/crates/anstyle/1.0.4/download",
-        type = "tar.gz",
-        sha256 = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87",
-        strip_prefix = "anstyle-1.0.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anstyle-1.0.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__anstyle_parse__0_2_2",
-        url = "https://crates.io/api/v1/crates/anstyle-parse/0.2.2/download",
-        type = "tar.gz",
-        sha256 = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140",
-        strip_prefix = "anstyle-parse-0.2.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anstyle-parse-0.2.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__anstyle_query__1_0_0",
-        url = "https://crates.io/api/v1/crates/anstyle-query/1.0.0/download",
-        type = "tar.gz",
-        sha256 = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b",
-        strip_prefix = "anstyle-query-1.0.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anstyle-query-1.0.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__anstyle_wincon__3_0_1",
-        url = "https://crates.io/api/v1/crates/anstyle-wincon/3.0.1/download",
-        type = "tar.gz",
-        sha256 = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628",
-        strip_prefix = "anstyle-wincon-3.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anstyle-wincon-3.0.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__anyhow__1_0_75",
-        url = "https://crates.io/api/v1/crates/anyhow/1.0.75/download",
-        type = "tar.gz",
-        sha256 = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6",
-        strip_prefix = "anyhow-1.0.75",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anyhow-1.0.75.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__autocfg__1_1_0",
-        url = "https://crates.io/api/v1/crates/autocfg/1.1.0/download",
-        type = "tar.gz",
-        sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa",
-        strip_prefix = "autocfg-1.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.autocfg-1.1.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__backtrace__0_3_69",
-        url = "https://crates.io/api/v1/crates/backtrace/0.3.69/download",
-        type = "tar.gz",
-        sha256 = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837",
-        strip_prefix = "backtrace-0.3.69",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.backtrace-0.3.69.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__base64__0_21_4",
-        url = "https://crates.io/api/v1/crates/base64/0.21.4/download",
-        type = "tar.gz",
-        sha256 = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2",
-        strip_prefix = "base64-0.21.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.base64-0.21.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__bitflags__1_3_2",
-        url = "https://crates.io/api/v1/crates/bitflags/1.3.2/download",
-        type = "tar.gz",
-        sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
-        strip_prefix = "bitflags-1.3.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bitflags-1.3.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__bitflags__2_4_0",
-        url = "https://crates.io/api/v1/crates/bitflags/2.4.0/download",
-        type = "tar.gz",
-        sha256 = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635",
-        strip_prefix = "bitflags-2.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bitflags-2.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__block_buffer__0_10_4",
-        url = "https://crates.io/api/v1/crates/block-buffer/0.10.4/download",
-        type = "tar.gz",
-        sha256 = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71",
-        strip_prefix = "block-buffer-0.10.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.block-buffer-0.10.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__bstr__1_6_2",
-        url = "https://crates.io/api/v1/crates/bstr/1.6.2/download",
-        type = "tar.gz",
-        sha256 = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a",
-        strip_prefix = "bstr-1.6.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bstr-1.6.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__bumpalo__3_14_0",
-        url = "https://crates.io/api/v1/crates/bumpalo/3.14.0/download",
-        type = "tar.gz",
-        sha256 = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec",
-        strip_prefix = "bumpalo-3.14.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bumpalo-3.14.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__byteorder__1_4_3",
-        url = "https://crates.io/api/v1/crates/byteorder/1.4.3/download",
-        type = "tar.gz",
-        sha256 = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610",
-        strip_prefix = "byteorder-1.4.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.byteorder-1.4.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__bytes__1_5_0",
-        url = "https://crates.io/api/v1/crates/bytes/1.5.0/download",
-        type = "tar.gz",
-        sha256 = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223",
-        strip_prefix = "bytes-1.5.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bytes-1.5.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__cc__1_0_83",
-        url = "https://crates.io/api/v1/crates/cc/1.0.83/download",
-        type = "tar.gz",
-        sha256 = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0",
-        strip_prefix = "cc-1.0.83",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.cc-1.0.83.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__cfg_if__1_0_0",
-        url = "https://crates.io/api/v1/crates/cfg-if/1.0.0/download",
-        type = "tar.gz",
-        sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
-        strip_prefix = "cfg-if-1.0.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.cfg-if-1.0.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__chrono__0_4_31",
-        url = "https://crates.io/api/v1/crates/chrono/0.4.31/download",
-        type = "tar.gz",
-        sha256 = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38",
-        strip_prefix = "chrono-0.4.31",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.chrono-0.4.31.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__clap__4_4_6",
-        url = "https://crates.io/api/v1/crates/clap/4.4.6/download",
-        type = "tar.gz",
-        sha256 = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956",
-        strip_prefix = "clap-4.4.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap-4.4.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__clap_builder__4_4_6",
-        url = "https://crates.io/api/v1/crates/clap_builder/4.4.6/download",
-        type = "tar.gz",
-        sha256 = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45",
-        strip_prefix = "clap_builder-4.4.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_builder-4.4.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__clap_complete__4_4_3",
-        url = "https://crates.io/api/v1/crates/clap_complete/4.4.3/download",
-        type = "tar.gz",
-        sha256 = "e3ae8ba90b9d8b007efe66e55e48fb936272f5ca00349b5b0e89877520d35ea7",
-        strip_prefix = "clap_complete-4.4.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_complete-4.4.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__clap_lex__0_5_1",
-        url = "https://crates.io/api/v1/crates/clap_lex/0.5.1/download",
-        type = "tar.gz",
-        sha256 = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961",
-        strip_prefix = "clap_lex-0.5.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_lex-0.5.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__colorchoice__1_0_0",
-        url = "https://crates.io/api/v1/crates/colorchoice/1.0.0/download",
-        type = "tar.gz",
-        sha256 = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7",
-        strip_prefix = "colorchoice-1.0.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.colorchoice-1.0.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__core_foundation_sys__0_8_4",
-        url = "https://crates.io/api/v1/crates/core-foundation-sys/0.8.4/download",
-        type = "tar.gz",
-        sha256 = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa",
-        strip_prefix = "core-foundation-sys-0.8.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.core-foundation-sys-0.8.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__cpufeatures__0_2_9",
-        url = "https://crates.io/api/v1/crates/cpufeatures/0.2.9/download",
-        type = "tar.gz",
-        sha256 = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1",
-        strip_prefix = "cpufeatures-0.2.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.cpufeatures-0.2.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__crossbeam_channel__0_5_8",
-        url = "https://crates.io/api/v1/crates/crossbeam-channel/0.5.8/download",
-        type = "tar.gz",
-        sha256 = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200",
-        strip_prefix = "crossbeam-channel-0.5.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.crossbeam-channel-0.5.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__crossbeam_utils__0_8_16",
-        url = "https://crates.io/api/v1/crates/crossbeam-utils/0.8.16/download",
-        type = "tar.gz",
-        sha256 = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294",
-        strip_prefix = "crossbeam-utils-0.8.16",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.crossbeam-utils-0.8.16.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__crypto_common__0_1_6",
-        url = "https://crates.io/api/v1/crates/crypto-common/0.1.6/download",
-        type = "tar.gz",
-        sha256 = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3",
-        strip_prefix = "crypto-common-0.1.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.crypto-common-0.1.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__data_encoding__2_4_0",
-        url = "https://crates.io/api/v1/crates/data-encoding/2.4.0/download",
-        type = "tar.gz",
-        sha256 = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308",
-        strip_prefix = "data-encoding-2.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.data-encoding-2.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__digest__0_10_7",
-        url = "https://crates.io/api/v1/crates/digest/0.10.7/download",
-        type = "tar.gz",
-        sha256 = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292",
-        strip_prefix = "digest-0.10.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.digest-0.10.7.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__either__1_9_0",
-        url = "https://crates.io/api/v1/crates/either/1.9.0/download",
-        type = "tar.gz",
-        sha256 = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07",
-        strip_prefix = "either-1.9.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.either-1.9.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__elasticlunr_rs__3_0_2",
-        url = "https://crates.io/api/v1/crates/elasticlunr-rs/3.0.2/download",
-        type = "tar.gz",
-        sha256 = "41e83863a500656dfa214fee6682de9c5b9f03de6860fec531235ed2ae9f6571",
-        strip_prefix = "elasticlunr-rs-3.0.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.elasticlunr-rs-3.0.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__env_logger__0_10_0",
-        url = "https://crates.io/api/v1/crates/env_logger/0.10.0/download",
-        type = "tar.gz",
-        sha256 = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0",
-        strip_prefix = "env_logger-0.10.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.env_logger-0.10.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__equivalent__1_0_1",
-        url = "https://crates.io/api/v1/crates/equivalent/1.0.1/download",
-        type = "tar.gz",
-        sha256 = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5",
-        strip_prefix = "equivalent-1.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.equivalent-1.0.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__errno__0_3_4",
-        url = "https://crates.io/api/v1/crates/errno/0.3.4/download",
-        type = "tar.gz",
-        sha256 = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480",
-        strip_prefix = "errno-0.3.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.errno-0.3.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__errno_dragonfly__0_1_2",
-        url = "https://crates.io/api/v1/crates/errno-dragonfly/0.1.2/download",
-        type = "tar.gz",
-        sha256 = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf",
-        strip_prefix = "errno-dragonfly-0.1.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.errno-dragonfly-0.1.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__fastrand__2_0_1",
-        url = "https://crates.io/api/v1/crates/fastrand/2.0.1/download",
-        type = "tar.gz",
-        sha256 = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5",
-        strip_prefix = "fastrand-2.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.fastrand-2.0.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__filetime__0_2_22",
-        url = "https://crates.io/api/v1/crates/filetime/0.2.22/download",
-        type = "tar.gz",
-        sha256 = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0",
-        strip_prefix = "filetime-0.2.22",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.filetime-0.2.22.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__fixedbitset__0_4_2",
-        url = "https://crates.io/api/v1/crates/fixedbitset/0.4.2/download",
-        type = "tar.gz",
-        sha256 = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80",
-        strip_prefix = "fixedbitset-0.4.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.fixedbitset-0.4.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__fnv__1_0_7",
-        url = "https://crates.io/api/v1/crates/fnv/1.0.7/download",
-        type = "tar.gz",
-        sha256 = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1",
-        strip_prefix = "fnv-1.0.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.fnv-1.0.7.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__form_urlencoded__1_2_0",
-        url = "https://crates.io/api/v1/crates/form_urlencoded/1.2.0/download",
-        type = "tar.gz",
-        sha256 = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652",
-        strip_prefix = "form_urlencoded-1.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.form_urlencoded-1.2.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__fsevent_sys__4_1_0",
-        url = "https://crates.io/api/v1/crates/fsevent-sys/4.1.0/download",
-        type = "tar.gz",
-        sha256 = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2",
-        strip_prefix = "fsevent-sys-4.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.fsevent-sys-4.1.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futf__0_1_5",
-        url = "https://crates.io/api/v1/crates/futf/0.1.5/download",
-        type = "tar.gz",
-        sha256 = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843",
-        strip_prefix = "futf-0.1.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futf-0.1.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futures_channel__0_3_28",
-        url = "https://crates.io/api/v1/crates/futures-channel/0.3.28/download",
-        type = "tar.gz",
-        sha256 = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2",
-        strip_prefix = "futures-channel-0.3.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-channel-0.3.28.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futures_core__0_3_28",
-        url = "https://crates.io/api/v1/crates/futures-core/0.3.28/download",
-        type = "tar.gz",
-        sha256 = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c",
-        strip_prefix = "futures-core-0.3.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-core-0.3.28.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futures_macro__0_3_28",
-        url = "https://crates.io/api/v1/crates/futures-macro/0.3.28/download",
-        type = "tar.gz",
-        sha256 = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72",
-        strip_prefix = "futures-macro-0.3.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-macro-0.3.28.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futures_sink__0_3_28",
-        url = "https://crates.io/api/v1/crates/futures-sink/0.3.28/download",
-        type = "tar.gz",
-        sha256 = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e",
-        strip_prefix = "futures-sink-0.3.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-sink-0.3.28.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futures_task__0_3_28",
-        url = "https://crates.io/api/v1/crates/futures-task/0.3.28/download",
-        type = "tar.gz",
-        sha256 = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65",
-        strip_prefix = "futures-task-0.3.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-task-0.3.28.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__futures_util__0_3_28",
-        url = "https://crates.io/api/v1/crates/futures-util/0.3.28/download",
-        type = "tar.gz",
-        sha256 = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533",
-        strip_prefix = "futures-util-0.3.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-util-0.3.28.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__generic_array__0_14_7",
-        url = "https://crates.io/api/v1/crates/generic-array/0.14.7/download",
-        type = "tar.gz",
-        sha256 = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a",
-        strip_prefix = "generic-array-0.14.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.generic-array-0.14.7.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__getrandom__0_2_10",
-        url = "https://crates.io/api/v1/crates/getrandom/0.2.10/download",
-        type = "tar.gz",
-        sha256 = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427",
-        strip_prefix = "getrandom-0.2.10",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.getrandom-0.2.10.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__gimli__0_28_0",
-        url = "https://crates.io/api/v1/crates/gimli/0.28.0/download",
-        type = "tar.gz",
-        sha256 = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0",
-        strip_prefix = "gimli-0.28.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.gimli-0.28.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__globset__0_4_13",
-        url = "https://crates.io/api/v1/crates/globset/0.4.13/download",
-        type = "tar.gz",
-        sha256 = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d",
-        strip_prefix = "globset-0.4.13",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.globset-0.4.13.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__h2__0_3_21",
-        url = "https://crates.io/api/v1/crates/h2/0.3.21/download",
-        type = "tar.gz",
-        sha256 = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833",
-        strip_prefix = "h2-0.3.21",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.h2-0.3.21.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__handlebars__4_4_0",
-        url = "https://crates.io/api/v1/crates/handlebars/4.4.0/download",
-        type = "tar.gz",
-        sha256 = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683",
-        strip_prefix = "handlebars-4.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.handlebars-4.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__hashbrown__0_12_3",
-        url = "https://crates.io/api/v1/crates/hashbrown/0.12.3/download",
-        type = "tar.gz",
-        sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888",
-        strip_prefix = "hashbrown-0.12.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.hashbrown-0.12.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__hashbrown__0_14_1",
-        url = "https://crates.io/api/v1/crates/hashbrown/0.14.1/download",
-        type = "tar.gz",
-        sha256 = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12",
-        strip_prefix = "hashbrown-0.14.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.hashbrown-0.14.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__headers__0_3_9",
-        url = "https://crates.io/api/v1/crates/headers/0.3.9/download",
-        type = "tar.gz",
-        sha256 = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270",
-        strip_prefix = "headers-0.3.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.headers-0.3.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__headers_core__0_2_0",
-        url = "https://crates.io/api/v1/crates/headers-core/0.2.0/download",
-        type = "tar.gz",
-        sha256 = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429",
-        strip_prefix = "headers-core-0.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.headers-core-0.2.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__heck__0_4_1",
-        url = "https://crates.io/api/v1/crates/heck/0.4.1/download",
-        type = "tar.gz",
-        sha256 = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8",
-        strip_prefix = "heck-0.4.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.heck-0.4.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__hermit_abi__0_3_3",
-        url = "https://crates.io/api/v1/crates/hermit-abi/0.3.3/download",
-        type = "tar.gz",
-        sha256 = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7",
-        strip_prefix = "hermit-abi-0.3.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.hermit-abi-0.3.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__home__0_5_5",
-        url = "https://crates.io/api/v1/crates/home/0.5.5/download",
-        type = "tar.gz",
-        sha256 = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb",
-        strip_prefix = "home-0.5.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.home-0.5.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__html5ever__0_26_0",
-        url = "https://crates.io/api/v1/crates/html5ever/0.26.0/download",
-        type = "tar.gz",
-        sha256 = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7",
-        strip_prefix = "html5ever-0.26.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.html5ever-0.26.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__http__0_2_9",
-        url = "https://crates.io/api/v1/crates/http/0.2.9/download",
-        type = "tar.gz",
-        sha256 = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482",
-        strip_prefix = "http-0.2.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.http-0.2.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__http_body__0_4_5",
-        url = "https://crates.io/api/v1/crates/http-body/0.4.5/download",
-        type = "tar.gz",
-        sha256 = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1",
-        strip_prefix = "http-body-0.4.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.http-body-0.4.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__httparse__1_8_0",
-        url = "https://crates.io/api/v1/crates/httparse/1.8.0/download",
-        type = "tar.gz",
-        sha256 = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904",
-        strip_prefix = "httparse-1.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.httparse-1.8.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__httpdate__1_0_3",
-        url = "https://crates.io/api/v1/crates/httpdate/1.0.3/download",
-        type = "tar.gz",
-        sha256 = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9",
-        strip_prefix = "httpdate-1.0.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.httpdate-1.0.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__humantime__2_1_0",
-        url = "https://crates.io/api/v1/crates/humantime/2.1.0/download",
-        type = "tar.gz",
-        sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4",
-        strip_prefix = "humantime-2.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.humantime-2.1.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__hyper__0_14_27",
-        url = "https://crates.io/api/v1/crates/hyper/0.14.27/download",
-        type = "tar.gz",
-        sha256 = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468",
-        strip_prefix = "hyper-0.14.27",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.hyper-0.14.27.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__iana_time_zone__0_1_57",
-        url = "https://crates.io/api/v1/crates/iana-time-zone/0.1.57/download",
-        type = "tar.gz",
-        sha256 = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613",
-        strip_prefix = "iana-time-zone-0.1.57",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.iana-time-zone-0.1.57.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__iana_time_zone_haiku__0_1_2",
-        url = "https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.2/download",
-        type = "tar.gz",
-        sha256 = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f",
-        strip_prefix = "iana-time-zone-haiku-0.1.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.iana-time-zone-haiku-0.1.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__idna__0_4_0",
-        url = "https://crates.io/api/v1/crates/idna/0.4.0/download",
-        type = "tar.gz",
-        sha256 = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c",
-        strip_prefix = "idna-0.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.idna-0.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__ignore__0_4_20",
-        url = "https://crates.io/api/v1/crates/ignore/0.4.20/download",
-        type = "tar.gz",
-        sha256 = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492",
-        strip_prefix = "ignore-0.4.20",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ignore-0.4.20.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__indexmap__1_9_3",
-        url = "https://crates.io/api/v1/crates/indexmap/1.9.3/download",
-        type = "tar.gz",
-        sha256 = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99",
-        strip_prefix = "indexmap-1.9.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.indexmap-1.9.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__indexmap__2_0_2",
-        url = "https://crates.io/api/v1/crates/indexmap/2.0.2/download",
-        type = "tar.gz",
-        sha256 = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897",
-        strip_prefix = "indexmap-2.0.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.indexmap-2.0.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__inotify__0_9_6",
-        url = "https://crates.io/api/v1/crates/inotify/0.9.6/download",
-        type = "tar.gz",
-        sha256 = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff",
-        strip_prefix = "inotify-0.9.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.inotify-0.9.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__inotify_sys__0_1_5",
-        url = "https://crates.io/api/v1/crates/inotify-sys/0.1.5/download",
-        type = "tar.gz",
-        sha256 = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb",
-        strip_prefix = "inotify-sys-0.1.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.inotify-sys-0.1.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__is_terminal__0_4_9",
-        url = "https://crates.io/api/v1/crates/is-terminal/0.4.9/download",
-        type = "tar.gz",
-        sha256 = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b",
-        strip_prefix = "is-terminal-0.4.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.is-terminal-0.4.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__itertools__0_10_5",
-        url = "https://crates.io/api/v1/crates/itertools/0.10.5/download",
-        type = "tar.gz",
-        sha256 = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473",
-        strip_prefix = "itertools-0.10.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.itertools-0.10.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__itoa__1_0_9",
-        url = "https://crates.io/api/v1/crates/itoa/1.0.9/download",
-        type = "tar.gz",
-        sha256 = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38",
-        strip_prefix = "itoa-1.0.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.itoa-1.0.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__js_sys__0_3_64",
-        url = "https://crates.io/api/v1/crates/js-sys/0.3.64/download",
-        type = "tar.gz",
-        sha256 = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a",
-        strip_prefix = "js-sys-0.3.64",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.js-sys-0.3.64.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__kqueue__1_0_8",
-        url = "https://crates.io/api/v1/crates/kqueue/1.0.8/download",
-        type = "tar.gz",
-        sha256 = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c",
-        strip_prefix = "kqueue-1.0.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.kqueue-1.0.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__kqueue_sys__1_0_4",
-        url = "https://crates.io/api/v1/crates/kqueue-sys/1.0.4/download",
-        type = "tar.gz",
-        sha256 = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b",
-        strip_prefix = "kqueue-sys-1.0.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.kqueue-sys-1.0.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__lazy_static__1_4_0",
-        url = "https://crates.io/api/v1/crates/lazy_static/1.4.0/download",
-        type = "tar.gz",
-        sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646",
-        strip_prefix = "lazy_static-1.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.lazy_static-1.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__libc__0_2_148",
-        url = "https://crates.io/api/v1/crates/libc/0.2.148/download",
-        type = "tar.gz",
-        sha256 = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b",
-        strip_prefix = "libc-0.2.148",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.libc-0.2.148.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__linux_raw_sys__0_4_8",
-        url = "https://crates.io/api/v1/crates/linux-raw-sys/0.4.8/download",
-        type = "tar.gz",
-        sha256 = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db",
-        strip_prefix = "linux-raw-sys-0.4.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.linux-raw-sys-0.4.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__lock_api__0_4_10",
-        url = "https://crates.io/api/v1/crates/lock_api/0.4.10/download",
-        type = "tar.gz",
-        sha256 = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16",
-        strip_prefix = "lock_api-0.4.10",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.lock_api-0.4.10.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__log__0_4_20",
-        url = "https://crates.io/api/v1/crates/log/0.4.20/download",
-        type = "tar.gz",
-        sha256 = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f",
-        strip_prefix = "log-0.4.20",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.log-0.4.20.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__mac__0_1_1",
-        url = "https://crates.io/api/v1/crates/mac/0.1.1/download",
-        type = "tar.gz",
-        sha256 = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4",
-        strip_prefix = "mac-0.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mac-0.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__maplit__1_0_2",
-        url = "https://crates.io/api/v1/crates/maplit/1.0.2/download",
-        type = "tar.gz",
-        sha256 = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d",
-        strip_prefix = "maplit-1.0.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.maplit-1.0.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__markup5ever__0_11_0",
-        url = "https://crates.io/api/v1/crates/markup5ever/0.11.0/download",
-        type = "tar.gz",
-        sha256 = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016",
-        strip_prefix = "markup5ever-0.11.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.markup5ever-0.11.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__mdbook__0_4_35",
-        url = "https://crates.io/api/v1/crates/mdbook/0.4.35/download",
-        type = "tar.gz",
-        sha256 = "1c3f88addd34930bc5f01b9dc19f780447e51c92bf2536e3ded058018271775d",
-        strip_prefix = "mdbook-0.4.35",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mdbook-0.4.35.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__memchr__2_6_4",
-        url = "https://crates.io/api/v1/crates/memchr/2.6.4/download",
-        type = "tar.gz",
-        sha256 = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167",
-        strip_prefix = "memchr-2.6.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.memchr-2.6.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__mime__0_3_17",
-        url = "https://crates.io/api/v1/crates/mime/0.3.17/download",
-        type = "tar.gz",
-        sha256 = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a",
-        strip_prefix = "mime-0.3.17",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mime-0.3.17.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__mime_guess__2_0_4",
-        url = "https://crates.io/api/v1/crates/mime_guess/2.0.4/download",
-        type = "tar.gz",
-        sha256 = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef",
-        strip_prefix = "mime_guess-2.0.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mime_guess-2.0.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__miniz_oxide__0_7_1",
-        url = "https://crates.io/api/v1/crates/miniz_oxide/0.7.1/download",
-        type = "tar.gz",
-        sha256 = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7",
-        strip_prefix = "miniz_oxide-0.7.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.miniz_oxide-0.7.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__mio__0_8_8",
-        url = "https://crates.io/api/v1/crates/mio/0.8.8/download",
-        type = "tar.gz",
-        sha256 = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2",
-        strip_prefix = "mio-0.8.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mio-0.8.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__multimap__0_8_3",
-        url = "https://crates.io/api/v1/crates/multimap/0.8.3/download",
-        type = "tar.gz",
-        sha256 = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a",
-        strip_prefix = "multimap-0.8.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.multimap-0.8.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__new_debug_unreachable__1_0_4",
-        url = "https://crates.io/api/v1/crates/new_debug_unreachable/1.0.4/download",
-        type = "tar.gz",
-        sha256 = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54",
-        strip_prefix = "new_debug_unreachable-1.0.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.new_debug_unreachable-1.0.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__normpath__1_1_1",
-        url = "https://crates.io/api/v1/crates/normpath/1.1.1/download",
-        type = "tar.gz",
-        sha256 = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5",
-        strip_prefix = "normpath-1.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.normpath-1.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__notify__6_1_1",
-        url = "https://crates.io/api/v1/crates/notify/6.1.1/download",
-        type = "tar.gz",
-        sha256 = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d",
-        strip_prefix = "notify-6.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.notify-6.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__notify_debouncer_mini__0_3_0",
-        url = "https://crates.io/api/v1/crates/notify-debouncer-mini/0.3.0/download",
-        type = "tar.gz",
-        sha256 = "e55ee272914f4563a2f8b8553eb6811f3c0caea81c756346bad15b7e3ef969f0",
-        strip_prefix = "notify-debouncer-mini-0.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.notify-debouncer-mini-0.3.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__num_traits__0_2_16",
-        url = "https://crates.io/api/v1/crates/num-traits/0.2.16/download",
-        type = "tar.gz",
-        sha256 = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2",
-        strip_prefix = "num-traits-0.2.16",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.num-traits-0.2.16.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__num_cpus__1_16_0",
-        url = "https://crates.io/api/v1/crates/num_cpus/1.16.0/download",
-        type = "tar.gz",
-        sha256 = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43",
-        strip_prefix = "num_cpus-1.16.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.num_cpus-1.16.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__object__0_32_1",
-        url = "https://crates.io/api/v1/crates/object/0.32.1/download",
-        type = "tar.gz",
-        sha256 = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0",
-        strip_prefix = "object-0.32.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.object-0.32.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__once_cell__1_18_0",
-        url = "https://crates.io/api/v1/crates/once_cell/1.18.0/download",
-        type = "tar.gz",
-        sha256 = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d",
-        strip_prefix = "once_cell-1.18.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.once_cell-1.18.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__opener__0_6_1",
-        url = "https://crates.io/api/v1/crates/opener/0.6.1/download",
-        type = "tar.gz",
-        sha256 = "6c62dcb6174f9cb326eac248f07e955d5d559c272730b6c03e396b443b562788",
-        strip_prefix = "opener-0.6.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.opener-0.6.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__parking_lot__0_12_1",
-        url = "https://crates.io/api/v1/crates/parking_lot/0.12.1/download",
-        type = "tar.gz",
-        sha256 = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f",
-        strip_prefix = "parking_lot-0.12.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.parking_lot-0.12.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__parking_lot_core__0_9_8",
-        url = "https://crates.io/api/v1/crates/parking_lot_core/0.9.8/download",
-        type = "tar.gz",
-        sha256 = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447",
-        strip_prefix = "parking_lot_core-0.9.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.parking_lot_core-0.9.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__percent_encoding__2_3_0",
-        url = "https://crates.io/api/v1/crates/percent-encoding/2.3.0/download",
-        type = "tar.gz",
-        sha256 = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94",
-        strip_prefix = "percent-encoding-2.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.percent-encoding-2.3.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pest__2_7_4",
-        url = "https://crates.io/api/v1/crates/pest/2.7.4/download",
-        type = "tar.gz",
-        sha256 = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4",
-        strip_prefix = "pest-2.7.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest-2.7.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pest_derive__2_7_4",
-        url = "https://crates.io/api/v1/crates/pest_derive/2.7.4/download",
-        type = "tar.gz",
-        sha256 = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8",
-        strip_prefix = "pest_derive-2.7.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_derive-2.7.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pest_generator__2_7_4",
-        url = "https://crates.io/api/v1/crates/pest_generator/2.7.4/download",
-        type = "tar.gz",
-        sha256 = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a",
-        strip_prefix = "pest_generator-2.7.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_generator-2.7.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pest_meta__2_7_4",
-        url = "https://crates.io/api/v1/crates/pest_meta/2.7.4/download",
-        type = "tar.gz",
-        sha256 = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d",
-        strip_prefix = "pest_meta-2.7.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_meta-2.7.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__petgraph__0_6_4",
-        url = "https://crates.io/api/v1/crates/petgraph/0.6.4/download",
-        type = "tar.gz",
-        sha256 = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9",
-        strip_prefix = "petgraph-0.6.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.petgraph-0.6.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__phf__0_10_1",
-        url = "https://crates.io/api/v1/crates/phf/0.10.1/download",
-        type = "tar.gz",
-        sha256 = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259",
-        strip_prefix = "phf-0.10.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf-0.10.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__phf_codegen__0_10_0",
-        url = "https://crates.io/api/v1/crates/phf_codegen/0.10.0/download",
-        type = "tar.gz",
-        sha256 = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd",
-        strip_prefix = "phf_codegen-0.10.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_codegen-0.10.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__phf_generator__0_10_0",
-        url = "https://crates.io/api/v1/crates/phf_generator/0.10.0/download",
-        type = "tar.gz",
-        sha256 = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6",
-        strip_prefix = "phf_generator-0.10.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_generator-0.10.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__phf_shared__0_10_0",
-        url = "https://crates.io/api/v1/crates/phf_shared/0.10.0/download",
-        type = "tar.gz",
-        sha256 = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096",
-        strip_prefix = "phf_shared-0.10.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_shared-0.10.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pin_project__1_1_3",
-        url = "https://crates.io/api/v1/crates/pin-project/1.1.3/download",
-        type = "tar.gz",
-        sha256 = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422",
-        strip_prefix = "pin-project-1.1.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-1.1.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pin_project_internal__1_1_3",
-        url = "https://crates.io/api/v1/crates/pin-project-internal/1.1.3/download",
-        type = "tar.gz",
-        sha256 = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405",
-        strip_prefix = "pin-project-internal-1.1.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-internal-1.1.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pin_project_lite__0_2_13",
-        url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.13/download",
-        type = "tar.gz",
-        sha256 = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58",
-        strip_prefix = "pin-project-lite-0.2.13",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-lite-0.2.13.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pin_utils__0_1_0",
-        url = "https://crates.io/api/v1/crates/pin-utils/0.1.0/download",
-        type = "tar.gz",
-        sha256 = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184",
-        strip_prefix = "pin-utils-0.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-utils-0.1.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__ppv_lite86__0_2_17",
-        url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download",
-        type = "tar.gz",
-        sha256 = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de",
-        strip_prefix = "ppv-lite86-0.2.17",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ppv-lite86-0.2.17.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__precomputed_hash__0_1_1",
-        url = "https://crates.io/api/v1/crates/precomputed-hash/0.1.1/download",
-        type = "tar.gz",
-        sha256 = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c",
-        strip_prefix = "precomputed-hash-0.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.precomputed-hash-0.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__proc_macro2__1_0_67",
-        url = "https://crates.io/api/v1/crates/proc-macro2/1.0.67/download",
-        type = "tar.gz",
-        sha256 = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328",
-        strip_prefix = "proc-macro2-1.0.67",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.proc-macro2-1.0.67.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__prost__0_11_9",
-        url = "https://crates.io/api/v1/crates/prost/0.11.9/download",
-        type = "tar.gz",
-        sha256 = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd",
-        strip_prefix = "prost-0.11.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.prost-0.11.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__prost_build__0_11_9",
-        url = "https://crates.io/api/v1/crates/prost-build/0.11.9/download",
-        type = "tar.gz",
-        sha256 = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270",
-        strip_prefix = "prost-build-0.11.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.prost-build-0.11.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__prost_derive__0_11_9",
-        url = "https://crates.io/api/v1/crates/prost-derive/0.11.9/download",
-        type = "tar.gz",
-        sha256 = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4",
-        strip_prefix = "prost-derive-0.11.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.prost-derive-0.11.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__prost_types__0_11_9",
-        url = "https://crates.io/api/v1/crates/prost-types/0.11.9/download",
-        type = "tar.gz",
-        sha256 = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13",
-        strip_prefix = "prost-types-0.11.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.prost-types-0.11.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__protoc_gen_prost__0_2_3",
-        url = "https://crates.io/api/v1/crates/protoc-gen-prost/0.2.3/download",
-        type = "tar.gz",
-        sha256 = "10dfa031ad41fdcfb180de73ece3ed076250f1132a13ad6bba218699f612fb95",
-        strip_prefix = "protoc-gen-prost-0.2.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.protoc-gen-prost-0.2.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__pulldown_cmark__0_9_3",
-        url = "https://crates.io/api/v1/crates/pulldown-cmark/0.9.3/download",
-        type = "tar.gz",
-        sha256 = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998",
-        strip_prefix = "pulldown-cmark-0.9.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pulldown-cmark-0.9.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__quote__1_0_33",
-        url = "https://crates.io/api/v1/crates/quote/1.0.33/download",
-        type = "tar.gz",
-        sha256 = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae",
-        strip_prefix = "quote-1.0.33",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.quote-1.0.33.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rand__0_8_5",
-        url = "https://crates.io/api/v1/crates/rand/0.8.5/download",
-        type = "tar.gz",
-        sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404",
-        strip_prefix = "rand-0.8.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand-0.8.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rand_chacha__0_3_1",
-        url = "https://crates.io/api/v1/crates/rand_chacha/0.3.1/download",
-        type = "tar.gz",
-        sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88",
-        strip_prefix = "rand_chacha-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_chacha-0.3.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rand_core__0_6_4",
-        url = "https://crates.io/api/v1/crates/rand_core/0.6.4/download",
-        type = "tar.gz",
-        sha256 = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c",
-        strip_prefix = "rand_core-0.6.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_core-0.6.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__redox_syscall__0_3_5",
-        url = "https://crates.io/api/v1/crates/redox_syscall/0.3.5/download",
-        type = "tar.gz",
-        sha256 = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29",
-        strip_prefix = "redox_syscall-0.3.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.redox_syscall-0.3.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__regex__1_9_6",
-        url = "https://crates.io/api/v1/crates/regex/1.9.6/download",
-        type = "tar.gz",
-        sha256 = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff",
-        strip_prefix = "regex-1.9.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-1.9.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__regex_automata__0_3_9",
-        url = "https://crates.io/api/v1/crates/regex-automata/0.3.9/download",
-        type = "tar.gz",
-        sha256 = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9",
-        strip_prefix = "regex-automata-0.3.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-automata-0.3.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__regex_syntax__0_7_5",
-        url = "https://crates.io/api/v1/crates/regex-syntax/0.7.5/download",
-        type = "tar.gz",
-        sha256 = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da",
-        strip_prefix = "regex-syntax-0.7.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-syntax-0.7.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rustc_demangle__0_1_23",
-        url = "https://crates.io/api/v1/crates/rustc-demangle/0.1.23/download",
-        type = "tar.gz",
-        sha256 = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76",
-        strip_prefix = "rustc-demangle-0.1.23",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rustc-demangle-0.1.23.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rustix__0_38_15",
-        url = "https://crates.io/api/v1/crates/rustix/0.38.15/download",
-        type = "tar.gz",
-        sha256 = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531",
-        strip_prefix = "rustix-0.38.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rustix-0.38.15.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rustls_pemfile__1_0_3",
-        url = "https://crates.io/api/v1/crates/rustls-pemfile/1.0.3/download",
-        type = "tar.gz",
-        sha256 = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2",
-        strip_prefix = "rustls-pemfile-1.0.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rustls-pemfile-1.0.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__ryu__1_0_15",
-        url = "https://crates.io/api/v1/crates/ryu/1.0.15/download",
-        type = "tar.gz",
-        sha256 = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741",
-        strip_prefix = "ryu-1.0.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ryu-1.0.15.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__same_file__1_0_6",
-        url = "https://crates.io/api/v1/crates/same-file/1.0.6/download",
-        type = "tar.gz",
-        sha256 = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502",
-        strip_prefix = "same-file-1.0.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.same-file-1.0.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__scoped_tls__1_0_1",
-        url = "https://crates.io/api/v1/crates/scoped-tls/1.0.1/download",
-        type = "tar.gz",
-        sha256 = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294",
-        strip_prefix = "scoped-tls-1.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.scoped-tls-1.0.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__scopeguard__1_2_0",
-        url = "https://crates.io/api/v1/crates/scopeguard/1.2.0/download",
-        type = "tar.gz",
-        sha256 = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49",
-        strip_prefix = "scopeguard-1.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.scopeguard-1.2.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__serde__1_0_188",
-        url = "https://crates.io/api/v1/crates/serde/1.0.188/download",
-        type = "tar.gz",
-        sha256 = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e",
-        strip_prefix = "serde-1.0.188",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde-1.0.188.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__serde_derive__1_0_188",
-        url = "https://crates.io/api/v1/crates/serde_derive/1.0.188/download",
-        type = "tar.gz",
-        sha256 = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2",
-        strip_prefix = "serde_derive-1.0.188",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_derive-1.0.188.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__serde_json__1_0_107",
-        url = "https://crates.io/api/v1/crates/serde_json/1.0.107/download",
-        type = "tar.gz",
-        sha256 = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65",
-        strip_prefix = "serde_json-1.0.107",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_json-1.0.107.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__serde_urlencoded__0_7_1",
-        url = "https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download",
-        type = "tar.gz",
-        sha256 = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd",
-        strip_prefix = "serde_urlencoded-0.7.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_urlencoded-0.7.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__sha1__0_10_6",
-        url = "https://crates.io/api/v1/crates/sha1/0.10.6/download",
-        type = "tar.gz",
-        sha256 = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba",
-        strip_prefix = "sha1-0.10.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha1-0.10.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__sha2__0_10_8",
-        url = "https://crates.io/api/v1/crates/sha2/0.10.8/download",
-        type = "tar.gz",
-        sha256 = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8",
-        strip_prefix = "sha2-0.10.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha2-0.10.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__shlex__1_2_0",
-        url = "https://crates.io/api/v1/crates/shlex/1.2.0/download",
-        type = "tar.gz",
-        sha256 = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380",
-        strip_prefix = "shlex-1.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.shlex-1.2.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__siphasher__0_3_11",
-        url = "https://crates.io/api/v1/crates/siphasher/0.3.11/download",
-        type = "tar.gz",
-        sha256 = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d",
-        strip_prefix = "siphasher-0.3.11",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.siphasher-0.3.11.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__slab__0_4_9",
-        url = "https://crates.io/api/v1/crates/slab/0.4.9/download",
-        type = "tar.gz",
-        sha256 = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67",
-        strip_prefix = "slab-0.4.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.slab-0.4.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__smallvec__1_11_1",
-        url = "https://crates.io/api/v1/crates/smallvec/1.11.1/download",
-        type = "tar.gz",
-        sha256 = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a",
-        strip_prefix = "smallvec-1.11.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.smallvec-1.11.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__socket2__0_4_9",
-        url = "https://crates.io/api/v1/crates/socket2/0.4.9/download",
-        type = "tar.gz",
-        sha256 = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662",
-        strip_prefix = "socket2-0.4.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.socket2-0.4.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__socket2__0_5_4",
-        url = "https://crates.io/api/v1/crates/socket2/0.5.4/download",
-        type = "tar.gz",
-        sha256 = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e",
-        strip_prefix = "socket2-0.5.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.socket2-0.5.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__string_cache__0_8_7",
-        url = "https://crates.io/api/v1/crates/string_cache/0.8.7/download",
-        type = "tar.gz",
-        sha256 = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b",
-        strip_prefix = "string_cache-0.8.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache-0.8.7.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__string_cache_codegen__0_5_2",
-        url = "https://crates.io/api/v1/crates/string_cache_codegen/0.5.2/download",
-        type = "tar.gz",
-        sha256 = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988",
-        strip_prefix = "string_cache_codegen-0.5.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache_codegen-0.5.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__strsim__0_10_0",
-        url = "https://crates.io/api/v1/crates/strsim/0.10.0/download",
-        type = "tar.gz",
-        sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623",
-        strip_prefix = "strsim-0.10.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.strsim-0.10.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__syn__1_0_109",
-        url = "https://crates.io/api/v1/crates/syn/1.0.109/download",
-        type = "tar.gz",
-        sha256 = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237",
-        strip_prefix = "syn-1.0.109",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.syn-1.0.109.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__syn__2_0_37",
-        url = "https://crates.io/api/v1/crates/syn/2.0.37/download",
-        type = "tar.gz",
-        sha256 = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8",
-        strip_prefix = "syn-2.0.37",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.syn-2.0.37.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tempfile__3_8_0",
-        url = "https://crates.io/api/v1/crates/tempfile/3.8.0/download",
-        type = "tar.gz",
-        sha256 = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef",
-        strip_prefix = "tempfile-3.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tempfile-3.8.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tendril__0_4_3",
-        url = "https://crates.io/api/v1/crates/tendril/0.4.3/download",
-        type = "tar.gz",
-        sha256 = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0",
-        strip_prefix = "tendril-0.4.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tendril-0.4.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__termcolor__1_3_0",
-        url = "https://crates.io/api/v1/crates/termcolor/1.3.0/download",
-        type = "tar.gz",
-        sha256 = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64",
-        strip_prefix = "termcolor-1.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.termcolor-1.3.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__terminal_size__0_3_0",
-        url = "https://crates.io/api/v1/crates/terminal_size/0.3.0/download",
-        type = "tar.gz",
-        sha256 = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7",
-        strip_prefix = "terminal_size-0.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.terminal_size-0.3.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__thiserror__1_0_49",
-        url = "https://crates.io/api/v1/crates/thiserror/1.0.49/download",
-        type = "tar.gz",
-        sha256 = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4",
-        strip_prefix = "thiserror-1.0.49",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.thiserror-1.0.49.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__thiserror_impl__1_0_49",
-        url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.49/download",
-        type = "tar.gz",
-        sha256 = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc",
-        strip_prefix = "thiserror-impl-1.0.49",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.thiserror-impl-1.0.49.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__thread_local__1_1_7",
-        url = "https://crates.io/api/v1/crates/thread_local/1.1.7/download",
-        type = "tar.gz",
-        sha256 = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152",
-        strip_prefix = "thread_local-1.1.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.thread_local-1.1.7.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tinyvec__1_6_0",
-        url = "https://crates.io/api/v1/crates/tinyvec/1.6.0/download",
-        type = "tar.gz",
-        sha256 = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50",
-        strip_prefix = "tinyvec-1.6.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tinyvec-1.6.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tinyvec_macros__0_1_1",
-        url = "https://crates.io/api/v1/crates/tinyvec_macros/0.1.1/download",
-        type = "tar.gz",
-        sha256 = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20",
-        strip_prefix = "tinyvec_macros-0.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tinyvec_macros-0.1.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tokio__1_32_0",
-        url = "https://crates.io/api/v1/crates/tokio/1.32.0/download",
-        type = "tar.gz",
-        sha256 = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9",
-        strip_prefix = "tokio-1.32.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-1.32.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tokio_macros__2_1_0",
-        url = "https://crates.io/api/v1/crates/tokio-macros/2.1.0/download",
-        type = "tar.gz",
-        sha256 = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e",
-        strip_prefix = "tokio-macros-2.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-macros-2.1.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tokio_stream__0_1_14",
-        url = "https://crates.io/api/v1/crates/tokio-stream/0.1.14/download",
-        type = "tar.gz",
-        sha256 = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842",
-        strip_prefix = "tokio-stream-0.1.14",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-stream-0.1.14.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tokio_tungstenite__0_20_1",
-        url = "https://crates.io/api/v1/crates/tokio-tungstenite/0.20.1/download",
-        type = "tar.gz",
-        sha256 = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c",
-        strip_prefix = "tokio-tungstenite-0.20.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-tungstenite-0.20.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tokio_util__0_7_9",
-        url = "https://crates.io/api/v1/crates/tokio-util/0.7.9/download",
-        type = "tar.gz",
-        sha256 = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d",
-        strip_prefix = "tokio-util-0.7.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-util-0.7.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__toml__0_5_11",
-        url = "https://crates.io/api/v1/crates/toml/0.5.11/download",
-        type = "tar.gz",
-        sha256 = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234",
-        strip_prefix = "toml-0.5.11",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.toml-0.5.11.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__topological_sort__0_2_2",
-        url = "https://crates.io/api/v1/crates/topological-sort/0.2.2/download",
-        type = "tar.gz",
-        sha256 = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d",
-        strip_prefix = "topological-sort-0.2.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.topological-sort-0.2.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tower_service__0_3_2",
-        url = "https://crates.io/api/v1/crates/tower-service/0.3.2/download",
-        type = "tar.gz",
-        sha256 = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52",
-        strip_prefix = "tower-service-0.3.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tower-service-0.3.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tracing__0_1_37",
-        url = "https://crates.io/api/v1/crates/tracing/0.1.37/download",
-        type = "tar.gz",
-        sha256 = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8",
-        strip_prefix = "tracing-0.1.37",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-0.1.37.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tracing_core__0_1_31",
-        url = "https://crates.io/api/v1/crates/tracing-core/0.1.31/download",
-        type = "tar.gz",
-        sha256 = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a",
-        strip_prefix = "tracing-core-0.1.31",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-core-0.1.31.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__try_lock__0_2_4",
-        url = "https://crates.io/api/v1/crates/try-lock/0.2.4/download",
-        type = "tar.gz",
-        sha256 = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed",
-        strip_prefix = "try-lock-0.2.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.try-lock-0.2.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__tungstenite__0_20_1",
-        url = "https://crates.io/api/v1/crates/tungstenite/0.20.1/download",
-        type = "tar.gz",
-        sha256 = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9",
-        strip_prefix = "tungstenite-0.20.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tungstenite-0.20.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__typenum__1_17_0",
-        url = "https://crates.io/api/v1/crates/typenum/1.17.0/download",
-        type = "tar.gz",
-        sha256 = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825",
-        strip_prefix = "typenum-1.17.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.typenum-1.17.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__ucd_trie__0_1_6",
-        url = "https://crates.io/api/v1/crates/ucd-trie/0.1.6/download",
-        type = "tar.gz",
-        sha256 = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9",
-        strip_prefix = "ucd-trie-0.1.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ucd-trie-0.1.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__unicase__2_7_0",
-        url = "https://crates.io/api/v1/crates/unicase/2.7.0/download",
-        type = "tar.gz",
-        sha256 = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89",
-        strip_prefix = "unicase-2.7.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicase-2.7.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__unicode_bidi__0_3_13",
-        url = "https://crates.io/api/v1/crates/unicode-bidi/0.3.13/download",
-        type = "tar.gz",
-        sha256 = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460",
-        strip_prefix = "unicode-bidi-0.3.13",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-bidi-0.3.13.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__unicode_ident__1_0_12",
-        url = "https://crates.io/api/v1/crates/unicode-ident/1.0.12/download",
-        type = "tar.gz",
-        sha256 = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b",
-        strip_prefix = "unicode-ident-1.0.12",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-ident-1.0.12.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__unicode_normalization__0_1_22",
-        url = "https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download",
-        type = "tar.gz",
-        sha256 = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921",
-        strip_prefix = "unicode-normalization-0.1.22",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-normalization-0.1.22.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__url__2_4_1",
-        url = "https://crates.io/api/v1/crates/url/2.4.1/download",
-        type = "tar.gz",
-        sha256 = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5",
-        strip_prefix = "url-2.4.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.url-2.4.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__utf_8__0_7_6",
-        url = "https://crates.io/api/v1/crates/utf-8/0.7.6/download",
-        type = "tar.gz",
-        sha256 = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9",
-        strip_prefix = "utf-8-0.7.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.utf-8-0.7.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__utf8parse__0_2_1",
-        url = "https://crates.io/api/v1/crates/utf8parse/0.2.1/download",
-        type = "tar.gz",
-        sha256 = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a",
-        strip_prefix = "utf8parse-0.2.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.utf8parse-0.2.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__version_check__0_9_4",
-        url = "https://crates.io/api/v1/crates/version_check/0.9.4/download",
-        type = "tar.gz",
-        sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f",
-        strip_prefix = "version_check-0.9.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.version_check-0.9.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__walkdir__2_4_0",
-        url = "https://crates.io/api/v1/crates/walkdir/2.4.0/download",
-        type = "tar.gz",
-        sha256 = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee",
-        strip_prefix = "walkdir-2.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.walkdir-2.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__want__0_3_1",
-        url = "https://crates.io/api/v1/crates/want/0.3.1/download",
-        type = "tar.gz",
-        sha256 = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e",
-        strip_prefix = "want-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.want-0.3.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__warp__0_3_6",
-        url = "https://crates.io/api/v1/crates/warp/0.3.6/download",
-        type = "tar.gz",
-        sha256 = "c1e92e22e03ff1230c03a1a8ee37d2f89cd489e2e541b7550d6afad96faed169",
-        strip_prefix = "warp-0.3.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.warp-0.3.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__wasi__0_11_0_wasi_snapshot_preview1",
-        url = "https://crates.io/api/v1/crates/wasi/0.11.0+wasi-snapshot-preview1/download",
-        type = "tar.gz",
-        sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423",
-        strip_prefix = "wasi-0.11.0+wasi-snapshot-preview1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__wasm_bindgen__0_2_87",
-        url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.87/download",
-        type = "tar.gz",
-        sha256 = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342",
-        strip_prefix = "wasm-bindgen-0.2.87",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-0.2.87.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__wasm_bindgen_backend__0_2_87",
-        url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.87/download",
-        type = "tar.gz",
-        sha256 = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd",
-        strip_prefix = "wasm-bindgen-backend-0.2.87",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-backend-0.2.87.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__wasm_bindgen_macro__0_2_87",
-        url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.87/download",
-        type = "tar.gz",
-        sha256 = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d",
-        strip_prefix = "wasm-bindgen-macro-0.2.87",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-macro-0.2.87.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__wasm_bindgen_macro_support__0_2_87",
-        url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.87/download",
-        type = "tar.gz",
-        sha256 = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b",
-        strip_prefix = "wasm-bindgen-macro-support-0.2.87",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-macro-support-0.2.87.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__wasm_bindgen_shared__0_2_87",
-        url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.87/download",
-        type = "tar.gz",
-        sha256 = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1",
-        strip_prefix = "wasm-bindgen-shared-0.2.87",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-shared-0.2.87.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__which__4_4_2",
-        url = "https://crates.io/api/v1/crates/which/4.4.2/download",
-        type = "tar.gz",
-        sha256 = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7",
-        strip_prefix = "which-4.4.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.which-4.4.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__winapi__0_3_9",
-        url = "https://crates.io/api/v1/crates/winapi/0.3.9/download",
-        type = "tar.gz",
-        sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419",
-        strip_prefix = "winapi-0.3.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-0.3.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__winapi_i686_pc_windows_gnu__0_4_0",
-        url = "https://crates.io/api/v1/crates/winapi-i686-pc-windows-gnu/0.4.0/download",
-        type = "tar.gz",
-        sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6",
-        strip_prefix = "winapi-i686-pc-windows-gnu-0.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__winapi_util__0_1_6",
-        url = "https://crates.io/api/v1/crates/winapi-util/0.1.6/download",
-        type = "tar.gz",
-        sha256 = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596",
-        strip_prefix = "winapi-util-0.1.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-util-0.1.6.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__winapi_x86_64_pc_windows_gnu__0_4_0",
-        url = "https://crates.io/api/v1/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download",
-        type = "tar.gz",
-        sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f",
-        strip_prefix = "winapi-x86_64-pc-windows-gnu-0.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows__0_48_0",
-        url = "https://crates.io/api/v1/crates/windows/0.48.0/download",
-        type = "tar.gz",
-        sha256 = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f",
-        strip_prefix = "windows-0.48.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows-0.48.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_sys__0_48_0",
-        url = "https://crates.io/api/v1/crates/windows-sys/0.48.0/download",
-        type = "tar.gz",
-        sha256 = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9",
-        strip_prefix = "windows-sys-0.48.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows-sys-0.48.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_targets__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows-targets/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c",
-        strip_prefix = "windows-targets-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows-targets-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_aarch64_gnullvm__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8",
-        strip_prefix = "windows_aarch64_gnullvm-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_aarch64_gnullvm-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_aarch64_msvc__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_aarch64_msvc/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc",
-        strip_prefix = "windows_aarch64_msvc-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_aarch64_msvc-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_i686_gnu__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_i686_gnu/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e",
-        strip_prefix = "windows_i686_gnu-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_i686_gnu-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_i686_msvc__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_i686_msvc/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406",
-        strip_prefix = "windows_i686_msvc-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_i686_msvc-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_x86_64_gnu__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_x86_64_gnu/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e",
-        strip_prefix = "windows_x86_64_gnu-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_gnu-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_x86_64_gnullvm__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc",
-        strip_prefix = "windows_x86_64_gnullvm-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_gnullvm-0.48.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__windows_x86_64_msvc__0_48_5",
-        url = "https://crates.io/api/v1/crates/windows_x86_64_msvc/0.48.5/download",
-        type = "tar.gz",
-        sha256 = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538",
-        strip_prefix = "windows_x86_64_msvc-0.48.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_msvc-0.48.5.bazel"),
-    )
diff --git a/third_party/rust/cargo/remote/BUILD.addr2line-0.21.0.bazel b/third_party/rust/cargo/remote/BUILD.addr2line-0.21.0.bazel
deleted file mode 100644
index 2d0c2a3..0000000
--- a/third_party/rust/cargo/remote/BUILD.addr2line-0.21.0.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "addr2line" with type "example" omitted
-
-rust_library(
-    name = "addr2line",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=addr2line",
-        "manual",
-    ],
-    version = "0.21.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__gimli__0_28_0//:gimli",
-    ],
-)
-
-# Unsupported target "correctness" with type "test" omitted
-
-# Unsupported target "output_equivalence" with type "test" omitted
-
-# Unsupported target "parse" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.adler-1.0.2.bazel b/third_party/rust/cargo/remote/BUILD.adler-1.0.2.bazel
deleted file mode 100644
index 37a4acf..0000000
--- a/third_party/rust/cargo/remote/BUILD.adler-1.0.2.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "0BSD OR (MIT OR Apache-2.0)"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "adler",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=adler",
-        "manual",
-    ],
-    version = "1.0.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.aho-corasick-1.1.1.bazel b/third_party/rust/cargo/remote/BUILD.aho-corasick-1.1.1.bazel
deleted file mode 100644
index 92e01f1..0000000
--- a/third_party/rust/cargo/remote/BUILD.aho-corasick-1.1.1.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "aho_corasick",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "perf-literal",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=aho_corasick",
-        "manual",
-    ],
-    version = "1.1.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__memchr__2_6_4//:memchr",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.ammonia-3.3.0.bazel b/third_party/rust/cargo/remote/BUILD.ammonia-3.3.0.bazel
deleted file mode 100644
index 89b627f..0000000
--- a/third_party/rust/cargo/remote/BUILD.ammonia-3.3.0.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "ammonia-cat" with type "example" omitted
-
-rust_library(
-    name = "ammonia",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ammonia",
-        "manual",
-    ],
-    version = "3.3.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__html5ever__0_26_0//:html5ever",
-        "@raze__maplit__1_0_2//:maplit",
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__tendril__0_4_3//:tendril",
-        "@raze__url__2_4_1//:url",
-    ],
-)
-
-# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.android-tzdata-0.1.1.bazel b/third_party/rust/cargo/remote/BUILD.android-tzdata-0.1.1.bazel
deleted file mode 100644
index 59c3174..0000000
--- a/third_party/rust/cargo/remote/BUILD.android-tzdata-0.1.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "android_tzdata",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=android-tzdata",
-        "manual",
-    ],
-    version = "0.1.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.android_system_properties-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.android_system_properties-0.1.5.bazel
deleted file mode 100644
index 9c11263..0000000
--- a/third_party/rust/cargo/remote/BUILD.android_system_properties-0.1.5.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "time_zone" with type "example" omitted
-
-rust_library(
-    name = "android_system_properties",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=android_system_properties",
-        "manual",
-    ],
-    version = "0.1.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anstream-0.6.4.bazel b/third_party/rust/cargo/remote/BUILD.anstream-0.6.4.bazel
deleted file mode 100644
index 610b734..0000000
--- a/third_party/rust/cargo/remote/BUILD.anstream-0.6.4.bazel
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "stream" with type "bench" omitted
-
-# Unsupported target "strip" with type "bench" omitted
-
-# Unsupported target "wincon" with type "bench" omitted
-
-rust_library(
-    name = "anstream",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "auto",
-        "default",
-        "wincon",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anstream",
-        "manual",
-    ],
-    version = "0.6.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__anstyle__1_0_4//:anstyle",
-        "@raze__anstyle_parse__0_2_2//:anstyle_parse",
-        "@raze__anstyle_query__1_0_0//:anstyle_query",
-        "@raze__colorchoice__1_0_0//:colorchoice",
-        "@raze__utf8parse__0_2_1//:utf8parse",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anstyle-1.0.4.bazel b/third_party/rust/cargo/remote/BUILD.anstyle-1.0.4.bazel
deleted file mode 100644
index d8736a0..0000000
--- a/third_party/rust/cargo/remote/BUILD.anstyle-1.0.4.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "dump" with type "example" omitted
-
-rust_library(
-    name = "anstyle",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anstyle",
-        "manual",
-    ],
-    version = "1.0.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anstyle-parse-0.2.2.bazel b/third_party/rust/cargo/remote/BUILD.anstyle-parse-0.2.2.bazel
deleted file mode 100644
index a89b0e8..0000000
--- a/third_party/rust/cargo/remote/BUILD.anstyle-parse-0.2.2.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "parse" with type "bench" omitted
-
-# Unsupported target "parselog" with type "example" omitted
-
-rust_library(
-    name = "anstyle_parse",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "utf8",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anstyle-parse",
-        "manual",
-    ],
-    version = "0.2.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__utf8parse__0_2_1//:utf8parse",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anstyle-query-1.0.0.bazel b/third_party/rust/cargo/remote/BUILD.anstyle-query-1.0.0.bazel
deleted file mode 100644
index 778fcf8..0000000
--- a/third_party/rust/cargo/remote/BUILD.anstyle-query-1.0.0.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "report" with type "example" omitted
-
-rust_library(
-    name = "anstyle_query",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anstyle-query",
-        "manual",
-    ],
-    version = "1.0.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anstyle-wincon-3.0.1.bazel b/third_party/rust/cargo/remote/BUILD.anstyle-wincon-3.0.1.bazel
deleted file mode 100644
index 609742d..0000000
--- a/third_party/rust/cargo/remote/BUILD.anstyle-wincon-3.0.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "dump" with type "example" omitted
-
-# Unsupported target "set" with type "example" omitted
-
-rust_library(
-    name = "anstyle_wincon",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anstyle-wincon",
-        "manual",
-    ],
-    version = "3.0.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__anstyle__1_0_4//:anstyle",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anyhow-1.0.75.bazel b/third_party/rust/cargo/remote/BUILD.anyhow-1.0.75.bazel
deleted file mode 100644
index 3e2c120..0000000
--- a/third_party/rust/cargo/remote/BUILD.anyhow-1.0.75.bazel
+++ /dev/null
@@ -1,116 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "anyhow_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.75",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "anyhow",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anyhow",
-        "manual",
-    ],
-    version = "1.0.75",
-    # buildifier: leave-alone
-    deps = [
-        ":anyhow_build_script",
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test_autotrait" with type "test" omitted
-
-# Unsupported target "test_backtrace" with type "test" omitted
-
-# Unsupported target "test_boxed" with type "test" omitted
-
-# Unsupported target "test_chain" with type "test" omitted
-
-# Unsupported target "test_context" with type "test" omitted
-
-# Unsupported target "test_convert" with type "test" omitted
-
-# Unsupported target "test_downcast" with type "test" omitted
-
-# Unsupported target "test_ensure" with type "test" omitted
-
-# Unsupported target "test_ffi" with type "test" omitted
-
-# Unsupported target "test_fmt" with type "test" omitted
-
-# Unsupported target "test_macros" with type "test" omitted
-
-# Unsupported target "test_repr" with type "test" omitted
-
-# Unsupported target "test_source" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.autocfg-1.1.0.bazel b/third_party/rust/cargo/remote/BUILD.autocfg-1.1.0.bazel
deleted file mode 100644
index 6978f3a..0000000
--- a/third_party/rust/cargo/remote/BUILD.autocfg-1.1.0.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "integers" with type "example" omitted
-
-# Unsupported target "paths" with type "example" omitted
-
-# Unsupported target "traits" with type "example" omitted
-
-# Unsupported target "versions" with type "example" omitted
-
-rust_library(
-    name = "autocfg",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=autocfg",
-        "manual",
-    ],
-    version = "1.1.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "rustflags" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.backtrace-0.3.69.bazel b/third_party/rust/cargo/remote/BUILD.backtrace-0.3.69.bazel
deleted file mode 100644
index 43d0e4f..0000000
--- a/third_party/rust/cargo/remote/BUILD.backtrace-0.3.69.bazel
+++ /dev/null
@@ -1,119 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "backtrace_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.69",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__cc__1_0_83//:cc",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "benchmarks" with type "bench" omitted
-
-# Unsupported target "backtrace" with type "example" omitted
-
-# Unsupported target "raw" with type "example" omitted
-
-rust_library(
-    name = "backtrace",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=backtrace",
-        "manual",
-    ],
-    version = "0.3.69",
-    # buildifier: leave-alone
-    deps = [
-        ":backtrace_build_script",
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__rustc_demangle__0_1_23//:rustc_demangle",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__addr2line__0_21_0//:addr2line",
-            "@raze__libc__0_2_148//:libc",
-            "@raze__miniz_oxide__0_7_1//:miniz_oxide",
-            "@raze__object__0_32_1//:object",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "accuracy" with type "test" omitted
-
-# Unsupported target "concurrent-panics" with type "test" omitted
-
-# Unsupported target "current-exe-mismatch" with type "test" omitted
-
-# Unsupported target "long_fn_name" with type "test" omitted
-
-# Unsupported target "skip_inner_frames" with type "test" omitted
-
-# Unsupported target "smoke" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.base64-0.21.4.bazel b/third_party/rust/cargo/remote/BUILD.base64-0.21.4.bazel
deleted file mode 100644
index 08b3b42..0000000
--- a/third_party/rust/cargo/remote/BUILD.base64-0.21.4.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "benchmarks" with type "bench" omitted
-
-# Unsupported target "base64" with type "example" omitted
-
-rust_library(
-    name = "base64",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=base64",
-        "manual",
-    ],
-    version = "0.21.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "encode" with type "test" omitted
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.bazel b/third_party/rust/cargo/remote/BUILD.bazel
deleted file mode 100644
index b49fb68..0000000
--- a/third_party/rust/cargo/remote/BUILD.bazel
+++ /dev/null
@@ -1,17 +0,0 @@
-# Export file for Stardoc support
-exports_files(
-    glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
-
-filegroup(
-    name = "srcs",
-    srcs = glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.bitflags-1.3.2.bazel b/third_party/rust/cargo/remote/BUILD.bitflags-1.3.2.bazel
deleted file mode 100644
index fe86954..0000000
--- a/third_party/rust/cargo/remote/BUILD.bitflags-1.3.2.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "bitflags",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bitflags",
-        "manual",
-    ],
-    version = "1.3.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "basic" with type "test" omitted
-
-# Unsupported target "compile" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.bitflags-2.4.0.bazel b/third_party/rust/cargo/remote/BUILD.bitflags-2.4.0.bazel
deleted file mode 100644
index 911bced..0000000
--- a/third_party/rust/cargo/remote/BUILD.bitflags-2.4.0.bazel
+++ /dev/null
@@ -1,67 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "parse" with type "bench" omitted
-
-# Unsupported target "custom_bits_type" with type "example" omitted
-
-# Unsupported target "custom_derive" with type "example" omitted
-
-# Unsupported target "fmt" with type "example" omitted
-
-# Unsupported target "macro_free" with type "example" omitted
-
-# Unsupported target "serde" with type "example" omitted
-
-rust_library(
-    name = "bitflags",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bitflags",
-        "manual",
-    ],
-    version = "2.4.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.block-buffer-0.10.4.bazel b/third_party/rust/cargo/remote/BUILD.block-buffer-0.10.4.bazel
deleted file mode 100644
index 5a71f4f..0000000
--- a/third_party/rust/cargo/remote/BUILD.block-buffer-0.10.4.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "block_buffer",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=block-buffer",
-        "manual",
-    ],
-    version = "0.10.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__generic_array__0_14_7//:generic_array",
-    ],
-)
-
-# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.bstr-1.6.2.bazel b/third_party/rust/cargo/remote/BUILD.bstr-1.6.2.bazel
deleted file mode 100644
index b7a91f2..0000000
--- a/third_party/rust/cargo/remote/BUILD.bstr-1.6.2.bazel
+++ /dev/null
@@ -1,86 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "graphemes" with type "example" omitted
-
-# Unsupported target "graphemes-std" with type "example" omitted
-
-# Unsupported target "lines" with type "example" omitted
-
-# Unsupported target "lines-std" with type "example" omitted
-
-# Unsupported target "uppercase" with type "example" omitted
-
-# Unsupported target "uppercase-std" with type "example" omitted
-
-# Unsupported target "words" with type "example" omitted
-
-# Unsupported target "words-std" with type "example" omitted
-
-rust_library(
-    name = "bstr",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-        "unicode",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "src/unicode/fsm/grapheme_break_fwd.littleendian.dfa",
-        "src/unicode/fsm/grapheme_break_rev.littleendian.dfa",
-        "src/unicode/fsm/regional_indicator_rev.littleendian.dfa",
-        "src/unicode/fsm/sentence_break_fwd.littleendian.dfa",
-        "src/unicode/fsm/simple_word_fwd.littleendian.dfa",
-        "src/unicode/fsm/whitespace_anchored_fwd.littleendian.dfa",
-        "src/unicode/fsm/whitespace_anchored_rev.littleendian.dfa",
-        "src/unicode/fsm/word_break_fwd.littleendian.dfa",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bstr",
-        "manual",
-    ],
-    version = "1.6.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__regex_automata__0_3_9//:regex_automata",
-        "@raze__serde__1_0_188//:serde",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.bumpalo-3.14.0.bazel b/third_party/rust/cargo/remote/BUILD.bumpalo-3.14.0.bazel
deleted file mode 100644
index c503c06..0000000
--- a/third_party/rust/cargo/remote/BUILD.bumpalo-3.14.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "benches" with type "bench" omitted
-
-rust_library(
-    name = "bumpalo",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bumpalo",
-        "manual",
-    ],
-    version = "3.14.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "try_alloc" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.byteorder-1.4.3.bazel b/third_party/rust/cargo/remote/BUILD.byteorder-1.4.3.bazel
deleted file mode 100644
index 6243505..0000000
--- a/third_party/rust/cargo/remote/BUILD.byteorder-1.4.3.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "byteorder",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=byteorder",
-        "manual",
-    ],
-    version = "1.4.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.bytes-1.5.0.bazel b/third_party/rust/cargo/remote/BUILD.bytes-1.5.0.bazel
deleted file mode 100644
index 3e074c2..0000000
--- a/third_party/rust/cargo/remote/BUILD.bytes-1.5.0.bazel
+++ /dev/null
@@ -1,84 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "buf" with type "bench" omitted
-
-# Unsupported target "bytes" with type "bench" omitted
-
-# Unsupported target "bytes_mut" with type "bench" omitted
-
-rust_library(
-    name = "bytes",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bytes",
-        "manual",
-    ],
-    version = "1.5.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "test_buf" with type "test" omitted
-
-# Unsupported target "test_buf_mut" with type "test" omitted
-
-# Unsupported target "test_bytes" with type "test" omitted
-
-# Unsupported target "test_bytes_odd_alloc" with type "test" omitted
-
-# Unsupported target "test_bytes_vec_alloc" with type "test" omitted
-
-# Unsupported target "test_chain" with type "test" omitted
-
-# Unsupported target "test_debug" with type "test" omitted
-
-# Unsupported target "test_iter" with type "test" omitted
-
-# Unsupported target "test_reader" with type "test" omitted
-
-# Unsupported target "test_serde" with type "test" omitted
-
-# Unsupported target "test_take" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.cc-1.0.83.bazel b/third_party/rust/cargo/remote/BUILD.cc-1.0.83.bazel
deleted file mode 100644
index be56978..0000000
--- a/third_party/rust/cargo/remote/BUILD.cc-1.0.83.bazel
+++ /dev/null
@@ -1,101 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_gcc_shim",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/bin/gcc-shim.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=gcc-shim",
-        "manual",
-    ],
-    version = "1.0.83",
-    # buildifier: leave-alone
-    deps = [
-        ":cc",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-rust_library(
-    name = "cc",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=cc",
-        "manual",
-    ],
-    version = "1.0.83",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "cc_env" with type "test" omitted
-
-# Unsupported target "cflags" with type "test" omitted
-
-# Unsupported target "cxxflags" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.cfg-if-1.0.0.bazel b/third_party/rust/cargo/remote/BUILD.cfg-if-1.0.0.bazel
deleted file mode 100644
index a4a349b..0000000
--- a/third_party/rust/cargo/remote/BUILD.cfg-if-1.0.0.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "cfg_if",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=cfg-if",
-        "manual",
-    ],
-    version = "1.0.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "xcrate" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.chrono-0.4.31.bazel b/third_party/rust/cargo/remote/BUILD.chrono-0.4.31.bazel
deleted file mode 100644
index 97b63f5..0000000
--- a/third_party/rust/cargo/remote/BUILD.chrono-0.4.31.bazel
+++ /dev/null
@@ -1,76 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "chrono",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "android-tzdata",
-        "clock",
-        "iana-time-zone",
-        "std",
-        "winapi",
-        "windows-targets",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=chrono",
-        "manual",
-    ],
-    version = "0.4.31",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__num_traits__0_2_16//:num_traits",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__iana_time_zone__0_1_57//:iana_time_zone",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "dateutils" with type "test" omitted
-
-# Unsupported target "wasm" with type "test" omitted
-
-# Unsupported target "win_bindings" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.clap-4.4.6.bazel b/third_party/rust/cargo/remote/BUILD.clap-4.4.6.bazel
deleted file mode 100644
index 58fba39..0000000
--- a/third_party/rust/cargo/remote/BUILD.clap-4.4.6.bazel
+++ /dev/null
@@ -1,215 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_stdio_fixture",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "cargo",
-        "color",
-        "default",
-        "error-context",
-        "help",
-        "std",
-        "suggestions",
-        "usage",
-        "wrap_help",
-    ],
-    crate_root = "src/bin/stdio-fixture.rs",
-    data = [] + [
-        "README.md",
-        "examples/demo.md",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=stdio-fixture",
-        "manual",
-    ],
-    version = "4.4.6",
-    # buildifier: leave-alone
-    deps = [
-        ":clap",
-        "@raze__clap_builder__4_4_6//:clap_builder",
-    ],
-)
-
-# Unsupported target "01_quick" with type "example" omitted
-
-# Unsupported target "01_quick_derive" with type "example" omitted
-
-# Unsupported target "02_app_settings" with type "example" omitted
-
-# Unsupported target "02_app_settings_derive" with type "example" omitted
-
-# Unsupported target "02_apps" with type "example" omitted
-
-# Unsupported target "02_apps_derive" with type "example" omitted
-
-# Unsupported target "02_crate" with type "example" omitted
-
-# Unsupported target "02_crate_derive" with type "example" omitted
-
-# Unsupported target "03_01_flag_bool" with type "example" omitted
-
-# Unsupported target "03_01_flag_bool_derive" with type "example" omitted
-
-# Unsupported target "03_01_flag_count" with type "example" omitted
-
-# Unsupported target "03_01_flag_count_derive" with type "example" omitted
-
-# Unsupported target "03_02_option" with type "example" omitted
-
-# Unsupported target "03_02_option_derive" with type "example" omitted
-
-# Unsupported target "03_02_option_mult" with type "example" omitted
-
-# Unsupported target "03_02_option_mult_derive" with type "example" omitted
-
-# Unsupported target "03_03_positional" with type "example" omitted
-
-# Unsupported target "03_03_positional_derive" with type "example" omitted
-
-# Unsupported target "03_03_positional_mult" with type "example" omitted
-
-# Unsupported target "03_03_positional_mult_derive" with type "example" omitted
-
-# Unsupported target "03_04_subcommands" with type "example" omitted
-
-# Unsupported target "03_04_subcommands_alt_derive" with type "example" omitted
-
-# Unsupported target "03_04_subcommands_derive" with type "example" omitted
-
-# Unsupported target "03_05_default_values" with type "example" omitted
-
-# Unsupported target "03_05_default_values_derive" with type "example" omitted
-
-# Unsupported target "04_01_enum" with type "example" omitted
-
-# Unsupported target "04_01_enum_derive" with type "example" omitted
-
-# Unsupported target "04_01_possible" with type "example" omitted
-
-# Unsupported target "04_02_parse" with type "example" omitted
-
-# Unsupported target "04_02_parse_derive" with type "example" omitted
-
-# Unsupported target "04_02_validate" with type "example" omitted
-
-# Unsupported target "04_02_validate_derive" with type "example" omitted
-
-# Unsupported target "04_03_relations" with type "example" omitted
-
-# Unsupported target "04_03_relations_derive" with type "example" omitted
-
-# Unsupported target "04_04_custom" with type "example" omitted
-
-# Unsupported target "04_04_custom_derive" with type "example" omitted
-
-# Unsupported target "05_01_assert" with type "example" omitted
-
-# Unsupported target "05_01_assert_derive" with type "example" omitted
-
-# Unsupported target "busybox" with type "example" omitted
-
-# Unsupported target "cargo-example" with type "example" omitted
-
-# Unsupported target "cargo-example-derive" with type "example" omitted
-
-# Unsupported target "demo" with type "example" omitted
-
-# Unsupported target "escaped-positional" with type "example" omitted
-
-# Unsupported target "escaped-positional-derive" with type "example" omitted
-
-# Unsupported target "find" with type "example" omitted
-
-# Unsupported target "git" with type "example" omitted
-
-# Unsupported target "git-derive" with type "example" omitted
-
-# Unsupported target "hostname" with type "example" omitted
-
-# Unsupported target "interop_augment_args" with type "example" omitted
-
-# Unsupported target "interop_augment_subcommands" with type "example" omitted
-
-# Unsupported target "interop_flatten_hand_args" with type "example" omitted
-
-# Unsupported target "interop_hand_subcommand" with type "example" omitted
-
-# Unsupported target "pacman" with type "example" omitted
-
-# Unsupported target "repl" with type "example" omitted
-
-# Unsupported target "typed-derive" with type "example" omitted
-
-rust_library(
-    name = "clap",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "cargo",
-        "color",
-        "default",
-        "error-context",
-        "help",
-        "std",
-        "suggestions",
-        "usage",
-        "wrap_help",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "README.md",
-        "examples/demo.md",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=clap",
-        "manual",
-    ],
-    version = "4.4.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__clap_builder__4_4_6//:clap_builder",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.clap_builder-4.4.6.bazel b/third_party/rust/cargo/remote/BUILD.clap_builder-4.4.6.bazel
deleted file mode 100644
index 0d8f5fb..0000000
--- a/third_party/rust/cargo/remote/BUILD.clap_builder-4.4.6.bazel
+++ /dev/null
@@ -1,69 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "clap_builder",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "cargo",
-        "color",
-        "error-context",
-        "help",
-        "std",
-        "suggestions",
-        "usage",
-        "wrap_help",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "README.md",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=clap_builder",
-        "manual",
-    ],
-    version = "4.4.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__anstream__0_6_4//:anstream",
-        "@raze__anstyle__1_0_4//:anstyle",
-        "@raze__clap_lex__0_5_1//:clap_lex",
-        "@raze__strsim__0_10_0//:strsim",
-        "@raze__terminal_size__0_3_0//:terminal_size",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.clap_complete-4.4.3.bazel b/third_party/rust/cargo/remote/BUILD.clap_complete-4.4.3.bazel
deleted file mode 100644
index 7fc5621..0000000
--- a/third_party/rust/cargo/remote/BUILD.clap_complete-4.4.3.bazel
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "completion" with type "example" omitted
-
-# Unsupported target "completion-derive" with type "example" omitted
-
-# Unsupported target "dynamic" with type "example" omitted
-
-# Unsupported target "exhaustive" with type "example" omitted
-
-rust_library(
-    name = "clap_complete",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "README.md",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=clap_complete",
-        "manual",
-    ],
-    version = "4.4.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__clap__4_4_6//:clap",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.clap_lex-0.5.1.bazel b/third_party/rust/cargo/remote/BUILD.clap_lex-0.5.1.bazel
deleted file mode 100644
index 1785be4..0000000
--- a/third_party/rust/cargo/remote/BUILD.clap_lex-0.5.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "clap_lex",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=clap_lex",
-        "manual",
-    ],
-    version = "0.5.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.colorchoice-1.0.0.bazel b/third_party/rust/cargo/remote/BUILD.colorchoice-1.0.0.bazel
deleted file mode 100644
index e7a1220..0000000
--- a/third_party/rust/cargo/remote/BUILD.colorchoice-1.0.0.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "colorchoice",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=colorchoice",
-        "manual",
-    ],
-    version = "1.0.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.core-foundation-sys-0.8.4.bazel b/third_party/rust/cargo/remote/BUILD.core-foundation-sys-0.8.4.bazel
deleted file mode 100644
index 71ecd04..0000000
--- a/third_party/rust/cargo/remote/BUILD.core-foundation-sys-0.8.4.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "core_foundation_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=core-foundation-sys",
-        "manual",
-    ],
-    version = "0.8.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.cpufeatures-0.2.9.bazel b/third_party/rust/cargo/remote/BUILD.cpufeatures-0.2.9.bazel
deleted file mode 100644
index 927277d..0000000
--- a/third_party/rust/cargo/remote/BUILD.cpufeatures-0.2.9.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "cpufeatures",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=cpufeatures",
-        "manual",
-    ],
-    version = "0.2.9",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "aarch64" with type "test" omitted
-
-# Unsupported target "x86" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.crossbeam-channel-0.5.8.bazel b/third_party/rust/cargo/remote/BUILD.crossbeam-channel-0.5.8.bazel
deleted file mode 100644
index 28747c6..0000000
--- a/third_party/rust/cargo/remote/BUILD.crossbeam-channel-0.5.8.bazel
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "crossbeam" with type "bench" omitted
-
-# Unsupported target "fibonacci" with type "example" omitted
-
-# Unsupported target "matching" with type "example" omitted
-
-# Unsupported target "stopwatch" with type "example" omitted
-
-rust_library(
-    name = "crossbeam_channel",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "crossbeam-utils",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=crossbeam-channel",
-        "manual",
-    ],
-    version = "0.5.8",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__crossbeam_utils__0_8_16//:crossbeam_utils",
-    ],
-)
-
-# Unsupported target "after" with type "test" omitted
-
-# Unsupported target "array" with type "test" omitted
-
-# Unsupported target "golang" with type "test" omitted
-
-# Unsupported target "iter" with type "test" omitted
-
-# Unsupported target "list" with type "test" omitted
-
-# Unsupported target "mpsc" with type "test" omitted
-
-# Unsupported target "never" with type "test" omitted
-
-# Unsupported target "ready" with type "test" omitted
-
-# Unsupported target "same_channel" with type "test" omitted
-
-# Unsupported target "select" with type "test" omitted
-
-# Unsupported target "select_macro" with type "test" omitted
-
-# Unsupported target "thread_locals" with type "test" omitted
-
-# Unsupported target "tick" with type "test" omitted
-
-# Unsupported target "zero" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.crossbeam-utils-0.8.16.bazel b/third_party/rust/cargo/remote/BUILD.crossbeam-utils-0.8.16.bazel
deleted file mode 100644
index bb5ed73..0000000
--- a/third_party/rust/cargo/remote/BUILD.crossbeam-utils-0.8.16.bazel
+++ /dev/null
@@ -1,101 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "crossbeam_utils_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.8.16",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "atomic_cell" with type "bench" omitted
-
-rust_library(
-    name = "crossbeam_utils",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=crossbeam-utils",
-        "manual",
-    ],
-    version = "0.8.16",
-    # buildifier: leave-alone
-    deps = [
-        ":crossbeam_utils_build_script",
-        "@raze__cfg_if__1_0_0//:cfg_if",
-    ],
-)
-
-# Unsupported target "atomic_cell" with type "test" omitted
-
-# Unsupported target "cache_padded" with type "test" omitted
-
-# Unsupported target "parker" with type "test" omitted
-
-# Unsupported target "sharded_lock" with type "test" omitted
-
-# Unsupported target "thread" with type "test" omitted
-
-# Unsupported target "wait_group" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.crypto-common-0.1.6.bazel b/third_party/rust/cargo/remote/BUILD.crypto-common-0.1.6.bazel
deleted file mode 100644
index 9cf7013..0000000
--- a/third_party/rust/cargo/remote/BUILD.crypto-common-0.1.6.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "crypto_common",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=crypto-common",
-        "manual",
-    ],
-    version = "0.1.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__generic_array__0_14_7//:generic_array",
-        "@raze__typenum__1_17_0//:typenum",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.data-encoding-2.4.0.bazel b/third_party/rust/cargo/remote/BUILD.data-encoding-2.4.0.bazel
deleted file mode 100644
index 17948d2..0000000
--- a/third_party/rust/cargo/remote/BUILD.data-encoding-2.4.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "data_encoding",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=data-encoding",
-        "manual",
-    ],
-    version = "2.4.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.digest-0.10.7.bazel b/third_party/rust/cargo/remote/BUILD.digest-0.10.7.bazel
deleted file mode 100644
index 61110e6..0000000
--- a/third_party/rust/cargo/remote/BUILD.digest-0.10.7.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "digest",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "block-buffer",
-        "core-api",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=digest",
-        "manual",
-    ],
-    version = "0.10.7",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__block_buffer__0_10_4//:block_buffer",
-        "@raze__crypto_common__0_1_6//:crypto_common",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.9.0.bazel b/third_party/rust/cargo/remote/BUILD.either-1.9.0.bazel
deleted file mode 100644
index e55cd88..0000000
--- a/third_party/rust/cargo/remote/BUILD.either-1.9.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "either",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "use_std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=either",
-        "manual",
-    ],
-    version = "1.9.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-3.0.2.bazel b/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-3.0.2.bazel
deleted file mode 100644
index ade0c01..0000000
--- a/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-3.0.2.bazel
+++ /dev/null
@@ -1,75 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "export_json" with type "example" omitted
-
-alias(
-    name = "elasticlunr_rs",
-    actual = ":elasticlunr",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-rust_library(
-    name = "elasticlunr",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__serde_derive__1_0_188//:serde_derive",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=elasticlunr",
-        "manual",
-    ],
-    version = "3.0.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__regex__1_9_6//:regex",
-        "@raze__serde__1_0_188//:serde",
-        "@raze__serde_json__1_0_107//:serde_json",
-    ],
-)
-
-# Unsupported target "test-index" with type "test" omitted
-
-# Unsupported target "test-pipeline" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.env_logger-0.10.0.bazel b/third_party/rust/cargo/remote/BUILD.env_logger-0.10.0.bazel
deleted file mode 100644
index 48a85fc..0000000
--- a/third_party/rust/cargo/remote/BUILD.env_logger-0.10.0.bazel
+++ /dev/null
@@ -1,88 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "custom_default_format" with type "example" omitted
-
-# Unsupported target "custom_format" with type "example" omitted
-
-# Unsupported target "custom_logger" with type "example" omitted
-
-# Unsupported target "default" with type "example" omitted
-
-# Unsupported target "direct_logger" with type "example" omitted
-
-# Unsupported target "filters_from_code" with type "example" omitted
-
-# Unsupported target "in_tests" with type "example" omitted
-
-# Unsupported target "syslog_friendly_format" with type "example" omitted
-
-rust_library(
-    name = "env_logger",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "auto-color",
-        "color",
-        "default",
-        "humantime",
-        "regex",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=env_logger",
-        "manual",
-    ],
-    version = "0.10.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__humantime__2_1_0//:humantime",
-        "@raze__is_terminal__0_4_9//:is_terminal",
-        "@raze__log__0_4_20//:log",
-        "@raze__regex__1_9_6//:regex",
-        "@raze__termcolor__1_3_0//:termcolor",
-    ],
-)
-
-# Unsupported target "init-twice-retains-filter" with type "test" omitted
-
-# Unsupported target "log-in-log" with type "test" omitted
-
-# Unsupported target "log_tls_dtors" with type "test" omitted
-
-# Unsupported target "regexp_filter" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.equivalent-1.0.1.bazel b/third_party/rust/cargo/remote/BUILD.equivalent-1.0.1.bazel
deleted file mode 100644
index ee03919..0000000
--- a/third_party/rust/cargo/remote/BUILD.equivalent-1.0.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "equivalent",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=equivalent",
-        "manual",
-    ],
-    version = "1.0.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.errno-0.3.4.bazel b/third_party/rust/cargo/remote/BUILD.errno-0.3.4.bazel
deleted file mode 100644
index 25206b2..0000000
--- a/third_party/rust/cargo/remote/BUILD.errno-0.3.4.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "errno",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=errno",
-        "manual",
-    ],
-    version = "0.3.4",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.errno-dragonfly-0.1.2.bazel b/third_party/rust/cargo/remote/BUILD.errno-dragonfly-0.1.2.bazel
deleted file mode 100644
index a387026..0000000
--- a/third_party/rust/cargo/remote/BUILD.errno-dragonfly-0.1.2.bazel
+++ /dev/null
@@ -1,82 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "errno_dragonfly_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.2",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__cc__1_0_83//:cc",
-    ],
-)
-
-rust_library(
-    name = "errno_dragonfly",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=errno-dragonfly",
-        "manual",
-    ],
-    version = "0.1.2",
-    # buildifier: leave-alone
-    deps = [
-        ":errno_dragonfly_build_script",
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.fastrand-2.0.1.bazel b/third_party/rust/cargo/remote/BUILD.fastrand-2.0.1.bazel
deleted file mode 100644
index 3f9528c..0000000
--- a/third_party/rust/cargo/remote/BUILD.fastrand-2.0.1.bazel
+++ /dev/null
@@ -1,63 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "fastrand",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=fastrand",
-        "manual",
-    ],
-    version = "2.0.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "char" with type "test" omitted
-
-# Unsupported target "smoke" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.filetime-0.2.22.bazel b/third_party/rust/cargo/remote/BUILD.filetime-0.2.22.bazel
deleted file mode 100644
index fb7cfad..0000000
--- a/third_party/rust/cargo/remote/BUILD.filetime-0.2.22.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "filetime",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=filetime",
-        "manual",
-    ],
-    version = "0.2.22",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.fixedbitset-0.4.2.bazel b/third_party/rust/cargo/remote/BUILD.fixedbitset-0.4.2.bazel
deleted file mode 100644
index b8cdb29..0000000
--- a/third_party/rust/cargo/remote/BUILD.fixedbitset-0.4.2.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "benches" with type "bench" omitted
-
-rust_library(
-    name = "fixedbitset",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=fixedbitset",
-        "manual",
-    ],
-    version = "0.4.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.fnv-1.0.7.bazel b/third_party/rust/cargo/remote/BUILD.fnv-1.0.7.bazel
deleted file mode 100644
index 2a6b565..0000000
--- a/third_party/rust/cargo/remote/BUILD.fnv-1.0.7.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "fnv",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=fnv",
-        "manual",
-    ],
-    version = "1.0.7",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.2.0.bazel b/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.2.0.bazel
deleted file mode 100644
index 780f77b..0000000
--- a/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.2.0.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "form_urlencoded",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=form_urlencoded",
-        "manual",
-    ],
-    version = "1.2.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__percent_encoding__2_3_0//:percent_encoding",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.fsevent-sys-4.1.0.bazel b/third_party/rust/cargo/remote/BUILD.fsevent-sys-4.1.0.bazel
deleted file mode 100644
index a50d69a..0000000
--- a/third_party/rust/cargo/remote/BUILD.fsevent-sys-4.1.0.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "fsevent_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=fsevent-sys",
-        "manual",
-    ],
-    version = "4.1.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futf-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.futf-0.1.5.bazel
deleted file mode 100644
index 42cf632..0000000
--- a/third_party/rust/cargo/remote/BUILD.futf-0.1.5.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "futf",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futf",
-        "manual",
-    ],
-    version = "0.1.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__mac__0_1_1//:mac",
-        "@raze__new_debug_unreachable__1_0_4//:new_debug_unreachable",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.28.bazel b/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.28.bazel
deleted file mode 100644
index aed3808..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.28.bazel
+++ /dev/null
@@ -1,108 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "futures_channel_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "alloc",
-        "default",
-        "futures-sink",
-        "sink",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.28",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "sync_mpsc" with type "bench" omitted
-
-rust_library(
-    name = "futures_channel",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "futures-sink",
-        "sink",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futures-channel",
-        "manual",
-    ],
-    version = "0.3.28",
-    # buildifier: leave-alone
-    deps = [
-        ":futures_channel_build_script",
-        "@raze__futures_core__0_3_28//:futures_core",
-        "@raze__futures_sink__0_3_28//:futures_sink",
-    ],
-)
-
-# Unsupported target "channel" with type "test" omitted
-
-# Unsupported target "mpsc" with type "test" omitted
-
-# Unsupported target "mpsc-close" with type "test" omitted
-
-# Unsupported target "mpsc-size_hint" with type "test" omitted
-
-# Unsupported target "oneshot" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.futures-core-0.3.28.bazel b/third_party/rust/cargo/remote/BUILD.futures-core-0.3.28.bazel
deleted file mode 100644
index dcd4db8..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-core-0.3.28.bazel
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "futures_core_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.28",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "futures_core",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futures-core",
-        "manual",
-    ],
-    version = "0.3.28",
-    # buildifier: leave-alone
-    deps = [
-        ":futures_core_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.28.bazel b/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.28.bazel
deleted file mode 100644
index 5b9295c..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.28.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "futures_macro",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futures-macro",
-        "manual",
-    ],
-    version = "0.3.28",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.28.bazel b/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.28.bazel
deleted file mode 100644
index 98a491a..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.28.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "futures_sink",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futures-sink",
-        "manual",
-    ],
-    version = "0.3.28",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.28.bazel b/third_party/rust/cargo/remote/BUILD.futures-task-0.3.28.bazel
deleted file mode 100644
index 09744d5..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.28.bazel
+++ /dev/null
@@ -1,88 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "futures_task_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "alloc",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.28",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "futures_task",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futures-task",
-        "manual",
-    ],
-    version = "0.3.28",
-    # buildifier: leave-alone
-    deps = [
-        ":futures_task_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-util-0.3.28.bazel b/third_party/rust/cargo/remote/BUILD.futures-util-0.3.28.bazel
deleted file mode 100644
index ca9e340..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-util-0.3.28.bazel
+++ /dev/null
@@ -1,119 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "futures_util_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "alloc",
-        "async-await",
-        "async-await-macro",
-        "default",
-        "futures-macro",
-        "futures-sink",
-        "sink",
-        "slab",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.28",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "bilock" with type "bench" omitted
-
-# Unsupported target "flatten_unordered" with type "bench" omitted
-
-# Unsupported target "futures_unordered" with type "bench" omitted
-
-# Unsupported target "select" with type "bench" omitted
-
-rust_library(
-    name = "futures_util",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "async-await",
-        "async-await-macro",
-        "default",
-        "futures-macro",
-        "futures-sink",
-        "sink",
-        "slab",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__futures_macro__0_3_28//:futures_macro",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=futures-util",
-        "manual",
-    ],
-    version = "0.3.28",
-    # buildifier: leave-alone
-    deps = [
-        ":futures_util_build_script",
-        "@raze__futures_core__0_3_28//:futures_core",
-        "@raze__futures_sink__0_3_28//:futures_sink",
-        "@raze__futures_task__0_3_28//:futures_task",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-        "@raze__pin_utils__0_1_0//:pin_utils",
-        "@raze__slab__0_4_9//:slab",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.generic-array-0.14.7.bazel b/third_party/rust/cargo/remote/BUILD.generic-array-0.14.7.bazel
deleted file mode 100644
index 337fa79..0000000
--- a/third_party/rust/cargo/remote/BUILD.generic-array-0.14.7.bazel
+++ /dev/null
@@ -1,88 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "generic_array_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "more_lengths",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.14.7",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__version_check__0_9_4//:version_check",
-    ],
-)
-
-rust_library(
-    name = "generic_array",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "more_lengths",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=generic_array",
-        "manual",
-    ],
-    version = "0.14.7",
-    # buildifier: leave-alone
-    deps = [
-        ":generic_array_build_script",
-        "@raze__typenum__1_17_0//:typenum",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.10.bazel b/third_party/rust/cargo/remote/BUILD.getrandom-0.2.10.bazel
deleted file mode 100644
index cd30cfe..0000000
--- a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.10.bazel
+++ /dev/null
@@ -1,73 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "buffer" with type "bench" omitted
-
-rust_library(
-    name = "getrandom",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=getrandom",
-        "manual",
-    ],
-    version = "0.2.10",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "custom" with type "test" omitted
-
-# Unsupported target "normal" with type "test" omitted
-
-# Unsupported target "rdrand" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.gimli-0.28.0.bazel b/third_party/rust/cargo/remote/BUILD.gimli-0.28.0.bazel
deleted file mode 100644
index b945f9b..0000000
--- a/third_party/rust/cargo/remote/BUILD.gimli-0.28.0.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "gimli",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=gimli",
-        "manual",
-    ],
-    version = "0.28.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.globset-0.4.13.bazel b/third_party/rust/cargo/remote/BUILD.globset-0.4.13.bazel
deleted file mode 100644
index b28bbab..0000000
--- a/third_party/rust/cargo/remote/BUILD.globset-0.4.13.bazel
+++ /dev/null
@@ -1,63 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "globset",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "log",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=globset",
-        "manual",
-    ],
-    version = "0.4.13",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__aho_corasick__1_1_1//:aho_corasick",
-        "@raze__bstr__1_6_2//:bstr",
-        "@raze__fnv__1_0_7//:fnv",
-        "@raze__log__0_4_20//:log",
-        "@raze__regex__1_9_6//:regex",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.h2-0.3.21.bazel b/third_party/rust/cargo/remote/BUILD.h2-0.3.21.bazel
deleted file mode 100644
index 409b4f8..0000000
--- a/third_party/rust/cargo/remote/BUILD.h2-0.3.21.bazel
+++ /dev/null
@@ -1,69 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "akamai" with type "example" omitted
-
-# Unsupported target "client" with type "example" omitted
-
-# Unsupported target "server" with type "example" omitted
-
-rust_library(
-    name = "h2",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=h2",
-        "manual",
-    ],
-    version = "0.3.21",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__fnv__1_0_7//:fnv",
-        "@raze__futures_core__0_3_28//:futures_core",
-        "@raze__futures_sink__0_3_28//:futures_sink",
-        "@raze__futures_util__0_3_28//:futures_util",
-        "@raze__http__0_2_9//:http",
-        "@raze__indexmap__1_9_3//:indexmap",
-        "@raze__slab__0_4_9//:slab",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__tokio_util__0_7_9//:tokio_util",
-        "@raze__tracing__0_1_37//:tracing",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.handlebars-4.4.0.bazel b/third_party/rust/cargo/remote/BUILD.handlebars-4.4.0.bazel
deleted file mode 100644
index b58c65a..0000000
--- a/third_party/rust/cargo/remote/BUILD.handlebars-4.4.0.bazel
+++ /dev/null
@@ -1,143 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_handlebars_cli",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/cli.rs",
-    data = [] + [
-        "src/grammar.pest",
-    ],
-    edition = "2021",
-    proc_macro_deps = [
-        "@raze__pest_derive__2_7_4//:pest_derive",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=handlebars-cli",
-        "manual",
-    ],
-    version = "4.4.0",
-    # buildifier: leave-alone
-    deps = [
-        ":handlebars",
-        "@raze__log__0_4_20//:log",
-        "@raze__pest__2_7_4//:pest",
-        "@raze__serde__1_0_188//:serde",
-        "@raze__serde_json__1_0_107//:serde_json",
-        "@raze__thiserror__1_0_49//:thiserror",
-    ],
-)
-
-# Unsupported target "decorator" with type "example" omitted
-
-# Unsupported target "dev_mode" with type "example" omitted
-
-# Unsupported target "error" with type "example" omitted
-
-# Unsupported target "helper_macro" with type "example" omitted
-
-# Unsupported target "partials" with type "example" omitted
-
-# Unsupported target "quick" with type "example" omitted
-
-# Unsupported target "render" with type "example" omitted
-
-# Unsupported target "render_file" with type "example" omitted
-
-# Unsupported target "script" with type "example" omitted
-
-rust_library(
-    name = "handlebars",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "src/grammar.pest",
-    ],
-    edition = "2021",
-    proc_macro_deps = [
-        "@raze__pest_derive__2_7_4//:pest_derive",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=handlebars",
-        "manual",
-    ],
-    version = "4.4.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__log__0_4_20//:log",
-        "@raze__pest__2_7_4//:pest",
-        "@raze__serde__1_0_188//:serde",
-        "@raze__serde_json__1_0_107//:serde_json",
-        "@raze__thiserror__1_0_49//:thiserror",
-    ],
-)
-
-# Unsupported target "block_context" with type "test" omitted
-
-# Unsupported target "data_helper" with type "test" omitted
-
-# Unsupported target "embed" with type "test" omitted
-
-# Unsupported target "escape" with type "test" omitted
-
-# Unsupported target "helper_function_lifetime" with type "test" omitted
-
-# Unsupported target "helper_macro" with type "test" omitted
-
-# Unsupported target "helper_with_space" with type "test" omitted
-
-# Unsupported target "root_var" with type "test" omitted
-
-# Unsupported target "subexpression" with type "test" omitted
-
-# Unsupported target "template_names" with type "test" omitted
-
-# Unsupported target "whitespace" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.hashbrown-0.12.3.bazel b/third_party/rust/cargo/remote/BUILD.hashbrown-0.12.3.bazel
deleted file mode 100644
index 815af60..0000000
--- a/third_party/rust/cargo/remote/BUILD.hashbrown-0.12.3.bazel
+++ /dev/null
@@ -1,67 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "insert_unique_unchecked" with type "bench" omitted
-
-rust_library(
-    name = "hashbrown",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "raw",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=hashbrown",
-        "manual",
-    ],
-    version = "0.12.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "hasher" with type "test" omitted
-
-# Unsupported target "rayon" with type "test" omitted
-
-# Unsupported target "serde" with type "test" omitted
-
-# Unsupported target "set" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.hashbrown-0.14.1.bazel b/third_party/rust/cargo/remote/BUILD.hashbrown-0.14.1.bazel
deleted file mode 100644
index 75baad6..0000000
--- a/third_party/rust/cargo/remote/BUILD.hashbrown-0.14.1.bazel
+++ /dev/null
@@ -1,71 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "insert_unique_unchecked" with type "bench" omitted
-
-rust_library(
-    name = "hashbrown",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "raw",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=hashbrown",
-        "manual",
-    ],
-    version = "0.14.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "equivalent_trait" with type "test" omitted
-
-# Unsupported target "hasher" with type "test" omitted
-
-# Unsupported target "raw" with type "test" omitted
-
-# Unsupported target "rayon" with type "test" omitted
-
-# Unsupported target "serde" with type "test" omitted
-
-# Unsupported target "set" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.headers-0.3.9.bazel b/third_party/rust/cargo/remote/BUILD.headers-0.3.9.bazel
deleted file mode 100644
index 9668263..0000000
--- a/third_party/rust/cargo/remote/BUILD.headers-0.3.9.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "headers",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=headers",
-        "manual",
-    ],
-    version = "0.3.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__base64__0_21_4//:base64",
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__headers_core__0_2_0//:headers_core",
-        "@raze__http__0_2_9//:http",
-        "@raze__httpdate__1_0_3//:httpdate",
-        "@raze__mime__0_3_17//:mime",
-        "@raze__sha1__0_10_6//:sha1",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.headers-core-0.2.0.bazel b/third_party/rust/cargo/remote/BUILD.headers-core-0.2.0.bazel
deleted file mode 100644
index 5a8e6b4..0000000
--- a/third_party/rust/cargo/remote/BUILD.headers-core-0.2.0.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "headers_core",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=headers-core",
-        "manual",
-    ],
-    version = "0.2.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__http__0_2_9//:http",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.heck-0.4.1.bazel b/third_party/rust/cargo/remote/BUILD.heck-0.4.1.bazel
deleted file mode 100644
index 39ce562..0000000
--- a/third_party/rust/cargo/remote/BUILD.heck-0.4.1.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "heck",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=heck",
-        "manual",
-    ],
-    version = "0.4.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.hermit-abi-0.3.3.bazel b/third_party/rust/cargo/remote/BUILD.hermit-abi-0.3.3.bazel
deleted file mode 100644
index eaeb791..0000000
--- a/third_party/rust/cargo/remote/BUILD.hermit-abi-0.3.3.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "hermit_abi",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=hermit-abi",
-        "manual",
-    ],
-    version = "0.3.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.home-0.5.5.bazel b/third_party/rust/cargo/remote/BUILD.home-0.5.5.bazel
deleted file mode 100644
index 1d0b533..0000000
--- a/third_party/rust/cargo/remote/BUILD.home-0.5.5.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "home",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=home",
-        "manual",
-    ],
-    version = "0.5.5",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.html5ever-0.26.0.bazel b/third_party/rust/cargo/remote/BUILD.html5ever-0.26.0.bazel
deleted file mode 100644
index 010c720..0000000
--- a/third_party/rust/cargo/remote/BUILD.html5ever-0.26.0.bazel
+++ /dev/null
@@ -1,98 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "html5ever_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.26.0",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__1_0_109//:syn",
-    ],
-)
-
-# Unsupported target "html5ever" with type "bench" omitted
-
-# Unsupported target "arena" with type "example" omitted
-
-# Unsupported target "noop-tokenize" with type "example" omitted
-
-# Unsupported target "noop-tree-builder" with type "example" omitted
-
-# Unsupported target "print-tree-actions" with type "example" omitted
-
-# Unsupported target "tokenize" with type "example" omitted
-
-rust_library(
-    name = "html5ever",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=html5ever",
-        "manual",
-    ],
-    version = "0.26.0",
-    # buildifier: leave-alone
-    deps = [
-        ":html5ever_build_script",
-        "@raze__log__0_4_20//:log",
-        "@raze__mac__0_1_1//:mac",
-        "@raze__markup5ever__0_11_0//:markup5ever",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.http-0.2.9.bazel b/third_party/rust/cargo/remote/BUILD.http-0.2.9.bazel
deleted file mode 100644
index 0710c54..0000000
--- a/third_party/rust/cargo/remote/BUILD.http-0.2.9.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "http",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=http",
-        "manual",
-    ],
-    version = "0.2.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__fnv__1_0_7//:fnv",
-        "@raze__itoa__1_0_9//:itoa",
-    ],
-)
-
-# Unsupported target "header_map" with type "test" omitted
-
-# Unsupported target "header_map_fuzz" with type "test" omitted
-
-# Unsupported target "status_code" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.http-body-0.4.5.bazel b/third_party/rust/cargo/remote/BUILD.http-body-0.4.5.bazel
deleted file mode 100644
index 0dbfb78..0000000
--- a/third_party/rust/cargo/remote/BUILD.http-body-0.4.5.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "http_body",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=http-body",
-        "manual",
-    ],
-    version = "0.4.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__http__0_2_9//:http",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-    ],
-)
-
-# Unsupported target "is_end_stream" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.httparse-1.8.0.bazel b/third_party/rust/cargo/remote/BUILD.httparse-1.8.0.bazel
deleted file mode 100644
index e83a484..0000000
--- a/third_party/rust/cargo/remote/BUILD.httparse-1.8.0.bazel
+++ /dev/null
@@ -1,92 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "httparse_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.8.0",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "parse" with type "bench" omitted
-
-rust_library(
-    name = "httparse",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=httparse",
-        "manual",
-    ],
-    version = "1.8.0",
-    # buildifier: leave-alone
-    deps = [
-        ":httparse_build_script",
-    ],
-)
-
-# Unsupported target "uri" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.httpdate-1.0.3.bazel b/third_party/rust/cargo/remote/BUILD.httpdate-1.0.3.bazel
deleted file mode 100644
index 7ef7c39..0000000
--- a/third_party/rust/cargo/remote/BUILD.httpdate-1.0.3.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "benchmarks" with type "bench" omitted
-
-rust_library(
-    name = "httpdate",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=httpdate",
-        "manual",
-    ],
-    version = "1.0.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.humantime-2.1.0.bazel b/third_party/rust/cargo/remote/BUILD.humantime-2.1.0.bazel
deleted file mode 100644
index 082290d..0000000
--- a/third_party/rust/cargo/remote/BUILD.humantime-2.1.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "datetime_format" with type "bench" omitted
-
-# Unsupported target "datetime_parse" with type "bench" omitted
-
-rust_library(
-    name = "humantime",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=humantime",
-        "manual",
-    ],
-    version = "2.1.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.hyper-0.14.27.bazel b/third_party/rust/cargo/remote/BUILD.hyper-0.14.27.bazel
deleted file mode 100644
index c676782..0000000
--- a/third_party/rust/cargo/remote/BUILD.hyper-0.14.27.bazel
+++ /dev/null
@@ -1,127 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "body" with type "bench" omitted
-
-# Unsupported target "connect" with type "bench" omitted
-
-# Unsupported target "end_to_end" with type "bench" omitted
-
-# Unsupported target "pipeline" with type "bench" omitted
-
-# Unsupported target "server" with type "bench" omitted
-
-# Unsupported target "client" with type "example" omitted
-
-# Unsupported target "client_json" with type "example" omitted
-
-# Unsupported target "echo" with type "example" omitted
-
-# Unsupported target "gateway" with type "example" omitted
-
-# Unsupported target "hello" with type "example" omitted
-
-# Unsupported target "http_proxy" with type "example" omitted
-
-# Unsupported target "multi_server" with type "example" omitted
-
-# Unsupported target "params" with type "example" omitted
-
-# Unsupported target "send_file" with type "example" omitted
-
-# Unsupported target "service_struct_impl" with type "example" omitted
-
-# Unsupported target "single_threaded" with type "example" omitted
-
-# Unsupported target "state" with type "example" omitted
-
-# Unsupported target "tower_client" with type "example" omitted
-
-# Unsupported target "tower_server" with type "example" omitted
-
-# Unsupported target "upgrades" with type "example" omitted
-
-# Unsupported target "web_api" with type "example" omitted
-
-rust_library(
-    name = "hyper",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "client",
-        "default",
-        "h2",
-        "http1",
-        "http2",
-        "server",
-        "socket2",
-        "stream",
-        "tcp",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=hyper",
-        "manual",
-    ],
-    version = "0.14.27",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__futures_channel__0_3_28//:futures_channel",
-        "@raze__futures_core__0_3_28//:futures_core",
-        "@raze__futures_util__0_3_28//:futures_util",
-        "@raze__h2__0_3_21//:h2",
-        "@raze__http__0_2_9//:http",
-        "@raze__http_body__0_4_5//:http_body",
-        "@raze__httparse__1_8_0//:httparse",
-        "@raze__httpdate__1_0_3//:httpdate",
-        "@raze__itoa__1_0_9//:itoa",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-        "@raze__socket2__0_4_9//:socket2",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__tower_service__0_3_2//:tower_service",
-        "@raze__tracing__0_1_37//:tracing",
-        "@raze__want__0_3_1//:want",
-    ],
-)
-
-# Unsupported target "client" with type "test" omitted
-
-# Unsupported target "integration" with type "test" omitted
-
-# Unsupported target "server" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.iana-time-zone-0.1.57.bazel b/third_party/rust/cargo/remote/BUILD.iana-time-zone-0.1.57.bazel
deleted file mode 100644
index b3adf19..0000000
--- a/third_party/rust/cargo/remote/BUILD.iana-time-zone-0.1.57.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "get_timezone" with type "example" omitted
-
-# Unsupported target "stress-test" with type "example" omitted
-
-rust_library(
-    name = "iana_time_zone",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "fallback",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=iana-time-zone",
-        "manual",
-    ],
-    version = "0.1.57",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.iana-time-zone-haiku-0.1.2.bazel b/third_party/rust/cargo/remote/BUILD.iana-time-zone-haiku-0.1.2.bazel
deleted file mode 100644
index d3f75c6..0000000
--- a/third_party/rust/cargo/remote/BUILD.iana-time-zone-haiku-0.1.2.bazel
+++ /dev/null
@@ -1,81 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "iana_time_zone_haiku_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.2",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__cc__1_0_83//:cc",
-    ],
-)
-
-rust_library(
-    name = "iana_time_zone_haiku",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=iana-time-zone-haiku",
-        "manual",
-    ],
-    version = "0.1.2",
-    # buildifier: leave-alone
-    deps = [
-        ":iana_time_zone_haiku_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.idna-0.4.0.bazel b/third_party/rust/cargo/remote/BUILD.idna-0.4.0.bazel
deleted file mode 100644
index 889428a..0000000
--- a/third_party/rust/cargo/remote/BUILD.idna-0.4.0.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "all" with type "bench" omitted
-
-rust_library(
-    name = "idna",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=idna",
-        "manual",
-    ],
-    version = "0.4.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__unicode_bidi__0_3_13//:unicode_bidi",
-        "@raze__unicode_normalization__0_1_22//:unicode_normalization",
-    ],
-)
-
-# Unsupported target "tests" with type "test" omitted
-
-# Unsupported target "unit" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.ignore-0.4.20.bazel b/third_party/rust/cargo/remote/BUILD.ignore-0.4.20.bazel
deleted file mode 100644
index 63c00f7..0000000
--- a/third_party/rust/cargo/remote/BUILD.ignore-0.4.20.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "walk" with type "example" omitted
-
-rust_library(
-    name = "ignore",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ignore",
-        "manual",
-    ],
-    version = "0.4.20",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__globset__0_4_13//:globset",
-        "@raze__lazy_static__1_4_0//:lazy_static",
-        "@raze__log__0_4_20//:log",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__regex__1_9_6//:regex",
-        "@raze__same_file__1_0_6//:same_file",
-        "@raze__thread_local__1_1_7//:thread_local",
-        "@raze__walkdir__2_4_0//:walkdir",
-    ],
-)
-
-# Unsupported target "gitignore_matched_path_or_any_parents_tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.indexmap-1.9.3.bazel b/third_party/rust/cargo/remote/BUILD.indexmap-1.9.3.bazel
deleted file mode 100644
index 8392b0f..0000000
--- a/third_party/rust/cargo/remote/BUILD.indexmap-1.9.3.bazel
+++ /dev/null
@@ -1,100 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "indexmap_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.9.3",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__autocfg__1_1_0//:autocfg",
-    ],
-)
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "faststring" with type "bench" omitted
-
-rust_library(
-    name = "indexmap",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=indexmap",
-        "manual",
-    ],
-    version = "1.9.3",
-    # buildifier: leave-alone
-    deps = [
-        ":indexmap_build_script",
-        "@raze__hashbrown__0_12_3//:hashbrown",
-    ],
-)
-
-# Unsupported target "equivalent_trait" with type "test" omitted
-
-# Unsupported target "macros_full_path" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.indexmap-2.0.2.bazel b/third_party/rust/cargo/remote/BUILD.indexmap-2.0.2.bazel
deleted file mode 100644
index c92bb0c..0000000
--- a/third_party/rust/cargo/remote/BUILD.indexmap-2.0.2.bazel
+++ /dev/null
@@ -1,70 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "faststring" with type "bench" omitted
-
-rust_library(
-    name = "indexmap",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=indexmap",
-        "manual",
-    ],
-    version = "2.0.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__equivalent__1_0_1//:equivalent",
-        "@raze__hashbrown__0_14_1//:hashbrown",
-    ],
-)
-
-# Unsupported target "equivalent_trait" with type "test" omitted
-
-# Unsupported target "macros_full_path" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.inotify-0.9.6.bazel b/third_party/rust/cargo/remote/BUILD.inotify-0.9.6.bazel
deleted file mode 100644
index c689ec0..0000000
--- a/third_party/rust/cargo/remote/BUILD.inotify-0.9.6.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # ISC from expression "ISC"
-])
-
-# Generated Targets
-
-# Unsupported target "stream" with type "example" omitted
-
-# Unsupported target "watch" with type "example" omitted
-
-rust_library(
-    name = "inotify",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=inotify",
-        "manual",
-    ],
-    version = "0.9.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bitflags__1_3_2//:bitflags",
-        "@raze__inotify_sys__0_1_5//:inotify_sys",
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
-
-# Unsupported target "main" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.inotify-sys-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.inotify-sys-0.1.5.bazel
deleted file mode 100644
index 8b093c8..0000000
--- a/third_party/rust/cargo/remote/BUILD.inotify-sys-0.1.5.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # ISC from expression "ISC"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "inotify_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=inotify-sys",
-        "manual",
-    ],
-    version = "0.1.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.is-terminal-0.4.9.bazel b/third_party/rust/cargo/remote/BUILD.is-terminal-0.4.9.bazel
deleted file mode 100644
index 7e61110..0000000
--- a/third_party/rust/cargo/remote/BUILD.is-terminal-0.4.9.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "is_terminal",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=is-terminal",
-        "manual",
-    ],
-    version = "0.4.9",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__rustix__0_38_15//:rustix",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.itertools-0.10.5.bazel b/third_party/rust/cargo/remote/BUILD.itertools-0.10.5.bazel
deleted file mode 100644
index 37b39c6..0000000
--- a/third_party/rust/cargo/remote/BUILD.itertools-0.10.5.bazel
+++ /dev/null
@@ -1,96 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench1" with type "bench" omitted
-
-# Unsupported target "combinations" with type "bench" omitted
-
-# Unsupported target "combinations_with_replacement" with type "bench" omitted
-
-# Unsupported target "fold_specialization" with type "bench" omitted
-
-# Unsupported target "powerset" with type "bench" omitted
-
-# Unsupported target "tree_fold1" with type "bench" omitted
-
-# Unsupported target "tuple_combinations" with type "bench" omitted
-
-# Unsupported target "tuples" with type "bench" omitted
-
-# Unsupported target "iris" with type "example" omitted
-
-rust_library(
-    name = "itertools",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "use_alloc",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=itertools",
-        "manual",
-    ],
-    version = "0.10.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__either__1_9_0//:either",
-    ],
-)
-
-# Unsupported target "adaptors_no_collect" with type "test" omitted
-
-# Unsupported target "flatten_ok" with type "test" omitted
-
-# Unsupported target "macros_hygiene" with type "test" omitted
-
-# Unsupported target "merge_join" with type "test" omitted
-
-# Unsupported target "peeking_take_while" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "specializations" with type "test" omitted
-
-# Unsupported target "test_core" with type "test" omitted
-
-# Unsupported target "test_std" with type "test" omitted
-
-# Unsupported target "tuples" with type "test" omitted
-
-# Unsupported target "zip" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.itoa-1.0.9.bazel b/third_party/rust/cargo/remote/BUILD.itoa-1.0.9.bazel
deleted file mode 100644
index 2f9baab..0000000
--- a/third_party/rust/cargo/remote/BUILD.itoa-1.0.9.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "itoa",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=itoa",
-        "manual",
-    ],
-    version = "1.0.9",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.js-sys-0.3.64.bazel b/third_party/rust/cargo/remote/BUILD.js-sys-0.3.64.bazel
deleted file mode 100644
index e64d17f..0000000
--- a/third_party/rust/cargo/remote/BUILD.js-sys-0.3.64.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "js_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=js-sys",
-        "manual",
-    ],
-    version = "0.3.64",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__wasm_bindgen__0_2_87//:wasm_bindgen",
-    ],
-)
-
-# Unsupported target "headless" with type "test" omitted
-
-# Unsupported target "wasm" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.kqueue-1.0.8.bazel b/third_party/rust/cargo/remote/BUILD.kqueue-1.0.8.bazel
deleted file mode 100644
index 957b94f..0000000
--- a/third_party/rust/cargo/remote/BUILD.kqueue-1.0.8.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "file" with type "example" omitted
-
-# Unsupported target "pid" with type "example" omitted
-
-rust_library(
-    name = "kqueue",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=kqueue",
-        "manual",
-    ],
-    version = "1.0.8",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__kqueue_sys__1_0_4//:kqueue_sys",
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.kqueue-sys-1.0.4.bazel b/third_party/rust/cargo/remote/BUILD.kqueue-sys-1.0.4.bazel
deleted file mode 100644
index 415b147..0000000
--- a/third_party/rust/cargo/remote/BUILD.kqueue-sys-1.0.4.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "kqueue_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=kqueue-sys",
-        "manual",
-    ],
-    version = "1.0.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bitflags__1_3_2//:bitflags",
-        "@raze__libc__0_2_148//:libc",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.lazy_static-1.4.0.bazel b/third_party/rust/cargo/remote/BUILD.lazy_static-1.4.0.bazel
deleted file mode 100644
index b00efb1..0000000
--- a/third_party/rust/cargo/remote/BUILD.lazy_static-1.4.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "lazy_static",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=lazy_static",
-        "manual",
-    ],
-    version = "1.4.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "no_std" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.libc-0.2.148.bazel b/third_party/rust/cargo/remote/BUILD.libc-0.2.148.bazel
deleted file mode 100644
index 215eb99..0000000
--- a/third_party/rust/cargo/remote/BUILD.libc-0.2.148.bazel
+++ /dev/null
@@ -1,92 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "libc_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "extra_traits",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.148",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "libc",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "extra_traits",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=libc",
-        "manual",
-    ],
-    version = "0.2.148",
-    # buildifier: leave-alone
-    deps = [
-        ":libc_build_script",
-    ],
-)
-
-# Unsupported target "const_fn" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.linux-raw-sys-0.4.8.bazel b/third_party/rust/cargo/remote/BUILD.linux-raw-sys-0.4.8.bazel
deleted file mode 100644
index 4618345..0000000
--- a/third_party/rust/cargo/remote/BUILD.linux-raw-sys-0.4.8.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR (Apache-2.0 OR MIT)"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "linux_raw_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "elf",
-        "errno",
-        "general",
-        "ioctl",
-        "no_std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=linux-raw-sys",
-        "manual",
-    ],
-    version = "0.4.8",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.lock_api-0.4.10.bazel b/third_party/rust/cargo/remote/BUILD.lock_api-0.4.10.bazel
deleted file mode 100644
index ab9c967..0000000
--- a/third_party/rust/cargo/remote/BUILD.lock_api-0.4.10.bazel
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "lock_api_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "atomic_usize",
-        "default",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.10",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__autocfg__1_1_0//:autocfg",
-    ],
-)
-
-rust_library(
-    name = "lock_api",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "atomic_usize",
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=lock_api",
-        "manual",
-    ],
-    version = "0.4.10",
-    # buildifier: leave-alone
-    deps = [
-        ":lock_api_build_script",
-        "@raze__scopeguard__1_2_0//:scopeguard",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.log-0.4.20.bazel b/third_party/rust/cargo/remote/BUILD.log-0.4.20.bazel
deleted file mode 100644
index b4ba575..0000000
--- a/third_party/rust/cargo/remote/BUILD.log-0.4.20.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "value" with type "bench" omitted
-
-rust_library(
-    name = "log",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=log",
-        "manual",
-    ],
-    version = "0.4.20",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "filters" with type "test" omitted
-
-# Unsupported target "macros" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.mac-0.1.1.bazel b/third_party/rust/cargo/remote/BUILD.mac-0.1.1.bazel
deleted file mode 100644
index c4eeeb6..0000000
--- a/third_party/rust/cargo/remote/BUILD.mac-0.1.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "mac",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=mac",
-        "manual",
-    ],
-    version = "0.1.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.maplit-1.0.2.bazel b/third_party/rust/cargo/remote/BUILD.maplit-1.0.2.bazel
deleted file mode 100644
index 4ca4e21..0000000
--- a/third_party/rust/cargo/remote/BUILD.maplit-1.0.2.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "maplit",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=maplit",
-        "manual",
-    ],
-    version = "1.0.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.markup5ever-0.11.0.bazel b/third_party/rust/cargo/remote/BUILD.markup5ever-0.11.0.bazel
deleted file mode 100644
index 84bd3b4..0000000
--- a/third_party/rust/cargo/remote/BUILD.markup5ever-0.11.0.bazel
+++ /dev/null
@@ -1,86 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "markup5ever_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.11.0",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__phf_codegen__0_10_0//:phf_codegen",
-        "@raze__string_cache_codegen__0_5_2//:string_cache_codegen",
-    ],
-)
-
-rust_library(
-    name = "markup5ever",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=markup5ever",
-        "manual",
-    ],
-    version = "0.11.0",
-    # buildifier: leave-alone
-    deps = [
-        ":markup5ever_build_script",
-        "@raze__log__0_4_20//:log",
-        "@raze__phf__0_10_1//:phf",
-        "@raze__string_cache__0_8_7//:string_cache",
-        "@raze__tendril__0_4_3//:tendril",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.mdbook-0.4.35.bazel b/third_party/rust/cargo/remote/BUILD.mdbook-0.4.35.bazel
deleted file mode 100644
index 9133f96..0000000
--- a/third_party/rust/cargo/remote/BUILD.mdbook-0.4.35.bazel
+++ /dev/null
@@ -1,255 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "reciprocal",  # MPL-2.0 from expression "MPL-2.0"
-])
-
-# Generated Targets
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_mdbook",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "search",
-        "serve",
-        "watch",
-    ],
-    crate_root = "src/main.rs",
-    data = [] + [
-        "src/theme/playground_editor/ace.js",
-        "src/theme/playground_editor/editor.js",
-        "src/theme/playground_editor/mode-rust.js",
-        "src/theme/playground_editor/theme-dawn.js",
-        "src/theme/playground_editor/theme-tomorrow_night.js",
-        "src/theme/fonts/OPEN-SANS-LICENSE.txt",
-        "src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt",
-        "src/theme/fonts/fonts.css",
-        "src/theme/fonts/open-sans-v17-all-charsets-300.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-600.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-700.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-800.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-regular.woff2",
-        "src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2",
-        "src/theme/searcher/elasticlunr.min.js",
-        "src/theme/searcher/mark.min.js",
-        "src/theme/searcher/searcher.js",
-        "src/theme/ayu-highlight.css",
-        "src/theme/book.js",
-        "src/theme/clipboard.min.js",
-        "src/theme/favicon.png",
-        "src/theme/favicon.svg",
-        "src/theme/head.hbs",
-        "src/theme/header.hbs",
-        "src/theme/highlight.css",
-        "src/theme/highlight.js",
-        "src/theme/index.hbs",
-        "src/theme/redirect.hbs",
-        "src/theme/tomorrow-night.css",
-        "src/theme/css/chrome.css",
-        "src/theme/css/general.css",
-        "src/theme/css/print.css",
-        "src/theme/css/variables.css",
-        "src/theme/FontAwesome/css/font-awesome.min.css",
-        "src/theme/FontAwesome/fonts/FontAwesome.otf",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.eot",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.svg",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.ttf",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.woff",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.woff2",
-    ],
-    edition = "2021",
-    rustc_env = {
-        "PATH": "/usr/bin",
-    },
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=mdbook",
-        "manual",
-    ],
-    version = "0.4.35",
-    # buildifier: leave-alone
-    deps = [
-        ":mdbook",
-        "@raze__ammonia__3_3_0//:ammonia",
-        "@raze__anyhow__1_0_75//:anyhow",
-        "@raze__chrono__0_4_31//:chrono",
-        "@raze__clap__4_4_6//:clap",
-        "@raze__clap_complete__4_4_3//:clap_complete",
-        "@raze__elasticlunr_rs__3_0_2//:elasticlunr_rs",
-        "@raze__env_logger__0_10_0//:env_logger",
-        "@raze__futures_util__0_3_28//:futures_util",
-        "@raze__handlebars__4_4_0//:handlebars",
-        "@raze__ignore__0_4_20//:ignore",
-        "@raze__log__0_4_20//:log",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__notify__6_1_1//:notify",
-        "@raze__notify_debouncer_mini__0_3_0//:notify_debouncer_mini",
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__opener__0_6_1//:opener",
-        "@raze__pulldown_cmark__0_9_3//:pulldown_cmark",
-        "@raze__regex__1_9_6//:regex",
-        "@raze__serde__1_0_188//:serde",
-        "@raze__serde_json__1_0_107//:serde_json",
-        "@raze__shlex__1_2_0//:shlex",
-        "@raze__tempfile__3_8_0//:tempfile",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__toml__0_5_11//:toml",
-        "@raze__topological_sort__0_2_2//:topological_sort",
-        "@raze__warp__0_3_6//:warp",
-    ],
-)
-
-# Unsupported target "nop-preprocessor" with type "example" omitted
-
-rust_library(
-    name = "mdbook",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "search",
-        "serve",
-        "watch",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "src/theme/playground_editor/ace.js",
-        "src/theme/playground_editor/editor.js",
-        "src/theme/playground_editor/mode-rust.js",
-        "src/theme/playground_editor/theme-dawn.js",
-        "src/theme/playground_editor/theme-tomorrow_night.js",
-        "src/theme/fonts/OPEN-SANS-LICENSE.txt",
-        "src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt",
-        "src/theme/fonts/fonts.css",
-        "src/theme/fonts/open-sans-v17-all-charsets-300.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-600.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-700.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-800.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-italic.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-regular.woff2",
-        "src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2",
-        "src/theme/searcher/elasticlunr.min.js",
-        "src/theme/searcher/mark.min.js",
-        "src/theme/searcher/searcher.js",
-        "src/theme/ayu-highlight.css",
-        "src/theme/book.js",
-        "src/theme/clipboard.min.js",
-        "src/theme/favicon.png",
-        "src/theme/favicon.svg",
-        "src/theme/head.hbs",
-        "src/theme/header.hbs",
-        "src/theme/highlight.css",
-        "src/theme/highlight.js",
-        "src/theme/index.hbs",
-        "src/theme/redirect.hbs",
-        "src/theme/tomorrow-night.css",
-        "src/theme/css/chrome.css",
-        "src/theme/css/general.css",
-        "src/theme/css/print.css",
-        "src/theme/css/variables.css",
-        "src/theme/FontAwesome/css/font-awesome.min.css",
-        "src/theme/FontAwesome/fonts/FontAwesome.otf",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.eot",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.svg",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.ttf",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.woff",
-        "src/theme/FontAwesome/fonts/fontawesome-webfont.woff2",
-    ],
-    edition = "2021",
-    rustc_env = {
-        "PATH": "/usr/bin",
-    },
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=mdbook",
-        "manual",
-    ],
-    version = "0.4.35",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__ammonia__3_3_0//:ammonia",
-        "@raze__anyhow__1_0_75//:anyhow",
-        "@raze__chrono__0_4_31//:chrono",
-        "@raze__clap__4_4_6//:clap",
-        "@raze__clap_complete__4_4_3//:clap_complete",
-        "@raze__elasticlunr_rs__3_0_2//:elasticlunr_rs",
-        "@raze__env_logger__0_10_0//:env_logger",
-        "@raze__futures_util__0_3_28//:futures_util",
-        "@raze__handlebars__4_4_0//:handlebars",
-        "@raze__ignore__0_4_20//:ignore",
-        "@raze__log__0_4_20//:log",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__notify__6_1_1//:notify",
-        "@raze__notify_debouncer_mini__0_3_0//:notify_debouncer_mini",
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__opener__0_6_1//:opener",
-        "@raze__pulldown_cmark__0_9_3//:pulldown_cmark",
-        "@raze__regex__1_9_6//:regex",
-        "@raze__serde__1_0_188//:serde",
-        "@raze__serde_json__1_0_107//:serde_json",
-        "@raze__shlex__1_2_0//:shlex",
-        "@raze__tempfile__3_8_0//:tempfile",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__toml__0_5_11//:toml",
-        "@raze__topological_sort__0_2_2//:topological_sort",
-        "@raze__warp__0_3_6//:warp",
-    ],
-)
-
-# Unsupported target "alternative_backends" with type "test" omitted
-
-# Unsupported target "build_process" with type "test" omitted
-
-# Unsupported target "cli_tests" with type "test" omitted
-
-# Unsupported target "custom_preprocessors" with type "test" omitted
-
-# Unsupported target "init" with type "test" omitted
-
-# Unsupported target "parse_existing_summary_files" with type "test" omitted
-
-# Unsupported target "rendered_output" with type "test" omitted
-
-# Unsupported target "testing" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.memchr-2.6.4.bazel b/third_party/rust/cargo/remote/BUILD.memchr-2.6.4.bazel
deleted file mode 100644
index 20136b0..0000000
--- a/third_party/rust/cargo/remote/BUILD.memchr-2.6.4.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "memchr",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=memchr",
-        "manual",
-    ],
-    version = "2.6.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.mime-0.3.17.bazel b/third_party/rust/cargo/remote/BUILD.mime-0.3.17.bazel
deleted file mode 100644
index f5c2a90a..0000000
--- a/third_party/rust/cargo/remote/BUILD.mime-0.3.17.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "cmp" with type "bench" omitted
-
-# Unsupported target "fmt" with type "bench" omitted
-
-# Unsupported target "parse" with type "bench" omitted
-
-rust_library(
-    name = "mime",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=mime",
-        "manual",
-    ],
-    version = "0.3.17",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.4.bazel b/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.4.bazel
deleted file mode 100644
index 5d0448e..0000000
--- a/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.4.bazel
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "mime_guess_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "rev-mappings",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "2.0.4",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__unicase__2_7_0//:unicase",
-    ],
-)
-
-# Unsupported target "benchmark" with type "bench" omitted
-
-# Unsupported target "rev_map" with type "example" omitted
-
-rust_library(
-    name = "mime_guess",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "rev-mappings",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=mime_guess",
-        "manual",
-    ],
-    version = "2.0.4",
-    # buildifier: leave-alone
-    deps = [
-        ":mime_guess_build_script",
-        "@raze__mime__0_3_17//:mime",
-        "@raze__unicase__2_7_0//:unicase",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.miniz_oxide-0.7.1.bazel b/third_party/rust/cargo/remote/BUILD.miniz_oxide-0.7.1.bazel
deleted file mode 100644
index 5fd886e..0000000
--- a/third_party/rust/cargo/remote/BUILD.miniz_oxide-0.7.1.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR (Zlib OR Apache-2.0)"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "miniz_oxide",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=miniz_oxide",
-        "manual",
-    ],
-    version = "0.7.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__adler__1_0_2//:adler",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.mio-0.8.8.bazel b/third_party/rust/cargo/remote/BUILD.mio-0.8.8.bazel
deleted file mode 100644
index e093345..0000000
--- a/third_party/rust/cargo/remote/BUILD.mio-0.8.8.bazel
+++ /dev/null
@@ -1,75 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "tcp_listenfd_server" with type "example" omitted
-
-# Unsupported target "tcp_server" with type "example" omitted
-
-# Unsupported target "udp_server" with type "example" omitted
-
-rust_library(
-    name = "mio",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "default",
-        "log",
-        "net",
-        "os-ext",
-        "os-poll",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=mio",
-        "manual",
-    ],
-    version = "0.8.8",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__log__0_4_20//:log",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.multimap-0.8.3.bazel b/third_party/rust/cargo/remote/BUILD.multimap-0.8.3.bazel
deleted file mode 100644
index fbacaa6..0000000
--- a/third_party/rust/cargo/remote/BUILD.multimap-0.8.3.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "multimap",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=multimap",
-        "manual",
-    ],
-    version = "0.8.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.new_debug_unreachable-1.0.4.bazel b/third_party/rust/cargo/remote/BUILD.new_debug_unreachable-1.0.4.bazel
deleted file mode 100644
index 15aeddb..0000000
--- a/third_party/rust/cargo/remote/BUILD.new_debug_unreachable-1.0.4.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "simple" with type "example" omitted
-
-alias(
-    name = "new_debug_unreachable",
-    actual = ":debug_unreachable",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-rust_library(
-    name = "debug_unreachable",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=debug_unreachable",
-        "manual",
-    ],
-    version = "1.0.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "check" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.normpath-1.1.1.bazel b/third_party/rust/cargo/remote/BUILD.normpath-1.1.1.bazel
deleted file mode 100644
index a70e320..0000000
--- a/third_party/rust/cargo/remote/BUILD.normpath-1.1.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "normpath",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=normpath",
-        "manual",
-    ],
-    version = "1.1.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.notify-6.1.1.bazel b/third_party/rust/cargo/remote/BUILD.notify-6.1.1.bazel
deleted file mode 100644
index 1383d7d..0000000
--- a/third_party/rust/cargo/remote/BUILD.notify-6.1.1.bazel
+++ /dev/null
@@ -1,73 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # CC0-1.0 from expression "CC0-1.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "notify",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "crossbeam-channel",
-        "default",
-        "fsevent-sys",
-        "macos_fsevent",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=notify",
-        "manual",
-    ],
-    version = "6.1.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__crossbeam_channel__0_5_8//:crossbeam_channel",
-        "@raze__filetime__0_2_22//:filetime",
-        "@raze__libc__0_2_148//:libc",
-        "@raze__log__0_4_20//:log",
-        "@raze__walkdir__2_4_0//:walkdir",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__inotify__0_9_6//:inotify",
-            "@raze__mio__0_8_8//:mio",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.notify-debouncer-mini-0.3.0.bazel b/third_party/rust/cargo/remote/BUILD.notify-debouncer-mini-0.3.0.bazel
deleted file mode 100644
index 3b8054c..0000000
--- a/third_party/rust/cargo/remote/BUILD.notify-debouncer-mini-0.3.0.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # CC0-1.0 from expression "CC0-1.0 OR Artistic-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "notify_debouncer_mini",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "crossbeam",
-        "crossbeam-channel",
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=notify_debouncer_mini",
-        "manual",
-    ],
-    version = "0.3.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__crossbeam_channel__0_5_8//:crossbeam_channel",
-        "@raze__notify__6_1_1//:notify",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.num-traits-0.2.16.bazel b/third_party/rust/cargo/remote/BUILD.num-traits-0.2.16.bazel
deleted file mode 100644
index b21cf3b..0000000
--- a/third_party/rust/cargo/remote/BUILD.num-traits-0.2.16.bazel
+++ /dev/null
@@ -1,83 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "num_traits_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.16",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__autocfg__1_1_0//:autocfg",
-    ],
-)
-
-rust_library(
-    name = "num_traits",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=num-traits",
-        "manual",
-    ],
-    version = "0.2.16",
-    # buildifier: leave-alone
-    deps = [
-        ":num_traits_build_script",
-    ],
-)
-
-# Unsupported target "cast" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.num_cpus-1.16.0.bazel b/third_party/rust/cargo/remote/BUILD.num_cpus-1.16.0.bazel
deleted file mode 100644
index d92379f..0000000
--- a/third_party/rust/cargo/remote/BUILD.num_cpus-1.16.0.bazel
+++ /dev/null
@@ -1,63 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "values" with type "example" omitted
-
-rust_library(
-    name = "num_cpus",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=num_cpus",
-        "manual",
-    ],
-    version = "1.16.0",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.object-0.32.1.bazel b/third_party/rust/cargo/remote/BUILD.object-0.32.1.bazel
deleted file mode 100644
index 59242ae..0000000
--- a/third_party/rust/cargo/remote/BUILD.object-0.32.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "object",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=object",
-        "manual",
-    ],
-    version = "0.32.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__memchr__2_6_4//:memchr",
-    ],
-)
-
-# Unsupported target "integration" with type "test" omitted
-
-# Unsupported target "parse_self" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.once_cell-1.18.0.bazel b/third_party/rust/cargo/remote/BUILD.once_cell-1.18.0.bazel
deleted file mode 100644
index 957cd6e..0000000
--- a/third_party/rust/cargo/remote/BUILD.once_cell-1.18.0.bazel
+++ /dev/null
@@ -1,72 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "example" omitted
-
-# Unsupported target "bench_acquire" with type "example" omitted
-
-# Unsupported target "lazy_static" with type "example" omitted
-
-# Unsupported target "reentrant_init_deadlocks" with type "example" omitted
-
-# Unsupported target "regex" with type "example" omitted
-
-# Unsupported target "test_synchronization" with type "example" omitted
-
-rust_library(
-    name = "once_cell",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "race",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=once_cell",
-        "manual",
-    ],
-    version = "1.18.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "it" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.opener-0.6.1.bazel b/third_party/rust/cargo/remote/BUILD.opener-0.6.1.bazel
deleted file mode 100644
index 3824c6f..0000000
--- a/third_party/rust/cargo/remote/BUILD.opener-0.6.1.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "opener",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "src/xdg-open",
-    ],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=opener",
-        "manual",
-    ],
-    version = "0.6.1",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__bstr__1_6_2//:bstr",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.parking_lot-0.12.1.bazel b/third_party/rust/cargo/remote/BUILD.parking_lot-0.12.1.bazel
deleted file mode 100644
index 01d9011..0000000
--- a/third_party/rust/cargo/remote/BUILD.parking_lot-0.12.1.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "parking_lot",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=parking_lot",
-        "manual",
-    ],
-    version = "0.12.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__lock_api__0_4_10//:lock_api",
-        "@raze__parking_lot_core__0_9_8//:parking_lot_core",
-    ],
-)
-
-# Unsupported target "issue_203" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.parking_lot_core-0.9.8.bazel b/third_party/rust/cargo/remote/BUILD.parking_lot_core-0.9.8.bazel
deleted file mode 100644
index b04a127..0000000
--- a/third_party/rust/cargo/remote/BUILD.parking_lot_core-0.9.8.bazel
+++ /dev/null
@@ -1,97 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "parking_lot_core_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.9.8",
-    visibility = ["//visibility:private"],
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-rust_library(
-    name = "parking_lot_core",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=parking_lot_core",
-        "manual",
-    ],
-    version = "0.9.8",
-    # buildifier: leave-alone
-    deps = [
-        ":parking_lot_core_build_script",
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__smallvec__1_11_1//:smallvec",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.percent-encoding-2.3.0.bazel b/third_party/rust/cargo/remote/BUILD.percent-encoding-2.3.0.bazel
deleted file mode 100644
index 272a69e..0000000
--- a/third_party/rust/cargo/remote/BUILD.percent-encoding-2.3.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "percent_encoding",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=percent-encoding",
-        "manual",
-    ],
-    version = "2.3.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.pest-2.7.4.bazel b/third_party/rust/cargo/remote/BUILD.pest-2.7.4.bazel
deleted file mode 100644
index dd2f853..0000000
--- a/third_party/rust/cargo/remote/BUILD.pest-2.7.4.bazel
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "stack" with type "bench" omitted
-
-# Unsupported target "parens" with type "example" omitted
-
-rust_library(
-    name = "pest",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "memchr",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pest",
-        "manual",
-    ],
-    version = "2.7.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__thiserror__1_0_49//:thiserror",
-        "@raze__ucd_trie__0_1_6//:ucd_trie",
-    ],
-)
-
-# Unsupported target "calculator" with type "test" omitted
-
-# Unsupported target "json" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.pest_derive-2.7.4.bazel b/third_party/rust/cargo/remote/BUILD.pest_derive-2.7.4.bazel
deleted file mode 100644
index d6d67df..0000000
--- a/third_party/rust/cargo/remote/BUILD.pest_derive-2.7.4.bazel
+++ /dev/null
@@ -1,74 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "calc" with type "example" omitted
-
-# Unsupported target "help-menu" with type "example" omitted
-
-rust_proc_macro(
-    name = "pest_derive",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pest_derive",
-        "manual",
-    ],
-    version = "2.7.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__pest__2_7_4//:pest",
-        "@raze__pest_generator__2_7_4//:pest_generator",
-    ],
-)
-
-# Unsupported target "grammar" with type "test" omitted
-
-# Unsupported target "grammar_inline" with type "test" omitted
-
-# Unsupported target "implicit" with type "test" omitted
-
-# Unsupported target "lists" with type "test" omitted
-
-# Unsupported target "oneormore" with type "test" omitted
-
-# Unsupported target "reporting" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.pest_generator-2.7.4.bazel b/third_party/rust/cargo/remote/BUILD.pest_generator-2.7.4.bazel
deleted file mode 100644
index ca0c1cc..0000000
--- a/third_party/rust/cargo/remote/BUILD.pest_generator-2.7.4.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "pest_generator",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pest_generator",
-        "manual",
-    ],
-    version = "2.7.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__pest__2_7_4//:pest",
-        "@raze__pest_meta__2_7_4//:pest_meta",
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.pest_meta-2.7.4.bazel b/third_party/rust/cargo/remote/BUILD.pest_meta-2.7.4.bazel
deleted file mode 100644
index 4906824..0000000
--- a/third_party/rust/cargo/remote/BUILD.pest_meta-2.7.4.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "pest_meta",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pest_meta",
-        "manual",
-    ],
-    version = "2.7.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__pest__2_7_4//:pest",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.petgraph-0.6.4.bazel b/third_party/rust/cargo/remote/BUILD.petgraph-0.6.4.bazel
deleted file mode 100644
index fc04773..0000000
--- a/third_party/rust/cargo/remote/BUILD.petgraph-0.6.4.bazel
+++ /dev/null
@@ -1,100 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bellman_ford" with type "bench" omitted
-
-# Unsupported target "dijkstra" with type "bench" omitted
-
-# Unsupported target "feedback_arc_set" with type "bench" omitted
-
-# Unsupported target "floyd_warshall" with type "bench" omitted
-
-# Unsupported target "iso" with type "bench" omitted
-
-# Unsupported target "k_shortest_path" with type "bench" omitted
-
-# Unsupported target "matching" with type "bench" omitted
-
-# Unsupported target "matrix_graph" with type "bench" omitted
-
-# Unsupported target "ograph" with type "bench" omitted
-
-# Unsupported target "serialize" with type "bench" omitted
-
-# Unsupported target "stable_graph" with type "bench" omitted
-
-# Unsupported target "unionfind" with type "bench" omitted
-
-rust_library(
-    name = "petgraph",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=petgraph",
-        "manual",
-    ],
-    version = "0.6.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__fixedbitset__0_4_2//:fixedbitset",
-        "@raze__indexmap__2_0_2//:indexmap",
-    ],
-)
-
-# Unsupported target "floyd_warshall" with type "test" omitted
-
-# Unsupported target "graph" with type "test" omitted
-
-# Unsupported target "graphmap" with type "test" omitted
-
-# Unsupported target "iso" with type "test" omitted
-
-# Unsupported target "k_shortest_path" with type "test" omitted
-
-# Unsupported target "list" with type "test" omitted
-
-# Unsupported target "matching" with type "test" omitted
-
-# Unsupported target "operator" with type "test" omitted
-
-# Unsupported target "quickcheck" with type "test" omitted
-
-# Unsupported target "stable_graph" with type "test" omitted
-
-# Unsupported target "unionfind" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.phf-0.10.1.bazel b/third_party/rust/cargo/remote/BUILD.phf-0.10.1.bazel
deleted file mode 100644
index 29e1b95..0000000
--- a/third_party/rust/cargo/remote/BUILD.phf-0.10.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "phf",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=phf",
-        "manual",
-    ],
-    version = "0.10.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__phf_shared__0_10_0//:phf_shared",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.phf_codegen-0.10.0.bazel b/third_party/rust/cargo/remote/BUILD.phf_codegen-0.10.0.bazel
deleted file mode 100644
index 86cc8d6..0000000
--- a/third_party/rust/cargo/remote/BUILD.phf_codegen-0.10.0.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "phf_codegen",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=phf_codegen",
-        "manual",
-    ],
-    version = "0.10.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__phf_generator__0_10_0//:phf_generator",
-        "@raze__phf_shared__0_10_0//:phf_shared",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.phf_generator-0.10.0.bazel b/third_party/rust/cargo/remote/BUILD.phf_generator-0.10.0.bazel
deleted file mode 100644
index 31f7122..0000000
--- a/third_party/rust/cargo/remote/BUILD.phf_generator-0.10.0.bazel
+++ /dev/null
@@ -1,81 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "benches" with type "bench" omitted
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_gen_hash_test",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/bin/gen_hash_test.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=gen_hash_test",
-        "manual",
-    ],
-    version = "0.10.0",
-    # buildifier: leave-alone
-    deps = [
-        ":phf_generator",
-        "@raze__phf_shared__0_10_0//:phf_shared",
-        "@raze__rand__0_8_5//:rand",
-    ],
-)
-
-rust_library(
-    name = "phf_generator",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=phf_generator",
-        "manual",
-    ],
-    version = "0.10.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__phf_shared__0_10_0//:phf_shared",
-        "@raze__rand__0_8_5//:rand",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.phf_shared-0.10.0.bazel b/third_party/rust/cargo/remote/BUILD.phf_shared-0.10.0.bazel
deleted file mode 100644
index d6f0480..0000000
--- a/third_party/rust/cargo/remote/BUILD.phf_shared-0.10.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "phf_shared",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=phf_shared",
-        "manual",
-    ],
-    version = "0.10.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__siphasher__0_3_11//:siphasher",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-1.1.3.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-1.1.3.bazel
deleted file mode 100644
index 55682a6..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-project-1.1.3.bazel
+++ /dev/null
@@ -1,99 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "enum-default" with type "example" omitted
-
-# Unsupported target "enum-default-expanded" with type "example" omitted
-
-# Unsupported target "not_unpin" with type "example" omitted
-
-# Unsupported target "not_unpin-expanded" with type "example" omitted
-
-# Unsupported target "pinned_drop" with type "example" omitted
-
-# Unsupported target "pinned_drop-expanded" with type "example" omitted
-
-# Unsupported target "project_replace" with type "example" omitted
-
-# Unsupported target "project_replace-expanded" with type "example" omitted
-
-# Unsupported target "struct-default" with type "example" omitted
-
-# Unsupported target "struct-default-expanded" with type "example" omitted
-
-# Unsupported target "unsafe_unpin" with type "example" omitted
-
-# Unsupported target "unsafe_unpin-expanded" with type "example" omitted
-
-rust_library(
-    name = "pin_project",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    proc_macro_deps = [
-        "@raze__pin_project_internal__1_1_3//:pin_project_internal",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pin-project",
-        "manual",
-    ],
-    version = "1.1.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "cfg" with type "test" omitted
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "drop_order" with type "test" omitted
-
-# Unsupported target "expandtest" with type "test" omitted
-
-# Unsupported target "lint" with type "test" omitted
-
-# Unsupported target "pin_project" with type "test" omitted
-
-# Unsupported target "pinned_drop" with type "test" omitted
-
-# Unsupported target "proper_unpin" with type "test" omitted
-
-# Unsupported target "repr_packed" with type "test" omitted
-
-# Unsupported target "unsafe_unpin" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.1.3.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.1.3.bazel
deleted file mode 100644
index 49dc003..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.1.3.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "pin_project_internal",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pin-project-internal",
-        "manual",
-    ],
-    version = "1.1.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.13.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.13.bazel
deleted file mode 100644
index da7890a..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.13.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "pin_project_lite",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pin-project-lite",
-        "manual",
-    ],
-    version = "0.2.13",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "drop_order" with type "test" omitted
-
-# Unsupported target "expandtest" with type "test" omitted
-
-# Unsupported target "lint" with type "test" omitted
-
-# Unsupported target "proper_unpin" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.pin-utils-0.1.0.bazel b/third_party/rust/cargo/remote/BUILD.pin-utils-0.1.0.bazel
deleted file mode 100644
index 7b67e17..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-utils-0.1.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "pin_utils",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pin-utils",
-        "manual",
-    ],
-    version = "0.1.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "projection" with type "test" omitted
-
-# Unsupported target "stack_pin" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.17.bazel b/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.17.bazel
deleted file mode 100644
index d1a78e0..0000000
--- a/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.17.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "ppv_lite86",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "simd",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ppv-lite86",
-        "manual",
-    ],
-    version = "0.2.17",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.precomputed-hash-0.1.1.bazel b/third_party/rust/cargo/remote/BUILD.precomputed-hash-0.1.1.bazel
deleted file mode 100644
index b43c8ff..0000000
--- a/third_party/rust/cargo/remote/BUILD.precomputed-hash-0.1.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "precomputed_hash",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=precomputed-hash",
-        "manual",
-    ],
-    version = "0.1.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.67.bazel b/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.67.bazel
deleted file mode 100644
index 32d397e..0000000
--- a/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.67.bazel
+++ /dev/null
@@ -1,101 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "proc_macro2_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "proc-macro",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.67",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "proc_macro2",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "proc-macro",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=proc-macro2",
-        "manual",
-    ],
-    version = "1.0.67",
-    # buildifier: leave-alone
-    deps = [
-        ":proc_macro2_build_script",
-        "@raze__unicode_ident__1_0_12//:unicode_ident",
-    ],
-)
-
-# Unsupported target "comments" with type "test" omitted
-
-# Unsupported target "features" with type "test" omitted
-
-# Unsupported target "marker" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
-
-# Unsupported target "test_fmt" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.prost-0.11.9.bazel b/third_party/rust/cargo/remote/BUILD.prost-0.11.9.bazel
deleted file mode 100644
index fd3e1e5..0000000
--- a/third_party/rust/cargo/remote/BUILD.prost-0.11.9.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "varint" with type "bench" omitted
-
-rust_library(
-    name = "prost",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "prost-derive",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "README.md",
-    ],
-    edition = "2021",
-    proc_macro_deps = [
-        "@raze__prost_derive__0_11_9//:prost_derive",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost",
-        "manual",
-    ],
-    version = "0.11.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.prost-build-0.11.9.bazel b/third_party/rust/cargo/remote/BUILD.prost-build-0.11.9.bazel
deleted file mode 100644
index 35364d1..0000000
--- a/third_party/rust/cargo/remote/BUILD.prost-build-0.11.9.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "prost_build",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost-build",
-        "manual",
-    ],
-    version = "0.11.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__heck__0_4_1//:heck",
-        "@raze__itertools__0_10_5//:itertools",
-        "@raze__lazy_static__1_4_0//:lazy_static",
-        "@raze__log__0_4_20//:log",
-        "@raze__multimap__0_8_3//:multimap",
-        "@raze__petgraph__0_6_4//:petgraph",
-        "@raze__prost__0_11_9//:prost",
-        "@raze__prost_types__0_11_9//:prost_types",
-        "@raze__regex__1_9_6//:regex",
-        "@raze__tempfile__3_8_0//:tempfile",
-        "@raze__which__4_4_2//:which",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.prost-derive-0.11.9.bazel b/third_party/rust/cargo/remote/BUILD.prost-derive-0.11.9.bazel
deleted file mode 100644
index a3ae210..0000000
--- a/third_party/rust/cargo/remote/BUILD.prost-derive-0.11.9.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "prost_derive",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost-derive",
-        "manual",
-    ],
-    version = "0.11.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__anyhow__1_0_75//:anyhow",
-        "@raze__itertools__0_10_5//:itertools",
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__1_0_109//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.prost-types-0.11.9.bazel b/third_party/rust/cargo/remote/BUILD.prost-types-0.11.9.bazel
deleted file mode 100644
index 6f80cd6..0000000
--- a/third_party/rust/cargo/remote/BUILD.prost-types-0.11.9.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "prost_types",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost-types",
-        "manual",
-    ],
-    version = "0.11.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__prost__0_11_9//:prost",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.protoc-gen-prost-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.protoc-gen-prost-0.2.3.bazel
deleted file mode 100644
index 0adedfb..0000000
--- a/third_party/rust/cargo/remote/BUILD.protoc-gen-prost-0.2.3.bazel
+++ /dev/null
@@ -1,89 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_protoc_gen_prost",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/main.rs",
-    data = [] + [
-        "README.md",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=protoc-gen-prost",
-        "manual",
-    ],
-    version = "0.2.3",
-    # buildifier: leave-alone
-    deps = [
-        ":protoc_gen_prost",
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__prost__0_11_9//:prost",
-        "@raze__prost_build__0_11_9//:prost_build",
-        "@raze__prost_types__0_11_9//:prost_types",
-        "@raze__regex__1_9_6//:regex",
-    ],
-)
-
-rust_library(
-    name = "protoc_gen_prost",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "README.md",
-    ],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=protoc-gen-prost",
-        "manual",
-    ],
-    version = "0.2.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__prost__0_11_9//:prost",
-        "@raze__prost_build__0_11_9//:prost_build",
-        "@raze__prost_types__0_11_9//:prost_types",
-        "@raze__regex__1_9_6//:regex",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.9.3.bazel b/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.9.3.bazel
deleted file mode 100644
index b70dd6a..0000000
--- a/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.9.3.bazel
+++ /dev/null
@@ -1,134 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "pulldown_cmark_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.9.3",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "html_rendering" with type "bench" omitted
-
-# Unsupported target "lib" with type "bench" omitted
-
-# Unsupported target "markdown-it" with type "bench" omitted
-
-rust_binary(
-    # Prefix bin name to disambiguate from (probable) collision with lib name
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_pulldown_cmark",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/main.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pulldown-cmark",
-        "manual",
-    ],
-    version = "0.9.3",
-    # buildifier: leave-alone
-    deps = [
-        ":pulldown_cmark",
-        ":pulldown_cmark_build_script",
-        "@raze__bitflags__1_3_2//:bitflags",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__unicase__2_7_0//:unicase",
-    ],
-)
-
-# Unsupported target "broken-link-callbacks" with type "example" omitted
-
-# Unsupported target "event-filter" with type "example" omitted
-
-# Unsupported target "parser-map-event-print" with type "example" omitted
-
-# Unsupported target "parser-map-tag-print" with type "example" omitted
-
-# Unsupported target "string-to-string" with type "example" omitted
-
-rust_library(
-    name = "pulldown_cmark",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=pulldown-cmark",
-        "manual",
-    ],
-    version = "0.9.3",
-    # buildifier: leave-alone
-    deps = [
-        ":pulldown_cmark_build_script",
-        "@raze__bitflags__1_3_2//:bitflags",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__unicase__2_7_0//:unicase",
-    ],
-)
-
-# Unsupported target "errors" with type "test" omitted
-
-# Unsupported target "html" with type "test" omitted
-
-# Unsupported target "lib" with type "test" omitted
-
-# Unsupported target "serde" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.quote-1.0.33.bazel b/third_party/rust/cargo/remote/BUILD.quote-1.0.33.bazel
deleted file mode 100644
index c17a81f..0000000
--- a/third_party/rust/cargo/remote/BUILD.quote-1.0.33.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "quote",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "proc-macro",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=quote",
-        "manual",
-    ],
-    version = "1.0.33",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.rand-0.8.5.bazel b/third_party/rust/cargo/remote/BUILD.rand-0.8.5.bazel
deleted file mode 100644
index 51aa506..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand-0.8.5.bazel
+++ /dev/null
@@ -1,73 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "rand",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "alloc",
-        "default",
-        "getrandom",
-        "libc",
-        "rand_chacha",
-        "small_rng",
-        "std",
-        "std_rng",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=rand",
-        "manual",
-    ],
-    version = "0.8.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__rand_chacha__0_3_1//:rand_chacha",
-        "@raze__rand_core__0_6_4//:rand_core",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rand_chacha-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.rand_chacha-0.3.1.bazel
deleted file mode 100644
index bd957c1..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_chacha-0.3.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "rand_chacha",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=rand_chacha",
-        "manual",
-    ],
-    version = "0.3.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__ppv_lite86__0_2_17//:ppv_lite86",
-        "@raze__rand_core__0_6_4//:rand_core",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rand_core-0.6.4.bazel b/third_party/rust/cargo/remote/BUILD.rand_core-0.6.4.bazel
deleted file mode 100644
index 278091c..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_core-0.6.4.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "rand_core",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "getrandom",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=rand_core",
-        "manual",
-    ],
-    version = "0.6.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__getrandom__0_2_10//:getrandom",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.redox_syscall-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.redox_syscall-0.3.5.bazel
deleted file mode 100644
index fc10c53..0000000
--- a/third_party/rust/cargo/remote/BUILD.redox_syscall-0.3.5.bazel
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-alias(
-    name = "redox_syscall",
-    actual = ":syscall",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-rust_library(
-    name = "syscall",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=syscall",
-        "manual",
-    ],
-    version = "0.3.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bitflags__1_3_2//:bitflags",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.regex-1.9.6.bazel b/third_party/rust/cargo/remote/BUILD.regex-1.9.6.bazel
deleted file mode 100644
index b47f8e3..0000000
--- a/third_party/rust/cargo/remote/BUILD.regex-1.9.6.bazel
+++ /dev/null
@@ -1,77 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "regex",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "perf",
-        "perf-backtrack",
-        "perf-cache",
-        "perf-dfa",
-        "perf-inline",
-        "perf-literal",
-        "perf-onepass",
-        "std",
-        "unicode",
-        "unicode-age",
-        "unicode-bool",
-        "unicode-case",
-        "unicode-gencat",
-        "unicode-perl",
-        "unicode-script",
-        "unicode-segment",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=regex",
-        "manual",
-    ],
-    version = "1.9.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__aho_corasick__1_1_1//:aho_corasick",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__regex_automata__0_3_9//:regex_automata",
-        "@raze__regex_syntax__0_7_5//:regex_syntax",
-    ],
-)
-
-# Unsupported target "integration" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.regex-automata-0.3.9.bazel b/third_party/rust/cargo/remote/BUILD.regex-automata-0.3.9.bazel
deleted file mode 100644
index b77a7f6..0000000
--- a/third_party/rust/cargo/remote/BUILD.regex-automata-0.3.9.bazel
+++ /dev/null
@@ -1,82 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "regex_automata",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "dfa-onepass",
-        "dfa-search",
-        "hybrid",
-        "meta",
-        "nfa-backtrack",
-        "nfa-pikevm",
-        "nfa-thompson",
-        "perf-inline",
-        "perf-literal",
-        "perf-literal-multisubstring",
-        "perf-literal-substring",
-        "std",
-        "syntax",
-        "unicode",
-        "unicode-age",
-        "unicode-bool",
-        "unicode-case",
-        "unicode-gencat",
-        "unicode-perl",
-        "unicode-script",
-        "unicode-segment",
-        "unicode-word-boundary",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=regex-automata",
-        "manual",
-    ],
-    version = "0.3.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__aho_corasick__1_1_1//:aho_corasick",
-        "@raze__memchr__2_6_4//:memchr",
-        "@raze__regex_syntax__0_7_5//:regex_syntax",
-    ],
-)
-
-# Unsupported target "integration" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.regex-syntax-0.7.5.bazel b/third_party/rust/cargo/remote/BUILD.regex-syntax-0.7.5.bazel
deleted file mode 100644
index 1f2e167..0000000
--- a/third_party/rust/cargo/remote/BUILD.regex-syntax-0.7.5.bazel
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "regex_syntax",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-        "unicode",
-        "unicode-age",
-        "unicode-bool",
-        "unicode-case",
-        "unicode-gencat",
-        "unicode-perl",
-        "unicode-script",
-        "unicode-segment",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=regex-syntax",
-        "manual",
-    ],
-    version = "0.7.5",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rustc-demangle-0.1.23.bazel b/third_party/rust/cargo/remote/BUILD.rustc-demangle-0.1.23.bazel
deleted file mode 100644
index 5cb11a9..0000000
--- a/third_party/rust/cargo/remote/BUILD.rustc-demangle-0.1.23.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "rustc_demangle",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=rustc-demangle",
-        "manual",
-    ],
-    version = "0.1.23",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rustix-0.38.15.bazel b/third_party/rust/cargo/remote/BUILD.rustix-0.38.15.bazel
deleted file mode 100644
index 0568052..0000000
--- a/third_party/rust/cargo/remote/BUILD.rustix-0.38.15.bazel
+++ /dev/null
@@ -1,118 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR (Apache-2.0 OR MIT)"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "rustix_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "alloc",
-        "default",
-        "fs",
-        "std",
-        "termios",
-        "use-libc-auxv",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.38.15",
-    visibility = ["//visibility:private"],
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__linux_raw_sys__0_4_8//:linux_raw_sys",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "mod" with type "bench" omitted
-
-rust_library(
-    name = "rustix",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-        "@raze__errno__0_3_4//:errno": "libc_errno",
-    },
-    crate_features = [
-        "alloc",
-        "default",
-        "fs",
-        "std",
-        "termios",
-        "use-libc-auxv",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=rustix",
-        "manual",
-    ],
-    version = "0.38.15",
-    # buildifier: leave-alone
-    deps = [
-        ":rustix_build_script",
-        "@raze__bitflags__2_4_0//:bitflags",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__errno__0_3_4//:errno",
-            "@raze__libc__0_2_148//:libc",
-            "@raze__linux_raw_sys__0_4_8//:linux_raw_sys",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rustls-pemfile-1.0.3.bazel b/third_party/rust/cargo/remote/BUILD.rustls-pemfile-1.0.3.bazel
deleted file mode 100644
index 4ca927c..0000000
--- a/third_party/rust/cargo/remote/BUILD.rustls-pemfile-1.0.3.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR (ISC OR MIT)"
-])
-
-# Generated Targets
-
-# Unsupported target "benchmark" with type "bench" omitted
-
-rust_library(
-    name = "rustls_pemfile",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=rustls-pemfile",
-        "manual",
-    ],
-    version = "1.0.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__base64__0_21_4//:base64",
-    ],
-)
-
-# Unsupported target "integration" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.ryu-1.0.15.bazel b/third_party/rust/cargo/remote/BUILD.ryu-1.0.15.bazel
deleted file mode 100644
index 75a6843..0000000
--- a/third_party/rust/cargo/remote/BUILD.ryu-1.0.15.bazel
+++ /dev/null
@@ -1,70 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR BSL-1.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-# Unsupported target "upstream_benchmark" with type "example" omitted
-
-rust_library(
-    name = "ryu",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ryu",
-        "manual",
-    ],
-    version = "1.0.15",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "common_test" with type "test" omitted
-
-# Unsupported target "d2s_table_test" with type "test" omitted
-
-# Unsupported target "d2s_test" with type "test" omitted
-
-# Unsupported target "exhaustive" with type "test" omitted
-
-# Unsupported target "f2s_test" with type "test" omitted
-
-# Unsupported target "s2d_test" with type "test" omitted
-
-# Unsupported target "s2f_test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.same-file-1.0.6.bazel b/third_party/rust/cargo/remote/BUILD.same-file-1.0.6.bazel
deleted file mode 100644
index 06c3e7d..0000000
--- a/third_party/rust/cargo/remote/BUILD.same-file-1.0.6.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "is_same_file" with type "example" omitted
-
-# Unsupported target "is_stderr" with type "example" omitted
-
-rust_library(
-    name = "same_file",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=same-file",
-        "manual",
-    ],
-    version = "1.0.6",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.1.bazel b/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.1.bazel
deleted file mode 100644
index 2f2fa9f..0000000
--- a/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "scoped_tls",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=scoped-tls",
-        "manual",
-    ],
-    version = "1.0.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.scopeguard-1.2.0.bazel b/third_party/rust/cargo/remote/BUILD.scopeguard-1.2.0.bazel
deleted file mode 100644
index db82076..0000000
--- a/third_party/rust/cargo/remote/BUILD.scopeguard-1.2.0.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "readme" with type "example" omitted
-
-rust_library(
-    name = "scopeguard",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=scopeguard",
-        "manual",
-    ],
-    version = "1.2.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.serde-1.0.188.bazel b/third_party/rust/cargo/remote/BUILD.serde-1.0.188.bazel
deleted file mode 100644
index 5d06b5b..0000000
--- a/third_party/rust/cargo/remote/BUILD.serde-1.0.188.bazel
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "serde_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "derive",
-        "serde_derive",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.188",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "serde",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "derive",
-        "serde_derive",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__serde_derive__1_0_188//:serde_derive",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=serde",
-        "manual",
-    ],
-    version = "1.0.188",
-    # buildifier: leave-alone
-    deps = [
-        ":serde_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.188.bazel b/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.188.bazel
deleted file mode 100644
index 85fdb99..0000000
--- a/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.188.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "serde_derive",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=serde_derive",
-        "manual",
-    ],
-    version = "1.0.188",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.serde_json-1.0.107.bazel b/third_party/rust/cargo/remote/BUILD.serde_json-1.0.107.bazel
deleted file mode 100644
index 3e29d9b..0000000
--- a/third_party/rust/cargo/remote/BUILD.serde_json-1.0.107.bazel
+++ /dev/null
@@ -1,105 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "serde_json_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.107",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "serde_json",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=serde_json",
-        "manual",
-    ],
-    version = "1.0.107",
-    # buildifier: leave-alone
-    deps = [
-        ":serde_json_build_script",
-        "@raze__itoa__1_0_9//:itoa",
-        "@raze__ryu__1_0_15//:ryu",
-        "@raze__serde__1_0_188//:serde",
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "debug" with type "test" omitted
-
-# Unsupported target "lexical" with type "test" omitted
-
-# Unsupported target "map" with type "test" omitted
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "stream" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.7.1.bazel b/third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.7.1.bazel
deleted file mode 100644
index 19168ce..0000000
--- a/third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.7.1.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "serde_urlencoded",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=serde_urlencoded",
-        "manual",
-    ],
-    version = "0.7.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__form_urlencoded__1_2_0//:form_urlencoded",
-        "@raze__itoa__1_0_9//:itoa",
-        "@raze__ryu__1_0_15//:ryu",
-        "@raze__serde__1_0_188//:serde",
-    ],
-)
-
-# Unsupported target "test_deserialize" with type "test" omitted
-
-# Unsupported target "test_serialize" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.sha1-0.10.6.bazel b/third_party/rust/cargo/remote/BUILD.sha1-0.10.6.bazel
deleted file mode 100644
index d48fc8e..0000000
--- a/third_party/rust/cargo/remote/BUILD.sha1-0.10.6.bazel
+++ /dev/null
@@ -1,71 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "mod" with type "bench" omitted
-
-rust_library(
-    name = "sha1",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=sha1",
-        "manual",
-    ],
-    version = "0.10.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__digest__0_10_7//:digest",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__cpufeatures__0_2_9//:cpufeatures",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.sha2-0.10.8.bazel b/third_party/rust/cargo/remote/BUILD.sha2-0.10.8.bazel
deleted file mode 100644
index ca0179e..0000000
--- a/third_party/rust/cargo/remote/BUILD.sha2-0.10.8.bazel
+++ /dev/null
@@ -1,67 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "mod" with type "bench" omitted
-
-rust_library(
-    name = "sha2",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=sha2",
-        "manual",
-    ],
-    version = "0.10.8",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__digest__0_10_7//:digest",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__cpufeatures__0_2_9//:cpufeatures",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.shlex-1.2.0.bazel b/third_party/rust/cargo/remote/BUILD.shlex-1.2.0.bazel
deleted file mode 100644
index 84bc9e2..0000000
--- a/third_party/rust/cargo/remote/BUILD.shlex-1.2.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "shlex",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=shlex",
-        "manual",
-    ],
-    version = "1.2.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.11.bazel b/third_party/rust/cargo/remote/BUILD.siphasher-0.3.11.bazel
deleted file mode 100644
index 8cf754d..0000000
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.11.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "siphasher",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=siphasher",
-        "manual",
-    ],
-    version = "0.3.11",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.slab-0.4.9.bazel b/third_party/rust/cargo/remote/BUILD.slab-0.4.9.bazel
deleted file mode 100644
index 8b65bc8..0000000
--- a/third_party/rust/cargo/remote/BUILD.slab-0.4.9.bazel
+++ /dev/null
@@ -1,93 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "slab_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.9",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__autocfg__1_1_0//:autocfg",
-    ],
-)
-
-rust_library(
-    name = "slab",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=slab",
-        "manual",
-    ],
-    version = "0.4.9",
-    # buildifier: leave-alone
-    deps = [
-        ":slab_build_script",
-    ],
-)
-
-# Unsupported target "serde" with type "test" omitted
-
-# Unsupported target "slab" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.smallvec-1.11.1.bazel b/third_party/rust/cargo/remote/BUILD.smallvec-1.11.1.bazel
deleted file mode 100644
index 6528ed7..0000000
--- a/third_party/rust/cargo/remote/BUILD.smallvec-1.11.1.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "smallvec",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=smallvec",
-        "manual",
-    ],
-    version = "1.11.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "debugger_visualizer" with type "test" omitted
-
-# Unsupported target "macro" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.socket2-0.4.9.bazel b/third_party/rust/cargo/remote/BUILD.socket2-0.4.9.bazel
deleted file mode 100644
index de74a62..0000000
--- a/third_party/rust/cargo/remote/BUILD.socket2-0.4.9.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "socket2",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "all",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=socket2",
-        "manual",
-    ],
-    version = "0.4.9",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.socket2-0.5.4.bazel b/third_party/rust/cargo/remote/BUILD.socket2-0.5.4.bazel
deleted file mode 100644
index af42a0d..0000000
--- a/third_party/rust/cargo/remote/BUILD.socket2-0.5.4.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "socket2",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "all",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=socket2",
-        "manual",
-    ],
-    version = "0.5.4",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.string_cache-0.8.7.bazel b/third_party/rust/cargo/remote/BUILD.string_cache-0.8.7.bazel
deleted file mode 100644
index 00cffb3..0000000
--- a/third_party/rust/cargo/remote/BUILD.string_cache-0.8.7.bazel
+++ /dev/null
@@ -1,67 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "simple" with type "example" omitted
-
-rust_library(
-    name = "string_cache",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "serde",
-        "serde_support",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=string_cache",
-        "manual",
-    ],
-    version = "0.8.7",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__new_debug_unreachable__1_0_4//:new_debug_unreachable",
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__parking_lot__0_12_1//:parking_lot",
-        "@raze__phf_shared__0_10_0//:phf_shared",
-        "@raze__precomputed_hash__0_1_1//:precomputed_hash",
-        "@raze__serde__1_0_188//:serde",
-    ],
-)
-
-# Unsupported target "small-stack" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.2.bazel b/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.2.bazel
deleted file mode 100644
index cd5482a..0000000
--- a/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.2.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "string_cache_codegen",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=string_cache_codegen",
-        "manual",
-    ],
-    version = "0.5.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__phf_generator__0_10_0//:phf_generator",
-        "@raze__phf_shared__0_10_0//:phf_shared",
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.strsim-0.10.0.bazel b/third_party/rust/cargo/remote/BUILD.strsim-0.10.0.bazel
deleted file mode 100644
index 60749c8..0000000
--- a/third_party/rust/cargo/remote/BUILD.strsim-0.10.0.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "benches" with type "bench" omitted
-
-rust_library(
-    name = "strsim",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=strsim",
-        "manual",
-    ],
-    version = "0.10.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "lib" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.syn-1.0.109.bazel b/third_party/rust/cargo/remote/BUILD.syn-1.0.109.bazel
deleted file mode 100644
index c51dc71..0000000
--- a/third_party/rust/cargo/remote/BUILD.syn-1.0.109.bazel
+++ /dev/null
@@ -1,165 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "syn_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "clone-impls",
-        "default",
-        "derive",
-        "extra-traits",
-        "fold",
-        "full",
-        "parsing",
-        "printing",
-        "proc-macro",
-        "quote",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.109",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "file" with type "bench" omitted
-
-# Unsupported target "rust" with type "bench" omitted
-
-rust_library(
-    name = "syn",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "clone-impls",
-        "default",
-        "derive",
-        "extra-traits",
-        "fold",
-        "full",
-        "parsing",
-        "printing",
-        "proc-macro",
-        "quote",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=syn",
-        "manual",
-    ],
-    version = "1.0.109",
-    # buildifier: leave-alone
-    deps = [
-        ":syn_build_script",
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__unicode_ident__1_0_12//:unicode_ident",
-    ],
-)
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "test_asyncness" with type "test" omitted
-
-# Unsupported target "test_attribute" with type "test" omitted
-
-# Unsupported target "test_derive_input" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_grouping" with type "test" omitted
-
-# Unsupported target "test_ident" with type "test" omitted
-
-# Unsupported target "test_item" with type "test" omitted
-
-# Unsupported target "test_iterators" with type "test" omitted
-
-# Unsupported target "test_lit" with type "test" omitted
-
-# Unsupported target "test_meta" with type "test" omitted
-
-# Unsupported target "test_parse_buffer" with type "test" omitted
-
-# Unsupported target "test_parse_stream" with type "test" omitted
-
-# Unsupported target "test_pat" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_precedence" with type "test" omitted
-
-# Unsupported target "test_receiver" with type "test" omitted
-
-# Unsupported target "test_round_trip" with type "test" omitted
-
-# Unsupported target "test_shebang" with type "test" omitted
-
-# Unsupported target "test_should_parse" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
-
-# Unsupported target "test_stmt" with type "test" omitted
-
-# Unsupported target "test_token_trees" with type "test" omitted
-
-# Unsupported target "test_ty" with type "test" omitted
-
-# Unsupported target "test_visibility" with type "test" omitted
-
-# Unsupported target "zzz_stable" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.syn-2.0.37.bazel b/third_party/rust/cargo/remote/BUILD.syn-2.0.37.bazel
deleted file mode 100644
index 5cf9c62..0000000
--- a/third_party/rust/cargo/remote/BUILD.syn-2.0.37.bazel
+++ /dev/null
@@ -1,125 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "file" with type "bench" omitted
-
-# Unsupported target "rust" with type "bench" omitted
-
-rust_library(
-    name = "syn",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "clone-impls",
-        "default",
-        "derive",
-        "full",
-        "parsing",
-        "printing",
-        "proc-macro",
-        "quote",
-        "visit",
-        "visit-mut",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=syn",
-        "manual",
-    ],
-    version = "2.0.37",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__unicode_ident__1_0_12//:unicode_ident",
-    ],
-)
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "test_asyncness" with type "test" omitted
-
-# Unsupported target "test_attribute" with type "test" omitted
-
-# Unsupported target "test_derive_input" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_grouping" with type "test" omitted
-
-# Unsupported target "test_ident" with type "test" omitted
-
-# Unsupported target "test_item" with type "test" omitted
-
-# Unsupported target "test_iterators" with type "test" omitted
-
-# Unsupported target "test_lit" with type "test" omitted
-
-# Unsupported target "test_meta" with type "test" omitted
-
-# Unsupported target "test_parse_buffer" with type "test" omitted
-
-# Unsupported target "test_parse_stream" with type "test" omitted
-
-# Unsupported target "test_pat" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_precedence" with type "test" omitted
-
-# Unsupported target "test_receiver" with type "test" omitted
-
-# Unsupported target "test_round_trip" with type "test" omitted
-
-# Unsupported target "test_shebang" with type "test" omitted
-
-# Unsupported target "test_should_parse" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
-
-# Unsupported target "test_stmt" with type "test" omitted
-
-# Unsupported target "test_token_trees" with type "test" omitted
-
-# Unsupported target "test_ty" with type "test" omitted
-
-# Unsupported target "test_visibility" with type "test" omitted
-
-# Unsupported target "zzz_stable" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tempfile-3.8.0.bazel b/third_party/rust/cargo/remote/BUILD.tempfile-3.8.0.bazel
deleted file mode 100644
index c18f22b..0000000
--- a/third_party/rust/cargo/remote/BUILD.tempfile-3.8.0.bazel
+++ /dev/null
@@ -1,71 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tempfile",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tempfile",
-        "manual",
-    ],
-    version = "3.8.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__fastrand__2_0_1//:fastrand",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__rustix__0_38_15//:rustix",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "namedtempfile" with type "test" omitted
-
-# Unsupported target "spooled" with type "test" omitted
-
-# Unsupported target "tempdir" with type "test" omitted
-
-# Unsupported target "tempfile" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tendril-0.4.3.bazel b/third_party/rust/cargo/remote/BUILD.tendril-0.4.3.bazel
deleted file mode 100644
index 16bcb67..0000000
--- a/third_party/rust/cargo/remote/BUILD.tendril-0.4.3.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "fuzz" with type "example" omitted
-
-rust_library(
-    name = "tendril",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tendril",
-        "manual",
-    ],
-    version = "0.4.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__futf__0_1_5//:futf",
-        "@raze__mac__0_1_1//:mac",
-        "@raze__utf_8__0_7_6//:utf_8",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.termcolor-1.3.0.bazel b/third_party/rust/cargo/remote/BUILD.termcolor-1.3.0.bazel
deleted file mode 100644
index a7d4539..0000000
--- a/third_party/rust/cargo/remote/BUILD.termcolor-1.3.0.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "termcolor",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=termcolor",
-        "manual",
-    ],
-    version = "1.3.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.terminal_size-0.3.0.bazel b/third_party/rust/cargo/remote/BUILD.terminal_size-0.3.0.bazel
deleted file mode 100644
index d36a996..0000000
--- a/third_party/rust/cargo/remote/BUILD.terminal_size-0.3.0.bazel
+++ /dev/null
@@ -1,63 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "get_size" with type "example" omitted
-
-rust_library(
-    name = "terminal_size",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=terminal_size",
-        "manual",
-    ],
-    version = "0.3.0",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__rustix__0_38_15//:rustix",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.thiserror-1.0.49.bazel b/third_party/rust/cargo/remote/BUILD.thiserror-1.0.49.bazel
deleted file mode 100644
index e679e93..0000000
--- a/third_party/rust/cargo/remote/BUILD.thiserror-1.0.49.bazel
+++ /dev/null
@@ -1,109 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "thiserror_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.49",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "thiserror",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    proc_macro_deps = [
-        "@raze__thiserror_impl__1_0_49//:thiserror_impl",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=thiserror",
-        "manual",
-    ],
-    version = "1.0.49",
-    # buildifier: leave-alone
-    deps = [
-        ":thiserror_build_script",
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test_backtrace" with type "test" omitted
-
-# Unsupported target "test_deprecated" with type "test" omitted
-
-# Unsupported target "test_display" with type "test" omitted
-
-# Unsupported target "test_error" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_from" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_lints" with type "test" omitted
-
-# Unsupported target "test_option" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_source" with type "test" omitted
-
-# Unsupported target "test_transparent" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.thiserror-impl-1.0.49.bazel b/third_party/rust/cargo/remote/BUILD.thiserror-impl-1.0.49.bazel
deleted file mode 100644
index bc1a448..0000000
--- a/third_party/rust/cargo/remote/BUILD.thiserror-impl-1.0.49.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "thiserror_impl",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=thiserror-impl",
-        "manual",
-    ],
-    version = "1.0.49",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.thread_local-1.1.7.bazel b/third_party/rust/cargo/remote/BUILD.thread_local-1.1.7.bazel
deleted file mode 100644
index 70dfd35..0000000
--- a/third_party/rust/cargo/remote/BUILD.thread_local-1.1.7.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "thread_local" with type "bench" omitted
-
-rust_library(
-    name = "thread_local",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=thread_local",
-        "manual",
-    ],
-    version = "1.1.7",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__once_cell__1_18_0//:once_cell",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tinyvec-1.6.0.bazel b/third_party/rust/cargo/remote/BUILD.tinyvec-1.6.0.bazel
deleted file mode 100644
index ac71a67..0000000
--- a/third_party/rust/cargo/remote/BUILD.tinyvec-1.6.0.bazel
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Zlib from expression "Zlib OR (Apache-2.0 OR MIT)"
-])
-
-# Generated Targets
-
-# Unsupported target "macros" with type "bench" omitted
-
-# Unsupported target "smallvec" with type "bench" omitted
-
-rust_library(
-    name = "tinyvec",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "tinyvec_macros",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tinyvec",
-        "manual",
-    ],
-    version = "1.6.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__tinyvec_macros__0_1_1//:tinyvec_macros",
-    ],
-)
-
-# Unsupported target "arrayvec" with type "test" omitted
-
-# Unsupported target "tinyvec" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.1.bazel b/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.1.bazel
deleted file mode 100644
index 989edab..0000000
--- a/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR (Apache-2.0 OR Zlib)"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tinyvec_macros",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tinyvec_macros",
-        "manual",
-    ],
-    version = "0.1.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-1.32.0.bazel b/third_party/rust/cargo/remote/BUILD.tokio-1.32.0.bazel
deleted file mode 100644
index 7ac9d0b..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-1.32.0.bazel
+++ /dev/null
@@ -1,357 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tokio",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "bytes",
-        "default",
-        "fs",
-        "io-util",
-        "libc",
-        "macros",
-        "mio",
-        "net",
-        "num_cpus",
-        "rt",
-        "rt-multi-thread",
-        "socket2",
-        "sync",
-        "time",
-        "tokio-macros",
-        "windows-sys",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    proc_macro_deps = [
-        "@raze__tokio_macros__2_1_0//:tokio_macros",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tokio",
-        "manual",
-    ],
-    version = "1.32.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__mio__0_8_8//:mio",
-        "@raze__num_cpus__1_16_0//:num_cpus",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__socket2__0_5_4//:socket2",
-        ],
-        "//conditions:default": [],
-    }) + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_148//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "_require_full" with type "test" omitted
-
-# Unsupported target "async_send_sync" with type "test" omitted
-
-# Unsupported target "buffered" with type "test" omitted
-
-# Unsupported target "dump" with type "test" omitted
-
-# Unsupported target "fs" with type "test" omitted
-
-# Unsupported target "fs_canonicalize_dir" with type "test" omitted
-
-# Unsupported target "fs_copy" with type "test" omitted
-
-# Unsupported target "fs_dir" with type "test" omitted
-
-# Unsupported target "fs_file" with type "test" omitted
-
-# Unsupported target "fs_link" with type "test" omitted
-
-# Unsupported target "fs_open_options" with type "test" omitted
-
-# Unsupported target "fs_open_options_windows" with type "test" omitted
-
-# Unsupported target "fs_remove_dir_all" with type "test" omitted
-
-# Unsupported target "fs_remove_file" with type "test" omitted
-
-# Unsupported target "fs_rename" with type "test" omitted
-
-# Unsupported target "fs_symlink_dir_windows" with type "test" omitted
-
-# Unsupported target "fs_symlink_file_windows" with type "test" omitted
-
-# Unsupported target "fs_try_exists" with type "test" omitted
-
-# Unsupported target "io_async_fd" with type "test" omitted
-
-# Unsupported target "io_async_read" with type "test" omitted
-
-# Unsupported target "io_buf_reader" with type "test" omitted
-
-# Unsupported target "io_buf_writer" with type "test" omitted
-
-# Unsupported target "io_chain" with type "test" omitted
-
-# Unsupported target "io_copy" with type "test" omitted
-
-# Unsupported target "io_copy_bidirectional" with type "test" omitted
-
-# Unsupported target "io_driver" with type "test" omitted
-
-# Unsupported target "io_driver_drop" with type "test" omitted
-
-# Unsupported target "io_fill_buf" with type "test" omitted
-
-# Unsupported target "io_lines" with type "test" omitted
-
-# Unsupported target "io_mem_stream" with type "test" omitted
-
-# Unsupported target "io_panic" with type "test" omitted
-
-# Unsupported target "io_poll_aio" with type "test" omitted
-
-# Unsupported target "io_read" with type "test" omitted
-
-# Unsupported target "io_read_buf" with type "test" omitted
-
-# Unsupported target "io_read_exact" with type "test" omitted
-
-# Unsupported target "io_read_line" with type "test" omitted
-
-# Unsupported target "io_read_to_end" with type "test" omitted
-
-# Unsupported target "io_read_to_string" with type "test" omitted
-
-# Unsupported target "io_read_until" with type "test" omitted
-
-# Unsupported target "io_split" with type "test" omitted
-
-# Unsupported target "io_take" with type "test" omitted
-
-# Unsupported target "io_util_empty" with type "test" omitted
-
-# Unsupported target "io_write" with type "test" omitted
-
-# Unsupported target "io_write_all" with type "test" omitted
-
-# Unsupported target "io_write_all_buf" with type "test" omitted
-
-# Unsupported target "io_write_buf" with type "test" omitted
-
-# Unsupported target "io_write_int" with type "test" omitted
-
-# Unsupported target "join_handle_panic" with type "test" omitted
-
-# Unsupported target "macros_join" with type "test" omitted
-
-# Unsupported target "macros_pin" with type "test" omitted
-
-# Unsupported target "macros_rename_test" with type "test" omitted
-
-# Unsupported target "macros_select" with type "test" omitted
-
-# Unsupported target "macros_test" with type "test" omitted
-
-# Unsupported target "macros_try_join" with type "test" omitted
-
-# Unsupported target "net_bind_resource" with type "test" omitted
-
-# Unsupported target "net_lookup_host" with type "test" omitted
-
-# Unsupported target "net_named_pipe" with type "test" omitted
-
-# Unsupported target "net_panic" with type "test" omitted
-
-# Unsupported target "net_unix_pipe" with type "test" omitted
-
-# Unsupported target "no_rt" with type "test" omitted
-
-# Unsupported target "process_arg0" with type "test" omitted
-
-# Unsupported target "process_issue_2174" with type "test" omitted
-
-# Unsupported target "process_issue_42" with type "test" omitted
-
-# Unsupported target "process_kill_on_drop" with type "test" omitted
-
-# Unsupported target "process_raw_handle" with type "test" omitted
-
-# Unsupported target "process_smoke" with type "test" omitted
-
-# Unsupported target "rt_basic" with type "test" omitted
-
-# Unsupported target "rt_common" with type "test" omitted
-
-# Unsupported target "rt_handle" with type "test" omitted
-
-# Unsupported target "rt_handle_block_on" with type "test" omitted
-
-# Unsupported target "rt_metrics" with type "test" omitted
-
-# Unsupported target "rt_panic" with type "test" omitted
-
-# Unsupported target "rt_threaded" with type "test" omitted
-
-# Unsupported target "rt_threaded_alt" with type "test" omitted
-
-# Unsupported target "rt_time_start_paused" with type "test" omitted
-
-# Unsupported target "signal_ctrl_c" with type "test" omitted
-
-# Unsupported target "signal_drop_recv" with type "test" omitted
-
-# Unsupported target "signal_drop_rt" with type "test" omitted
-
-# Unsupported target "signal_drop_signal" with type "test" omitted
-
-# Unsupported target "signal_multi_rt" with type "test" omitted
-
-# Unsupported target "signal_no_rt" with type "test" omitted
-
-# Unsupported target "signal_notify_both" with type "test" omitted
-
-# Unsupported target "signal_panic" with type "test" omitted
-
-# Unsupported target "signal_twice" with type "test" omitted
-
-# Unsupported target "signal_usr1" with type "test" omitted
-
-# Unsupported target "sync_barrier" with type "test" omitted
-
-# Unsupported target "sync_broadcast" with type "test" omitted
-
-# Unsupported target "sync_errors" with type "test" omitted
-
-# Unsupported target "sync_mpsc" with type "test" omitted
-
-# Unsupported target "sync_mpsc_weak" with type "test" omitted
-
-# Unsupported target "sync_mutex" with type "test" omitted
-
-# Unsupported target "sync_mutex_owned" with type "test" omitted
-
-# Unsupported target "sync_notify" with type "test" omitted
-
-# Unsupported target "sync_once_cell" with type "test" omitted
-
-# Unsupported target "sync_oneshot" with type "test" omitted
-
-# Unsupported target "sync_panic" with type "test" omitted
-
-# Unsupported target "sync_rwlock" with type "test" omitted
-
-# Unsupported target "sync_semaphore" with type "test" omitted
-
-# Unsupported target "sync_semaphore_owned" with type "test" omitted
-
-# Unsupported target "sync_watch" with type "test" omitted
-
-# Unsupported target "task_abort" with type "test" omitted
-
-# Unsupported target "task_blocking" with type "test" omitted
-
-# Unsupported target "task_builder" with type "test" omitted
-
-# Unsupported target "task_id" with type "test" omitted
-
-# Unsupported target "task_join_set" with type "test" omitted
-
-# Unsupported target "task_local" with type "test" omitted
-
-# Unsupported target "task_local_set" with type "test" omitted
-
-# Unsupported target "task_panic" with type "test" omitted
-
-# Unsupported target "task_yield_now" with type "test" omitted
-
-# Unsupported target "tcp_accept" with type "test" omitted
-
-# Unsupported target "tcp_connect" with type "test" omitted
-
-# Unsupported target "tcp_echo" with type "test" omitted
-
-# Unsupported target "tcp_into_split" with type "test" omitted
-
-# Unsupported target "tcp_into_std" with type "test" omitted
-
-# Unsupported target "tcp_peek" with type "test" omitted
-
-# Unsupported target "tcp_shutdown" with type "test" omitted
-
-# Unsupported target "tcp_socket" with type "test" omitted
-
-# Unsupported target "tcp_split" with type "test" omitted
-
-# Unsupported target "tcp_stream" with type "test" omitted
-
-# Unsupported target "test_clock" with type "test" omitted
-
-# Unsupported target "time_interval" with type "test" omitted
-
-# Unsupported target "time_panic" with type "test" omitted
-
-# Unsupported target "time_pause" with type "test" omitted
-
-# Unsupported target "time_rt" with type "test" omitted
-
-# Unsupported target "time_sleep" with type "test" omitted
-
-# Unsupported target "time_timeout" with type "test" omitted
-
-# Unsupported target "udp" with type "test" omitted
-
-# Unsupported target "uds_cred" with type "test" omitted
-
-# Unsupported target "uds_datagram" with type "test" omitted
-
-# Unsupported target "uds_split" with type "test" omitted
-
-# Unsupported target "uds_stream" with type "test" omitted
-
-# Unsupported target "unwindsafe" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-macros-2.1.0.bazel b/third_party/rust/cargo/remote/BUILD.tokio-macros-2.1.0.bazel
deleted file mode 100644
index 21f2805..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-macros-2.1.0.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "tokio_macros",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tokio-macros",
-        "manual",
-    ],
-    version = "2.1.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-stream-0.1.14.bazel b/third_party/rust/cargo/remote/BUILD.tokio-stream-0.1.14.bazel
deleted file mode 100644
index e7c19fd..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-stream-0.1.14.bazel
+++ /dev/null
@@ -1,91 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tokio_stream",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "time",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tokio-stream",
-        "manual",
-    ],
-    version = "0.1.14",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__futures_core__0_3_28//:futures_core",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-        "@raze__tokio__1_32_0//:tokio",
-    ],
-)
-
-# Unsupported target "async_send_sync" with type "test" omitted
-
-# Unsupported target "chunks_timeout" with type "test" omitted
-
-# Unsupported target "stream_chain" with type "test" omitted
-
-# Unsupported target "stream_close" with type "test" omitted
-
-# Unsupported target "stream_collect" with type "test" omitted
-
-# Unsupported target "stream_empty" with type "test" omitted
-
-# Unsupported target "stream_fuse" with type "test" omitted
-
-# Unsupported target "stream_iter" with type "test" omitted
-
-# Unsupported target "stream_merge" with type "test" omitted
-
-# Unsupported target "stream_once" with type "test" omitted
-
-# Unsupported target "stream_panic" with type "test" omitted
-
-# Unsupported target "stream_pending" with type "test" omitted
-
-# Unsupported target "stream_stream_map" with type "test" omitted
-
-# Unsupported target "stream_timeout" with type "test" omitted
-
-# Unsupported target "time_throttle" with type "test" omitted
-
-# Unsupported target "watch" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.20.1.bazel b/third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.20.1.bazel
deleted file mode 100644
index b096e0c..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.20.1.bazel
+++ /dev/null
@@ -1,78 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "autobahn-client" with type "example" omitted
-
-# Unsupported target "autobahn-server" with type "example" omitted
-
-# Unsupported target "client" with type "example" omitted
-
-# Unsupported target "echo-server" with type "example" omitted
-
-# Unsupported target "interval-server" with type "example" omitted
-
-# Unsupported target "server" with type "example" omitted
-
-# Unsupported target "server-custom-accept" with type "example" omitted
-
-# Unsupported target "server-headers" with type "example" omitted
-
-rust_library(
-    name = "tokio_tungstenite",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "connect",
-        "default",
-        "handshake",
-        "stream",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tokio-tungstenite",
-        "manual",
-    ],
-    version = "0.20.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__futures_util__0_3_28//:futures_util",
-        "@raze__log__0_4_20//:log",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__tungstenite__0_20_1//:tungstenite",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-util-0.7.9.bazel b/third_party/rust/cargo/remote/BUILD.tokio-util-0.7.9.bazel
deleted file mode 100644
index 05d3d37..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-util-0.7.9.bazel
+++ /dev/null
@@ -1,110 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tokio_util",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "codec",
-        "default",
-        "io",
-        "tracing",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tokio-util",
-        "manual",
-    ],
-    version = "0.7.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__futures_core__0_3_28//:futures_core",
-        "@raze__futures_sink__0_3_28//:futures_sink",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__tracing__0_1_37//:tracing",
-    ],
-)
-
-# Unsupported target "_require_full" with type "test" omitted
-
-# Unsupported target "codecs" with type "test" omitted
-
-# Unsupported target "compat" with type "test" omitted
-
-# Unsupported target "context" with type "test" omitted
-
-# Unsupported target "framed" with type "test" omitted
-
-# Unsupported target "framed_read" with type "test" omitted
-
-# Unsupported target "framed_stream" with type "test" omitted
-
-# Unsupported target "framed_write" with type "test" omitted
-
-# Unsupported target "io_inspect" with type "test" omitted
-
-# Unsupported target "io_reader_stream" with type "test" omitted
-
-# Unsupported target "io_sink_writer" with type "test" omitted
-
-# Unsupported target "io_stream_reader" with type "test" omitted
-
-# Unsupported target "io_sync_bridge" with type "test" omitted
-
-# Unsupported target "length_delimited" with type "test" omitted
-
-# Unsupported target "mpsc" with type "test" omitted
-
-# Unsupported target "panic" with type "test" omitted
-
-# Unsupported target "poll_semaphore" with type "test" omitted
-
-# Unsupported target "reusable_box" with type "test" omitted
-
-# Unsupported target "spawn_pinned" with type "test" omitted
-
-# Unsupported target "sync_cancellation_token" with type "test" omitted
-
-# Unsupported target "task_join_map" with type "test" omitted
-
-# Unsupported target "time_delay_queue" with type "test" omitted
-
-# Unsupported target "udp" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.toml-0.5.11.bazel b/third_party/rust/cargo/remote/BUILD.toml-0.5.11.bazel
deleted file mode 100644
index abd766a..0000000
--- a/third_party/rust/cargo/remote/BUILD.toml-0.5.11.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "decode" with type "example" omitted
-
-# Unsupported target "enum_external" with type "example" omitted
-
-# Unsupported target "toml2json" with type "example" omitted
-
-rust_library(
-    name = "toml",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=toml",
-        "manual",
-    ],
-    version = "0.5.11",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__serde__1_0_188//:serde",
-    ],
-)
-
-# Unsupported target "enum_external_deserialize" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.topological-sort-0.2.2.bazel b/third_party/rust/cargo/remote/BUILD.topological-sort-0.2.2.bazel
deleted file mode 100644
index f9878c9..0000000
--- a/third_party/rust/cargo/remote/BUILD.topological-sort-0.2.2.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "topological_sort",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=topological-sort",
-        "manual",
-    ],
-    version = "0.2.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tower-service-0.3.2.bazel b/third_party/rust/cargo/remote/BUILD.tower-service-0.3.2.bazel
deleted file mode 100644
index a8881e1..0000000
--- a/third_party/rust/cargo/remote/BUILD.tower-service-0.3.2.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tower_service",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tower-service",
-        "manual",
-    ],
-    version = "0.3.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tracing-0.1.37.bazel b/third_party/rust/cargo/remote/BUILD.tracing-0.1.37.bazel
deleted file mode 100644
index 32bf621..0000000
--- a/third_party/rust/cargo/remote/BUILD.tracing-0.1.37.bazel
+++ /dev/null
@@ -1,116 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "baseline" with type "bench" omitted
-
-# Unsupported target "dispatch_get_clone" with type "bench" omitted
-
-# Unsupported target "dispatch_get_ref" with type "bench" omitted
-
-# Unsupported target "empty_span" with type "bench" omitted
-
-# Unsupported target "enter_span" with type "bench" omitted
-
-# Unsupported target "event" with type "bench" omitted
-
-# Unsupported target "shared" with type "bench" omitted
-
-# Unsupported target "span_fields" with type "bench" omitted
-
-# Unsupported target "span_no_fields" with type "bench" omitted
-
-# Unsupported target "span_repeated" with type "bench" omitted
-
-rust_library(
-    name = "tracing",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "log",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tracing",
-        "manual",
-    ],
-    version = "0.1.37",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__log__0_4_20//:log",
-        "@raze__pin_project_lite__0_2_13//:pin_project_lite",
-        "@raze__tracing_core__0_1_31//:tracing_core",
-    ],
-)
-
-# Unsupported target "enabled" with type "test" omitted
-
-# Unsupported target "event" with type "test" omitted
-
-# Unsupported target "filter_caching_is_lexically_scoped" with type "test" omitted
-
-# Unsupported target "filters_are_not_reevaluated_for_the_same_span" with type "test" omitted
-
-# Unsupported target "filters_are_reevaluated_for_different_call_sites" with type "test" omitted
-
-# Unsupported target "filters_dont_leak" with type "test" omitted
-
-# Unsupported target "future_send" with type "test" omitted
-
-# Unsupported target "macro_imports" with type "test" omitted
-
-# Unsupported target "macros" with type "test" omitted
-
-# Unsupported target "macros_incompatible_concat" with type "test" omitted
-
-# Unsupported target "macros_redefined_core" with type "test" omitted
-
-# Unsupported target "max_level_hint" with type "test" omitted
-
-# Unsupported target "multiple_max_level_hints" with type "test" omitted
-
-# Unsupported target "no_subscriber" with type "test" omitted
-
-# Unsupported target "register_callsite_deadlock" with type "test" omitted
-
-# Unsupported target "scoped_clobbers_default" with type "test" omitted
-
-# Unsupported target "span" with type "test" omitted
-
-# Unsupported target "subscriber" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tracing-core-0.1.31.bazel b/third_party/rust/cargo/remote/BUILD.tracing-core-0.1.31.bazel
deleted file mode 100644
index 1ece1e7..0000000
--- a/third_party/rust/cargo/remote/BUILD.tracing-core-0.1.31.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "tracing_core",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "once_cell",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tracing-core",
-        "manual",
-    ],
-    version = "0.1.31",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__once_cell__1_18_0//:once_cell",
-    ],
-)
-
-# Unsupported target "dispatch" with type "test" omitted
-
-# Unsupported target "global_dispatch" with type "test" omitted
-
-# Unsupported target "local_dispatch_before_init" with type "test" omitted
-
-# Unsupported target "macros" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.try-lock-0.2.4.bazel b/third_party/rust/cargo/remote/BUILD.try-lock-0.2.4.bazel
deleted file mode 100644
index 987e1b1..0000000
--- a/third_party/rust/cargo/remote/BUILD.try-lock-0.2.4.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "try_lock",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=try-lock",
-        "manual",
-    ],
-    version = "0.2.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.tungstenite-0.20.1.bazel b/third_party/rust/cargo/remote/BUILD.tungstenite-0.20.1.bazel
deleted file mode 100644
index e25da34..0000000
--- a/third_party/rust/cargo/remote/BUILD.tungstenite-0.20.1.bazel
+++ /dev/null
@@ -1,87 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "buffer" with type "bench" omitted
-
-# Unsupported target "write" with type "bench" omitted
-
-# Unsupported target "autobahn-client" with type "example" omitted
-
-# Unsupported target "autobahn-server" with type "example" omitted
-
-# Unsupported target "callback-error" with type "example" omitted
-
-# Unsupported target "client" with type "example" omitted
-
-# Unsupported target "server" with type "example" omitted
-
-# Unsupported target "srv_accept_unmasked_frames" with type "example" omitted
-
-rust_library(
-    name = "tungstenite",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "data-encoding",
-        "handshake",
-        "http",
-        "httparse",
-        "sha1",
-        "url",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=tungstenite",
-        "manual",
-    ],
-    version = "0.20.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__byteorder__1_4_3//:byteorder",
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__data_encoding__2_4_0//:data_encoding",
-        "@raze__http__0_2_9//:http",
-        "@raze__httparse__1_8_0//:httparse",
-        "@raze__log__0_4_20//:log",
-        "@raze__rand__0_8_5//:rand",
-        "@raze__sha1__0_10_6//:sha1",
-        "@raze__thiserror__1_0_49//:thiserror",
-        "@raze__url__2_4_1//:url",
-        "@raze__utf_8__0_7_6//:utf_8",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.typenum-1.17.0.bazel b/third_party/rust/cargo/remote/BUILD.typenum-1.17.0.bazel
deleted file mode 100644
index dd686d8..0000000
--- a/third_party/rust/cargo/remote/BUILD.typenum-1.17.0.bazel
+++ /dev/null
@@ -1,82 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "typenum_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build/main.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.17.0",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "typenum",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=typenum",
-        "manual",
-    ],
-    version = "1.17.0",
-    # buildifier: leave-alone
-    deps = [
-        ":typenum_build_script",
-    ],
-)
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.6.bazel b/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.6.bazel
deleted file mode 100644
index f213b4e..0000000
--- a/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.6.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "ucd_trie",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ucd-trie",
-        "manual",
-    ],
-    version = "0.1.6",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.unicase-2.7.0.bazel b/third_party/rust/cargo/remote/BUILD.unicase-2.7.0.bazel
deleted file mode 100644
index b64159f..0000000
--- a/third_party/rust/cargo/remote/BUILD.unicase-2.7.0.bazel
+++ /dev/null
@@ -1,81 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "unicase_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "2.7.0",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__version_check__0_9_4//:version_check",
-    ],
-)
-
-rust_library(
-    name = "unicase",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=unicase",
-        "manual",
-    ],
-    version = "2.7.0",
-    # buildifier: leave-alone
-    deps = [
-        ":unicase_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.13.bazel b/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.13.bazel
deleted file mode 100644
index d9baa5c..0000000
--- a/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.13.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "unicode_bidi",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "hardcoded-data",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=unicode_bidi",
-        "manual",
-    ],
-    version = "0.3.13",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "conformance_tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-ident-1.0.12.bazel b/third_party/rust/cargo/remote/BUILD.unicode-ident-1.0.12.bazel
deleted file mode 100644
index b015ee8..0000000
--- a/third_party/rust/cargo/remote/BUILD.unicode-ident-1.0.12.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
-])
-
-# Generated Targets
-
-# Unsupported target "xid" with type "bench" omitted
-
-rust_library(
-    name = "unicode_ident",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=unicode-ident",
-        "manual",
-    ],
-    version = "1.0.12",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "compare" with type "test" omitted
-
-# Unsupported target "static_size" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.22.bazel b/third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.22.bazel
deleted file mode 100644
index 7af6393..0000000
--- a/third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.22.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "unicode_normalization",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=unicode-normalization",
-        "manual",
-    ],
-    version = "0.1.22",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__tinyvec__1_6_0//:tinyvec",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.url-2.4.1.bazel b/third_party/rust/cargo/remote/BUILD.url-2.4.1.bazel
deleted file mode 100644
index 8313ef8..0000000
--- a/third_party/rust/cargo/remote/BUILD.url-2.4.1.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "parse_url" with type "bench" omitted
-
-rust_library(
-    name = "url",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=url",
-        "manual",
-    ],
-    version = "2.4.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__form_urlencoded__1_2_0//:form_urlencoded",
-        "@raze__idna__0_4_0//:idna",
-        "@raze__percent_encoding__2_3_0//:percent_encoding",
-    ],
-)
-
-# Unsupported target "unit" with type "test" omitted
-
-# Unsupported target "url_wpt" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.utf-8-0.7.6.bazel b/third_party/rust/cargo/remote/BUILD.utf-8-0.7.6.bazel
deleted file mode 100644
index 6c7b13f..0000000
--- a/third_party/rust/cargo/remote/BUILD.utf-8-0.7.6.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "from_utf8_lossy" with type "bench" omitted
-
-alias(
-    name = "utf_8",
-    actual = ":utf8",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-rust_library(
-    name = "utf8",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=utf8",
-        "manual",
-    ],
-    version = "0.7.6",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "unit" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.utf8parse-0.2.1.bazel b/third_party/rust/cargo/remote/BUILD.utf8parse-0.2.1.bazel
deleted file mode 100644
index 91b1924..0000000
--- a/third_party/rust/cargo/remote/BUILD.utf8parse-0.2.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "utf8parse",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=utf8parse",
-        "manual",
-    ],
-    version = "0.2.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "utf-8-demo" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.version_check-0.9.4.bazel b/third_party/rust/cargo/remote/BUILD.version_check-0.9.4.bazel
deleted file mode 100644
index 7b1a6f7..0000000
--- a/third_party/rust/cargo/remote/BUILD.version_check-0.9.4.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "version_check",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=version_check",
-        "manual",
-    ],
-    version = "0.9.4",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.walkdir-2.4.0.bazel b/third_party/rust/cargo/remote/BUILD.walkdir-2.4.0.bazel
deleted file mode 100644
index 39acb56..0000000
--- a/third_party/rust/cargo/remote/BUILD.walkdir-2.4.0.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "walkdir",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=walkdir",
-        "manual",
-    ],
-    version = "2.4.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__same_file__1_0_6//:same_file",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.want-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.want-0.3.1.bazel
deleted file mode 100644
index eda2032..0000000
--- a/third_party/rust/cargo/remote/BUILD.want-0.3.1.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "throughput" with type "bench" omitted
-
-rust_library(
-    name = "want",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=want",
-        "manual",
-    ],
-    version = "0.3.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__try_lock__0_2_4//:try_lock",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.warp-0.3.6.bazel b/third_party/rust/cargo/remote/BUILD.warp-0.3.6.bazel
deleted file mode 100644
index b47fffb..0000000
--- a/third_party/rust/cargo/remote/BUILD.warp-0.3.6.bazel
+++ /dev/null
@@ -1,164 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "autoreload" with type "example" omitted
-
-# Unsupported target "body" with type "example" omitted
-
-# Unsupported target "compression" with type "example" omitted
-
-# Unsupported target "custom_methods" with type "example" omitted
-
-# Unsupported target "dir" with type "example" omitted
-
-# Unsupported target "dyn_reply" with type "example" omitted
-
-# Unsupported target "file" with type "example" omitted
-
-# Unsupported target "futures" with type "example" omitted
-
-# Unsupported target "handlebars_template" with type "example" omitted
-
-# Unsupported target "headers" with type "example" omitted
-
-# Unsupported target "hello" with type "example" omitted
-
-# Unsupported target "multipart" with type "example" omitted
-
-# Unsupported target "query_string" with type "example" omitted
-
-# Unsupported target "rejections" with type "example" omitted
-
-# Unsupported target "returning" with type "example" omitted
-
-# Unsupported target "routing" with type "example" omitted
-
-# Unsupported target "sse" with type "example" omitted
-
-# Unsupported target "sse_chat" with type "example" omitted
-
-# Unsupported target "stream" with type "example" omitted
-
-# Unsupported target "tls" with type "example" omitted
-
-# Unsupported target "todos" with type "example" omitted
-
-# Unsupported target "tracing" with type "example" omitted
-
-# Unsupported target "unix_socket" with type "example" omitted
-
-# Unsupported target "websockets" with type "example" omitted
-
-# Unsupported target "websockets_chat" with type "example" omitted
-
-# Unsupported target "wrapping" with type "example" omitted
-
-rust_library(
-    name = "warp",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "tokio-tungstenite",
-        "websocket",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=warp",
-        "manual",
-    ],
-    version = "0.3.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__1_5_0//:bytes",
-        "@raze__futures_channel__0_3_28//:futures_channel",
-        "@raze__futures_util__0_3_28//:futures_util",
-        "@raze__headers__0_3_9//:headers",
-        "@raze__http__0_2_9//:http",
-        "@raze__hyper__0_14_27//:hyper",
-        "@raze__log__0_4_20//:log",
-        "@raze__mime__0_3_17//:mime",
-        "@raze__mime_guess__2_0_4//:mime_guess",
-        "@raze__percent_encoding__2_3_0//:percent_encoding",
-        "@raze__pin_project__1_1_3//:pin_project",
-        "@raze__rustls_pemfile__1_0_3//:rustls_pemfile",
-        "@raze__scoped_tls__1_0_1//:scoped_tls",
-        "@raze__serde__1_0_188//:serde",
-        "@raze__serde_json__1_0_107//:serde_json",
-        "@raze__serde_urlencoded__0_7_1//:serde_urlencoded",
-        "@raze__tokio__1_32_0//:tokio",
-        "@raze__tokio_stream__0_1_14//:tokio_stream",
-        "@raze__tokio_tungstenite__0_20_1//:tokio_tungstenite",
-        "@raze__tokio_util__0_7_9//:tokio_util",
-        "@raze__tower_service__0_3_2//:tower_service",
-        "@raze__tracing__0_1_37//:tracing",
-    ],
-)
-
-# Unsupported target "addr" with type "test" omitted
-
-# Unsupported target "body" with type "test" omitted
-
-# Unsupported target "cookie" with type "test" omitted
-
-# Unsupported target "cors" with type "test" omitted
-
-# Unsupported target "ext" with type "test" omitted
-
-# Unsupported target "filter" with type "test" omitted
-
-# Unsupported target "fs" with type "test" omitted
-
-# Unsupported target "header" with type "test" omitted
-
-# Unsupported target "host" with type "test" omitted
-
-# Unsupported target "method" with type "test" omitted
-
-# Unsupported target "multipart" with type "test" omitted
-
-# Unsupported target "path" with type "test" omitted
-
-# Unsupported target "query" with type "test" omitted
-
-# Unsupported target "redirect" with type "test" omitted
-
-# Unsupported target "reply_with" with type "test" omitted
-
-# Unsupported target "tracing" with type "test" omitted
-
-# Unsupported target "ws" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel b/third_party/rust/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
deleted file mode 100644
index 08e1dda..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR (Apache-2.0 OR MIT)"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "wasi",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=wasi",
-        "manual",
-    ],
-    version = "0.11.0+wasi-snapshot-preview1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-0.2.87.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-0.2.87.bazel
deleted file mode 100644
index 2e5c915..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-0.2.87.bazel
+++ /dev/null
@@ -1,98 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "wasm_bindgen_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.87",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "wasm_bindgen",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__wasm_bindgen_macro__0_2_87//:wasm_bindgen_macro",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=wasm-bindgen",
-        "manual",
-    ],
-    version = "0.2.87",
-    # buildifier: leave-alone
-    deps = [
-        ":wasm_bindgen_build_script",
-        "@raze__cfg_if__1_0_0//:cfg_if",
-    ],
-)
-
-# Unsupported target "headless" with type "test" omitted
-
-# Unsupported target "must_use" with type "test" omitted
-
-# Unsupported target "non_wasm" with type "test" omitted
-
-# Unsupported target "std-crate-no-std-dep" with type "test" omitted
-
-# Unsupported target "unwrap_throw" with type "test" omitted
-
-# Unsupported target "wasm" with type "test" omitted
-
-# Unsupported target "worker" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-backend-0.2.87.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-backend-0.2.87.bazel
deleted file mode 100644
index 2e17bba..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-backend-0.2.87.bazel
+++ /dev/null
@@ -1,59 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "wasm_bindgen_backend",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=wasm-bindgen-backend",
-        "manual",
-    ],
-    version = "0.2.87",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bumpalo__3_14_0//:bumpalo",
-        "@raze__log__0_4_20//:log",
-        "@raze__once_cell__1_18_0//:once_cell",
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-        "@raze__wasm_bindgen_shared__0_2_87//:wasm_bindgen_shared",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-0.2.87.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-0.2.87.bazel
deleted file mode 100644
index d0f71c0..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-0.2.87.bazel
+++ /dev/null
@@ -1,56 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "wasm_bindgen_macro",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=wasm-bindgen-macro",
-        "manual",
-    ],
-    version = "0.2.87",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__quote__1_0_33//:quote",
-        "@raze__wasm_bindgen_macro_support__0_2_87//:wasm_bindgen_macro_support",
-    ],
-)
-
-# Unsupported target "ui" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.87.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.87.bazel
deleted file mode 100644
index c794f74..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.87.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "wasm_bindgen_macro_support",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=wasm-bindgen-macro-support",
-        "manual",
-    ],
-    version = "0.2.87",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_67//:proc_macro2",
-        "@raze__quote__1_0_33//:quote",
-        "@raze__syn__2_0_37//:syn",
-        "@raze__wasm_bindgen_backend__0_2_87//:wasm_bindgen_backend",
-        "@raze__wasm_bindgen_shared__0_2_87//:wasm_bindgen_shared",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-shared-0.2.87.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-shared-0.2.87.bazel
deleted file mode 100644
index 4508e74..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasm-bindgen-shared-0.2.87.bazel
+++ /dev/null
@@ -1,81 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "wasm_bindgen_shared_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    links = "wasm_bindgen",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.87",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "wasm_bindgen_shared",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=wasm-bindgen-shared",
-        "manual",
-    ],
-    version = "0.2.87",
-    # buildifier: leave-alone
-    deps = [
-        ":wasm_bindgen_shared_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.which-4.4.2.bazel b/third_party/rust/cargo/remote/BUILD.which-4.4.2.bazel
deleted file mode 100644
index 6bbeba1..0000000
--- a/third_party/rust/cargo/remote/BUILD.which-4.4.2.bazel
+++ /dev/null
@@ -1,65 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "which",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=which",
-        "manual",
-    ],
-    version = "4.4.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__either__1_9_0//:either",
-        "@raze__rustix__0_38_15//:rustix",
-    ] + selects.with_or({
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__home__0_5_5//:home",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "basic" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-0.3.9.bazel b/third_party/rust/cargo/remote/BUILD.winapi-0.3.9.bazel
deleted file mode 100644
index c42862a..0000000
--- a/third_party/rust/cargo/remote/BUILD.winapi-0.3.9.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "winapi_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.9",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "winapi",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=winapi",
-        "manual",
-    ],
-    version = "0.3.9",
-    # buildifier: leave-alone
-    deps = [
-        ":winapi_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/third_party/rust/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel
deleted file mode 100644
index 4333e66..0000000
--- a/third_party/rust/cargo/remote/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "winapi_i686_pc_windows_gnu_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.0",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "winapi_i686_pc_windows_gnu",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=winapi-i686-pc-windows-gnu",
-        "manual",
-    ],
-    version = "0.4.0",
-    # buildifier: leave-alone
-    deps = [
-        ":winapi_i686_pc_windows_gnu_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.6.bazel b/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.6.bazel
deleted file mode 100644
index 1cb187e..0000000
--- a/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.6.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "winapi_util",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=winapi-util",
-        "manual",
-    ],
-    version = "0.1.6",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/third_party/rust/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel
deleted file mode 100644
index b22fee5..0000000
--- a/third_party/rust/cargo/remote/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "winapi_x86_64_pc_windows_gnu_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.0",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "winapi_x86_64_pc_windows_gnu",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=winapi-x86_64-pc-windows-gnu",
-        "manual",
-    ],
-    version = "0.4.0",
-    # buildifier: leave-alone
-    deps = [
-        ":winapi_x86_64_pc_windows_gnu_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows-0.48.0.bazel b/third_party/rust/cargo/remote/BUILD.windows-0.48.0.bazel
deleted file mode 100644
index fe0798f..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows-0.48.0.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "windows",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows",
-        "manual",
-    ],
-    version = "0.48.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__windows_targets__0_48_5//:windows_targets",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows-sys-0.48.0.bazel b/third_party/rust/cargo/remote/BUILD.windows-sys-0.48.0.bazel
deleted file mode 100644
index 32b668a..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows-sys-0.48.0.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "windows_sys",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows-sys",
-        "manual",
-    ],
-    version = "0.48.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__windows_targets__0_48_5//:windows_targets",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows-targets-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows-targets-0.48.5.bazel
deleted file mode 100644
index cd953a9..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows-targets-0.48.5.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "windows_targets",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows-targets",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel
deleted file mode 100644
index 1e4914f..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_aarch64_gnullvm-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_aarch64_gnullvm_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_aarch64_gnullvm",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_aarch64_gnullvm",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_aarch64_gnullvm_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel
deleted file mode 100644
index 8fdec9d..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_aarch64_msvc-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_aarch64_msvc_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_aarch64_msvc",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_aarch64_msvc",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_aarch64_msvc_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_i686_gnu-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_i686_gnu-0.48.5.bazel
deleted file mode 100644
index 19e7250..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_i686_gnu-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_i686_gnu_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_i686_gnu",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_i686_gnu",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_i686_gnu_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_i686_msvc-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_i686_msvc-0.48.5.bazel
deleted file mode 100644
index 9c5b907..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_i686_msvc-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_i686_msvc_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_i686_msvc",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_i686_msvc",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_i686_msvc_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel
deleted file mode 100644
index cc33d51..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnu-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_x86_64_gnu_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_x86_64_gnu",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_x86_64_gnu",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_x86_64_gnu_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel
deleted file mode 100644
index b437bb6..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnullvm-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_x86_64_gnullvm_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_x86_64_gnullvm",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_x86_64_gnullvm",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_x86_64_gnullvm_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel b/third_party/rust/cargo/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel
deleted file mode 100644
index f65dc92..0000000
--- a/third_party/rust/cargo/remote/BUILD.windows_x86_64_msvc-0.48.5.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "windows_x86_64_msvc_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.48.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "windows_x86_64_msvc",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=windows_x86_64_msvc",
-        "manual",
-    ],
-    version = "0.48.5",
-    # buildifier: leave-alone
-    deps = [
-        ":windows_x86_64_msvc_build_script",
-    ],
-)
diff --git a/third_party/rust_efi/BUILD.bazel b/third_party/rust_efi/BUILD.bazel
index 76365c5..e69de29 100644
--- a/third_party/rust_efi/BUILD.bazel
+++ b/third_party/rust_efi/BUILD.bazel
@@ -1,67 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-package(default_visibility = ["//visibility:public"])
-
-licenses([
-    "notice",  # See individual crates for specific licenses
-])
-
-# Aliased targets
-alias(
-    name = "prost",
-    actual = "@rsefi__prost__0_12_1//:prost",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-alias(
-    name = "prost_types",
-    actual = "@rsefi__prost_types__0_12_1//:prost_types",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-alias(
-    name = "uefi",
-    actual = "@rsefi__uefi__0_24_0//:uefi",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-alias(
-    name = "uefi_services",
-    actual = "@rsefi__uefi_services__0_21_0//:uefi_services",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-# Export file for Stardoc support
-exports_files(
-    glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
-
-filegroup(
-    name = "srcs",
-    srcs = glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
diff --git a/third_party/rust_efi/Cargo.Bazel.lock b/third_party/rust_efi/Cargo.Bazel.lock
new file mode 100644
index 0000000..52304d2
--- /dev/null
+++ b/third_party/rust_efi/Cargo.Bazel.lock
@@ -0,0 +1,1164 @@
+{
+  "checksum": "a1c7a289e256f2cff7031d2be36134432ce99d39d65ff4c0838f86d55dda6107",
+  "crates": {
+    "anyhow 1.0.75": {
+      "name": "anyhow",
+      "version": "1.0.75",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/anyhow/1.0.75/download",
+          "sha256": "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "anyhow",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "anyhow",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "std"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "anyhow 1.0.75",
+              "target": "build_script_build"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.75"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "bit_field 0.10.2": {
+      "name": "bit_field",
+      "version": "0.10.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bit_field/0.10.2/download",
+          "sha256": "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bit_field",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bit_field",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.10.2"
+      },
+      "license": "Apache-2.0/MIT"
+    },
+    "bitflags 2.4.0": {
+      "name": "bitflags",
+      "version": "2.4.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bitflags/2.4.0/download",
+          "sha256": "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bitflags",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bitflags",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "2.4.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "bytes 1.5.0": {
+      "name": "bytes",
+      "version": "1.5.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/bytes/1.5.0/download",
+          "sha256": "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "bytes",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "bytes",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.5.0"
+      },
+      "license": "MIT"
+    },
+    "cfg-if 1.0.0": {
+      "name": "cfg-if",
+      "version": "1.0.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/cfg-if/1.0.0/download",
+          "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "cfg_if",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "cfg_if",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.0"
+      },
+      "license": "MIT/Apache-2.0"
+    },
+    "compile_with_bazel 0.0.0": {
+      "name": "compile_with_bazel",
+      "version": "0.0.0",
+      "repository": null,
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "compile_with_bazel",
+            "crate_root": "fake_lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "compile_with_bazel",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "prost 0.12.1",
+              "target": "prost"
+            },
+            {
+              "id": "prost-types 0.12.1",
+              "target": "prost_types"
+            },
+            {
+              "id": "uefi 0.24.0",
+              "target": "uefi"
+            },
+            {
+              "id": "uefi-services 0.21.0",
+              "target": "uefi_services"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2015",
+        "version": "0.0.0"
+      },
+      "license": null
+    },
+    "either 1.9.0": {
+      "name": "either",
+      "version": "1.9.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/either/1.9.0/download",
+          "sha256": "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "either",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "either",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.9.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "itertools 0.11.0": {
+      "name": "itertools",
+      "version": "0.11.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/itertools/0.11.0/download",
+          "sha256": "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "itertools",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "itertools",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "use_alloc"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "either 1.9.0",
+              "target": "either"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.11.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "log 0.4.20": {
+      "name": "log",
+      "version": "0.4.20",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/log/0.4.20/download",
+          "sha256": "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "log",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "log",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2015",
+        "version": "0.4.20"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "proc-macro2 1.0.67": {
+      "name": "proc-macro2",
+      "version": "1.0.67",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/proc-macro2/1.0.67/download",
+          "sha256": "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "proc_macro2",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "proc_macro2",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "proc-macro"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "build_script_build"
+            },
+            {
+              "id": "unicode-ident 1.0.12",
+              "target": "unicode_ident"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "1.0.67"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "prost 0.12.1": {
+      "name": "prost",
+      "version": "0.12.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost/0.12.1/download",
+          "sha256": "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "prost",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "prost-derive"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bytes 1.5.0",
+              "target": "bytes"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "prost-derive 0.12.1",
+              "target": "prost_derive"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "0.12.1"
+      },
+      "license": "Apache-2.0"
+    },
+    "prost-derive 0.12.1": {
+      "name": "prost-derive",
+      "version": "0.12.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost-derive/0.12.1/download",
+          "sha256": "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "prost_derive",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost_derive",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "anyhow 1.0.75",
+              "target": "anyhow"
+            },
+            {
+              "id": "itertools 0.11.0",
+              "target": "itertools"
+            },
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.33",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.37",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.12.1"
+      },
+      "license": "Apache-2.0"
+    },
+    "prost-types 0.12.1": {
+      "name": "prost-types",
+      "version": "0.12.1",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/prost-types/0.12.1/download",
+          "sha256": "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "prost_types",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "prost_types",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "prost 0.12.1",
+              "target": "prost"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.12.1"
+      },
+      "license": "Apache-2.0"
+    },
+    "ptr_meta 0.2.0": {
+      "name": "ptr_meta",
+      "version": "0.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ptr_meta/0.2.0/download",
+          "sha256": "bcada80daa06c42ed5f48c9a043865edea5dc44cbf9ac009fda3b89526e28607"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ptr_meta",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ptr_meta",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "ptr_meta_derive 0.2.0",
+              "target": "ptr_meta_derive"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "0.2.0"
+      },
+      "license": "MIT"
+    },
+    "ptr_meta_derive 0.2.0": {
+      "name": "ptr_meta_derive",
+      "version": "0.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ptr_meta_derive/0.2.0/download",
+          "sha256": "bca9224df2e20e7c5548aeb5f110a0f3b77ef05f8585139b7148b59056168ed2"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "ptr_meta_derive",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ptr_meta_derive",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.33",
+              "target": "quote"
+            },
+            {
+              "id": "syn 1.0.109",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.2.0"
+      },
+      "license": "MIT"
+    },
+    "quote 1.0.33": {
+      "name": "quote",
+      "version": "1.0.33",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/quote/1.0.33/download",
+          "sha256": "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "quote",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "quote",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "proc-macro"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "proc_macro2"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.33"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "syn 1.0.109": {
+      "name": "syn",
+      "version": "1.0.109",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/syn/1.0.109/download",
+          "sha256": "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "syn",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        },
+        {
+          "BuildScript": {
+            "crate_name": "build_script_build",
+            "crate_root": "build.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "syn",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "clone-impls",
+            "default",
+            "derive",
+            "full",
+            "parsing",
+            "printing",
+            "proc-macro",
+            "quote"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.33",
+              "target": "quote"
+            },
+            {
+              "id": "syn 1.0.109",
+              "target": "build_script_build"
+            },
+            {
+              "id": "unicode-ident 1.0.12",
+              "target": "unicode_ident"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "1.0.109"
+      },
+      "build_script_attrs": {
+        "data_glob": [
+          "**"
+        ]
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "syn 2.0.37": {
+      "name": "syn",
+      "version": "2.0.37",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/syn/2.0.37/download",
+          "sha256": "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "syn",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "syn",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "clone-impls",
+            "default",
+            "derive",
+            "extra-traits",
+            "full",
+            "parsing",
+            "printing",
+            "proc-macro",
+            "quote"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.33",
+              "target": "quote"
+            },
+            {
+              "id": "unicode-ident 1.0.12",
+              "target": "unicode_ident"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "2.0.37"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "ucs2 0.3.2": {
+      "name": "ucs2",
+      "version": "0.3.2",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/ucs2/0.3.2/download",
+          "sha256": "bad643914094137d475641b6bab89462505316ec2ce70907ad20102d28a79ab8"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "ucs2",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "ucs2",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bit_field 0.10.2",
+              "target": "bit_field"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2018",
+        "version": "0.3.2"
+      },
+      "license": "MPL-2.0"
+    },
+    "uefi 0.24.0": {
+      "name": "uefi",
+      "version": "0.24.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/uefi/0.24.0/download",
+          "sha256": "3b63e82686b4bdb0db74f18b2abbd60a0470354fb640aa69e115598d714d0a10"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "uefi",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "uefi",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "alloc",
+            "default",
+            "global_allocator",
+            "logger",
+            "panic-on-logger-errors"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 2.4.0",
+              "target": "bitflags"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "ptr_meta 0.2.0",
+              "target": "ptr_meta"
+            },
+            {
+              "id": "ucs2 0.3.2",
+              "target": "ucs2"
+            },
+            {
+              "id": "uefi-raw 0.3.0",
+              "target": "uefi_raw"
+            },
+            {
+              "id": "uguid 2.2.0",
+              "target": "uguid"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "proc_macro_deps": {
+          "common": [
+            {
+              "id": "uefi-macros 0.12.0",
+              "target": "uefi_macros"
+            }
+          ],
+          "selects": {}
+        },
+        "version": "0.24.0"
+      },
+      "license": "MPL-2.0"
+    },
+    "uefi-macros 0.12.0": {
+      "name": "uefi-macros",
+      "version": "0.12.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/uefi-macros/0.12.0/download",
+          "sha256": "023d94ef8e135d068b9a3bd94614ef2610b2b0419ade0a9d8f3501fa9cd08e95"
+        }
+      },
+      "targets": [
+        {
+          "ProcMacro": {
+            "crate_name": "uefi_macros",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "uefi_macros",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "proc-macro2 1.0.67",
+              "target": "proc_macro2"
+            },
+            {
+              "id": "quote 1.0.33",
+              "target": "quote"
+            },
+            {
+              "id": "syn 2.0.37",
+              "target": "syn"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.12.0"
+      },
+      "license": "MPL-2.0"
+    },
+    "uefi-raw 0.3.0": {
+      "name": "uefi-raw",
+      "version": "0.3.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/uefi-raw/0.3.0/download",
+          "sha256": "62642516099c6441a5f41b0da8486d5fc3515a0603b0fdaea67b31600e22082e"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "uefi_raw",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "uefi_raw",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "deps": {
+          "common": [
+            {
+              "id": "bitflags 2.4.0",
+              "target": "bitflags"
+            },
+            {
+              "id": "ptr_meta 0.2.0",
+              "target": "ptr_meta"
+            },
+            {
+              "id": "uguid 2.2.0",
+              "target": "uguid"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.3.0"
+      },
+      "license": "MPL-2.0"
+    },
+    "uefi-services 0.21.0": {
+      "name": "uefi-services",
+      "version": "0.21.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/uefi-services/0.21.0/download",
+          "sha256": "44b32954ebbb4be5ebfde0df6699c2091f04e9f9c3762c65f3435dfb1a90a668"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "uefi_services",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "uefi_services",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "crate_features": {
+          "common": [
+            "default",
+            "logger",
+            "panic_handler"
+          ],
+          "selects": {}
+        },
+        "deps": {
+          "common": [
+            {
+              "id": "cfg-if 1.0.0",
+              "target": "cfg_if"
+            },
+            {
+              "id": "log 0.4.20",
+              "target": "log"
+            },
+            {
+              "id": "uefi 0.24.0",
+              "target": "uefi"
+            }
+          ],
+          "selects": {}
+        },
+        "edition": "2021",
+        "version": "0.21.0"
+      },
+      "license": "MPL-2.0"
+    },
+    "uguid 2.2.0": {
+      "name": "uguid",
+      "version": "2.2.0",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/uguid/2.2.0/download",
+          "sha256": "ab14ea9660d240e7865ce9d54ecdbd1cd9fa5802ae6f4512f093c7907e921533"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "uguid",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "uguid",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2021",
+        "version": "2.2.0"
+      },
+      "license": "MIT OR Apache-2.0"
+    },
+    "unicode-ident 1.0.12": {
+      "name": "unicode-ident",
+      "version": "1.0.12",
+      "repository": {
+        "Http": {
+          "url": "https://crates.io/api/v1/crates/unicode-ident/1.0.12/download",
+          "sha256": "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+        }
+      },
+      "targets": [
+        {
+          "Library": {
+            "crate_name": "unicode_ident",
+            "crate_root": "src/lib.rs",
+            "srcs": [
+              "**/*.rs"
+            ]
+          }
+        }
+      ],
+      "library_target_name": "unicode_ident",
+      "common_attrs": {
+        "compile_data_glob": [
+          "**"
+        ],
+        "edition": "2018",
+        "version": "1.0.12"
+      },
+      "license": "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
+    }
+  },
+  "binary_crates": [],
+  "workspace_members": {
+    "compile_with_bazel 0.0.0": "third_party/rust_efi"
+  },
+  "conditions": {
+    "x86_64-unknown-linux-gnu": [
+      "x86_64-unknown-linux-gnu"
+    ],
+    "x86_64-unknown-uefi": [
+      "x86_64-unknown-uefi"
+    ]
+  },
+  "direct_deps": [
+    "prost 0.12.1",
+    "prost-types 0.12.1",
+    "uefi 0.24.0",
+    "uefi-services 0.21.0"
+  ],
+  "direct_dev_deps": []
+}
diff --git a/third_party/rust_efi/Cargo.lock b/third_party/rust_efi/Cargo.lock
index 35bca94..2100129 100644
--- a/third_party/rust_efi/Cargo.lock
+++ b/third_party/rust_efi/Cargo.lock
@@ -214,9 +214,9 @@
 
 [[package]]
 name = "uguid"
-version = "2.0.1"
+version = "2.2.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "16dfbd255defbd727b3a30e8950695d2e6d045841ee250ff0f1f7ced17917f8d"
+checksum = "ab14ea9660d240e7865ce9d54ecdbd1cd9fa5802ae6f4512f093c7907e921533"
 
 [[package]]
 name = "unicode-ident"
diff --git a/third_party/rust_efi/Cargo.toml b/third_party/rust_efi/Cargo.toml
index 9f98e70..e288ea6 100644
--- a/third_party/rust_efi/Cargo.toml
+++ b/third_party/rust_efi/Cargo.toml
@@ -7,22 +7,8 @@
 path = "fake_lib.rs"
 
 [dependencies]
-uefi = { version = "0.24.0", features = ["alloc"] }
+uefi =  { version = "0.24.0", features = ["alloc"] }
 uefi-services = "0.21.0"
 prost = { version = "0.12", default-features = false, features = ["prost-derive"] }
 prost-types = { version = "0.12", default-features = false }
 
-[package.metadata.raze]
-workspace_path = "//third_party/rust_efi/cargo"
-package_aliases_dir = "."
-gen_workspace_prefix = "rsefi"
-targets = [
-    "x86_64-unknown-uefi",
-    "x86_64-unknown-linux-gnu", # proc macros
-]
-genmode = "Remote"
-
-[package.metadata.raze.crates.prost.'0.12.1']
-data_dependencies = [
-    "README.md",
-]
diff --git a/third_party/rust_efi/cargo/BUILD.bazel b/third_party/rust_efi/cargo/BUILD.bazel
deleted file mode 100644
index 406c168..0000000
--- a/third_party/rust_efi/cargo/BUILD.bazel
+++ /dev/null
@@ -1,24 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# Export file for Stardoc support
-exports_files(
-    glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
-
-filegroup(
-    name = "srcs",
-    srcs = glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
diff --git a/third_party/rust_efi/cargo/Cargo.raze.lock b/third_party/rust_efi/cargo/Cargo.raze.lock
deleted file mode 100644
index 0eec2c2..0000000
--- a/third_party/rust_efi/cargo/Cargo.raze.lock
+++ /dev/null
@@ -1,223 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-[[package]]
-name = "anyhow"
-version = "1.0.75"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
-
-[[package]]
-name = "bit_field"
-version = "0.10.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
-
-[[package]]
-name = "bitflags"
-version = "2.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
-
-[[package]]
-name = "bytes"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
-
-[[package]]
-name = "cfg-if"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-[[package]]
-name = "compile_with_bazel"
-version = "0.0.0"
-dependencies = [
- "prost",
- "prost-types",
- "uefi",
- "uefi-services",
-]
-
-[[package]]
-name = "either"
-version = "1.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
-
-[[package]]
-name = "itertools"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "log"
-version = "0.4.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.67"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "prost"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d"
-dependencies = [
- "bytes",
- "prost-derive",
-]
-
-[[package]]
-name = "prost-derive"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32"
-dependencies = [
- "anyhow",
- "itertools",
- "proc-macro2",
- "quote",
- "syn 2.0.37",
-]
-
-[[package]]
-name = "prost-types"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf"
-dependencies = [
- "prost",
-]
-
-[[package]]
-name = "ptr_meta"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bcada80daa06c42ed5f48c9a043865edea5dc44cbf9ac009fda3b89526e28607"
-dependencies = [
- "ptr_meta_derive",
-]
-
-[[package]]
-name = "ptr_meta_derive"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bca9224df2e20e7c5548aeb5f110a0f3b77ef05f8585139b7148b59056168ed2"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "quote"
-version = "1.0.33"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.109"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "syn"
-version = "2.0.37"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "ucs2"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bad643914094137d475641b6bab89462505316ec2ce70907ad20102d28a79ab8"
-dependencies = [
- "bit_field",
-]
-
-[[package]]
-name = "uefi"
-version = "0.24.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3b63e82686b4bdb0db74f18b2abbd60a0470354fb640aa69e115598d714d0a10"
-dependencies = [
- "bitflags",
- "log",
- "ptr_meta",
- "ucs2",
- "uefi-macros",
- "uefi-raw",
- "uguid",
-]
-
-[[package]]
-name = "uefi-macros"
-version = "0.12.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "023d94ef8e135d068b9a3bd94614ef2610b2b0419ade0a9d8f3501fa9cd08e95"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.37",
-]
-
-[[package]]
-name = "uefi-raw"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62642516099c6441a5f41b0da8486d5fc3515a0603b0fdaea67b31600e22082e"
-dependencies = [
- "bitflags",
- "ptr_meta",
- "uguid",
-]
-
-[[package]]
-name = "uefi-services"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44b32954ebbb4be5ebfde0df6699c2091f04e9f9c3762c65f3435dfb1a90a668"
-dependencies = [
- "cfg-if",
- "log",
- "uefi",
-]
-
-[[package]]
-name = "uguid"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "16dfbd255defbd727b3a30e8950695d2e6d045841ee250ff0f1f7ced17917f8d"
-
-[[package]]
-name = "unicode-ident"
-version = "1.0.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
diff --git a/third_party/rust_efi/cargo/crates.bzl b/third_party/rust_efi/cargo/crates.bzl
deleted file mode 100644
index 97e6623..0000000
--- a/third_party/rust_efi/cargo/crates.bzl
+++ /dev/null
@@ -1,252 +0,0 @@
-"""
-@generated
-cargo-raze generated Bazel file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")  # buildifier: disable=load
-load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")  # buildifier: disable=load
-load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")  # buildifier: disable=load
-
-def rsefi_fetch_remote_crates():
-    """This function defines a collection of repos and should be called in a WORKSPACE file"""
-    maybe(
-        http_archive,
-        name = "rsefi__anyhow__1_0_75",
-        url = "https://crates.io/api/v1/crates/anyhow/1.0.75/download",
-        type = "tar.gz",
-        sha256 = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6",
-        strip_prefix = "anyhow-1.0.75",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.anyhow-1.0.75.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__bit_field__0_10_2",
-        url = "https://crates.io/api/v1/crates/bit_field/0.10.2/download",
-        type = "tar.gz",
-        sha256 = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61",
-        strip_prefix = "bit_field-0.10.2",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.bit_field-0.10.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__bitflags__2_4_0",
-        url = "https://crates.io/api/v1/crates/bitflags/2.4.0/download",
-        type = "tar.gz",
-        sha256 = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635",
-        strip_prefix = "bitflags-2.4.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.bitflags-2.4.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__bytes__1_5_0",
-        url = "https://crates.io/api/v1/crates/bytes/1.5.0/download",
-        type = "tar.gz",
-        sha256 = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223",
-        strip_prefix = "bytes-1.5.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.bytes-1.5.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__cfg_if__1_0_0",
-        url = "https://crates.io/api/v1/crates/cfg-if/1.0.0/download",
-        type = "tar.gz",
-        sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
-        strip_prefix = "cfg-if-1.0.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.cfg-if-1.0.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__either__1_9_0",
-        url = "https://crates.io/api/v1/crates/either/1.9.0/download",
-        type = "tar.gz",
-        sha256 = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07",
-        strip_prefix = "either-1.9.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.either-1.9.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__itertools__0_11_0",
-        url = "https://crates.io/api/v1/crates/itertools/0.11.0/download",
-        type = "tar.gz",
-        sha256 = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57",
-        strip_prefix = "itertools-0.11.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.itertools-0.11.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__log__0_4_20",
-        url = "https://crates.io/api/v1/crates/log/0.4.20/download",
-        type = "tar.gz",
-        sha256 = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f",
-        strip_prefix = "log-0.4.20",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.log-0.4.20.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__proc_macro2__1_0_67",
-        url = "https://crates.io/api/v1/crates/proc-macro2/1.0.67/download",
-        type = "tar.gz",
-        sha256 = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328",
-        strip_prefix = "proc-macro2-1.0.67",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.proc-macro2-1.0.67.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__prost__0_12_1",
-        url = "https://crates.io/api/v1/crates/prost/0.12.1/download",
-        type = "tar.gz",
-        sha256 = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d",
-        strip_prefix = "prost-0.12.1",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.prost-0.12.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__prost_derive__0_12_1",
-        url = "https://crates.io/api/v1/crates/prost-derive/0.12.1/download",
-        type = "tar.gz",
-        sha256 = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32",
-        strip_prefix = "prost-derive-0.12.1",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.prost-derive-0.12.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__prost_types__0_12_1",
-        url = "https://crates.io/api/v1/crates/prost-types/0.12.1/download",
-        type = "tar.gz",
-        sha256 = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf",
-        strip_prefix = "prost-types-0.12.1",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.prost-types-0.12.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__ptr_meta__0_2_0",
-        url = "https://crates.io/api/v1/crates/ptr_meta/0.2.0/download",
-        type = "tar.gz",
-        sha256 = "bcada80daa06c42ed5f48c9a043865edea5dc44cbf9ac009fda3b89526e28607",
-        strip_prefix = "ptr_meta-0.2.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.ptr_meta-0.2.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__ptr_meta_derive__0_2_0",
-        url = "https://crates.io/api/v1/crates/ptr_meta_derive/0.2.0/download",
-        type = "tar.gz",
-        sha256 = "bca9224df2e20e7c5548aeb5f110a0f3b77ef05f8585139b7148b59056168ed2",
-        strip_prefix = "ptr_meta_derive-0.2.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.ptr_meta_derive-0.2.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__quote__1_0_33",
-        url = "https://crates.io/api/v1/crates/quote/1.0.33/download",
-        type = "tar.gz",
-        sha256 = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae",
-        strip_prefix = "quote-1.0.33",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.quote-1.0.33.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__syn__1_0_109",
-        url = "https://crates.io/api/v1/crates/syn/1.0.109/download",
-        type = "tar.gz",
-        sha256 = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237",
-        strip_prefix = "syn-1.0.109",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.syn-1.0.109.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__syn__2_0_37",
-        url = "https://crates.io/api/v1/crates/syn/2.0.37/download",
-        type = "tar.gz",
-        sha256 = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8",
-        strip_prefix = "syn-2.0.37",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.syn-2.0.37.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__ucs2__0_3_2",
-        url = "https://crates.io/api/v1/crates/ucs2/0.3.2/download",
-        type = "tar.gz",
-        sha256 = "bad643914094137d475641b6bab89462505316ec2ce70907ad20102d28a79ab8",
-        strip_prefix = "ucs2-0.3.2",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.ucs2-0.3.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__uefi__0_24_0",
-        url = "https://crates.io/api/v1/crates/uefi/0.24.0/download",
-        type = "tar.gz",
-        sha256 = "3b63e82686b4bdb0db74f18b2abbd60a0470354fb640aa69e115598d714d0a10",
-        strip_prefix = "uefi-0.24.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.uefi-0.24.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__uefi_macros__0_12_0",
-        url = "https://crates.io/api/v1/crates/uefi-macros/0.12.0/download",
-        type = "tar.gz",
-        sha256 = "023d94ef8e135d068b9a3bd94614ef2610b2b0419ade0a9d8f3501fa9cd08e95",
-        strip_prefix = "uefi-macros-0.12.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.uefi-macros-0.12.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__uefi_raw__0_3_0",
-        url = "https://crates.io/api/v1/crates/uefi-raw/0.3.0/download",
-        type = "tar.gz",
-        sha256 = "62642516099c6441a5f41b0da8486d5fc3515a0603b0fdaea67b31600e22082e",
-        strip_prefix = "uefi-raw-0.3.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.uefi-raw-0.3.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__uefi_services__0_21_0",
-        url = "https://crates.io/api/v1/crates/uefi-services/0.21.0/download",
-        type = "tar.gz",
-        sha256 = "44b32954ebbb4be5ebfde0df6699c2091f04e9f9c3762c65f3435dfb1a90a668",
-        strip_prefix = "uefi-services-0.21.0",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.uefi-services-0.21.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__uguid__2_0_1",
-        url = "https://crates.io/api/v1/crates/uguid/2.0.1/download",
-        type = "tar.gz",
-        sha256 = "16dfbd255defbd727b3a30e8950695d2e6d045841ee250ff0f1f7ced17917f8d",
-        strip_prefix = "uguid-2.0.1",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.uguid-2.0.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "rsefi__unicode_ident__1_0_12",
-        url = "https://crates.io/api/v1/crates/unicode-ident/1.0.12/download",
-        type = "tar.gz",
-        sha256 = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b",
-        strip_prefix = "unicode-ident-1.0.12",
-        build_file = Label("//third_party/rust_efi/cargo/remote:BUILD.unicode-ident-1.0.12.bazel"),
-    )
diff --git a/third_party/rust_efi/cargo/remote/BUILD.anyhow-1.0.75.bazel b/third_party/rust_efi/cargo/remote/BUILD.anyhow-1.0.75.bazel
deleted file mode 100644
index 0451aa7..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.anyhow-1.0.75.bazel
+++ /dev/null
@@ -1,116 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "anyhow_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.75",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "anyhow",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=anyhow",
-        "manual",
-    ],
-    version = "1.0.75",
-    # buildifier: leave-alone
-    deps = [
-        ":anyhow_build_script",
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test_autotrait" with type "test" omitted
-
-# Unsupported target "test_backtrace" with type "test" omitted
-
-# Unsupported target "test_boxed" with type "test" omitted
-
-# Unsupported target "test_chain" with type "test" omitted
-
-# Unsupported target "test_context" with type "test" omitted
-
-# Unsupported target "test_convert" with type "test" omitted
-
-# Unsupported target "test_downcast" with type "test" omitted
-
-# Unsupported target "test_ensure" with type "test" omitted
-
-# Unsupported target "test_ffi" with type "test" omitted
-
-# Unsupported target "test_fmt" with type "test" omitted
-
-# Unsupported target "test_macros" with type "test" omitted
-
-# Unsupported target "test_repr" with type "test" omitted
-
-# Unsupported target "test_source" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.bazel b/third_party/rust_efi/cargo/remote/BUILD.bazel
deleted file mode 100644
index b49fb68..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.bazel
+++ /dev/null
@@ -1,17 +0,0 @@
-# Export file for Stardoc support
-exports_files(
-    glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
-
-filegroup(
-    name = "srcs",
-    srcs = glob([
-        "**/*.bazel",
-        "**/*.bzl",
-    ]),
-    visibility = ["//visibility:public"],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.bit_field-0.10.2.bazel b/third_party/rust_efi/cargo/remote/BUILD.bit_field-0.10.2.bazel
deleted file mode 100644
index 9be4862..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.bit_field-0.10.2.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "bench" with type "bench" omitted
-
-rust_library(
-    name = "bit_field",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bit_field",
-        "manual",
-    ],
-    version = "0.10.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.bitflags-2.4.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.bitflags-2.4.0.bazel
deleted file mode 100644
index 5c90aa8..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.bitflags-2.4.0.bazel
+++ /dev/null
@@ -1,64 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "parse" with type "bench" omitted
-
-# Unsupported target "custom_bits_type" with type "example" omitted
-
-# Unsupported target "custom_derive" with type "example" omitted
-
-# Unsupported target "fmt" with type "example" omitted
-
-# Unsupported target "macro_free" with type "example" omitted
-
-# Unsupported target "serde" with type "example" omitted
-
-rust_library(
-    name = "bitflags",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bitflags",
-        "manual",
-    ],
-    version = "2.4.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.bytes-1.5.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.bytes-1.5.0.bazel
deleted file mode 100644
index 4e0ef58..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.bytes-1.5.0.bazel
+++ /dev/null
@@ -1,80 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-# Unsupported target "buf" with type "bench" omitted
-
-# Unsupported target "bytes" with type "bench" omitted
-
-# Unsupported target "bytes_mut" with type "bench" omitted
-
-rust_library(
-    name = "bytes",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=bytes",
-        "manual",
-    ],
-    version = "1.5.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "test_buf" with type "test" omitted
-
-# Unsupported target "test_buf_mut" with type "test" omitted
-
-# Unsupported target "test_bytes" with type "test" omitted
-
-# Unsupported target "test_bytes_odd_alloc" with type "test" omitted
-
-# Unsupported target "test_bytes_vec_alloc" with type "test" omitted
-
-# Unsupported target "test_chain" with type "test" omitted
-
-# Unsupported target "test_debug" with type "test" omitted
-
-# Unsupported target "test_iter" with type "test" omitted
-
-# Unsupported target "test_reader" with type "test" omitted
-
-# Unsupported target "test_serde" with type "test" omitted
-
-# Unsupported target "test_take" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.cfg-if-1.0.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.cfg-if-1.0.0.bazel
deleted file mode 100644
index ef69402..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.cfg-if-1.0.0.bazel
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "cfg_if",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=cfg-if",
-        "manual",
-    ],
-    version = "1.0.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "xcrate" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.either-1.9.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.either-1.9.0.bazel
deleted file mode 100644
index 5893a0a..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.either-1.9.0.bazel
+++ /dev/null
@@ -1,52 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "either",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=either",
-        "manual",
-    ],
-    version = "1.9.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.itertools-0.11.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.itertools-0.11.0.bazel
deleted file mode 100644
index 4bdd2e9..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.itertools-0.11.0.bazel
+++ /dev/null
@@ -1,96 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "bench1" with type "bench" omitted
-
-# Unsupported target "combinations" with type "bench" omitted
-
-# Unsupported target "combinations_with_replacement" with type "bench" omitted
-
-# Unsupported target "fold_specialization" with type "bench" omitted
-
-# Unsupported target "powerset" with type "bench" omitted
-
-# Unsupported target "tree_fold1" with type "bench" omitted
-
-# Unsupported target "tuple_combinations" with type "bench" omitted
-
-# Unsupported target "tuples" with type "bench" omitted
-
-# Unsupported target "iris" with type "example" omitted
-
-rust_library(
-    name = "itertools",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "use_alloc",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=itertools",
-        "manual",
-    ],
-    version = "0.11.0",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__either__1_9_0//:either",
-    ],
-)
-
-# Unsupported target "adaptors_no_collect" with type "test" omitted
-
-# Unsupported target "flatten_ok" with type "test" omitted
-
-# Unsupported target "macros_hygiene" with type "test" omitted
-
-# Unsupported target "merge_join" with type "test" omitted
-
-# Unsupported target "peeking_take_while" with type "test" omitted
-
-# Unsupported target "quick" with type "test" omitted
-
-# Unsupported target "specializations" with type "test" omitted
-
-# Unsupported target "test_core" with type "test" omitted
-
-# Unsupported target "test_std" with type "test" omitted
-
-# Unsupported target "tuples" with type "test" omitted
-
-# Unsupported target "zip" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.log-0.4.20.bazel b/third_party/rust_efi/cargo/remote/BUILD.log-0.4.20.bazel
deleted file mode 100644
index 21e140e..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.log-0.4.20.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "value" with type "bench" omitted
-
-rust_library(
-    name = "log",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=log",
-        "manual",
-    ],
-    version = "0.4.20",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "filters" with type "test" omitted
-
-# Unsupported target "macros" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.proc-macro2-1.0.67.bazel b/third_party/rust_efi/cargo/remote/BUILD.proc-macro2-1.0.67.bazel
deleted file mode 100644
index d46bf3d..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.proc-macro2-1.0.67.bazel
+++ /dev/null
@@ -1,101 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "proc_macro2_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-        "proc-macro",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.67",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "proc_macro2",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "proc-macro",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=proc-macro2",
-        "manual",
-    ],
-    version = "1.0.67",
-    # buildifier: leave-alone
-    deps = [
-        ":proc_macro2_build_script",
-        "@rsefi__unicode_ident__1_0_12//:unicode_ident",
-    ],
-)
-
-# Unsupported target "comments" with type "test" omitted
-
-# Unsupported target "features" with type "test" omitted
-
-# Unsupported target "marker" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
-
-# Unsupported target "test_fmt" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.prost-0.12.1.bazel b/third_party/rust_efi/cargo/remote/BUILD.prost-0.12.1.bazel
deleted file mode 100644
index 4dc3aff..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.prost-0.12.1.bazel
+++ /dev/null
@@ -1,66 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "varint" with type "bench" omitted
-
-rust_library(
-    name = "prost",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "prost-derive",
-    ],
-    crate_root = "src/lib.rs",
-    data = [] + [
-        "README.md",
-    ],
-    edition = "2021",
-    proc_macro_deps = [
-        "@rsefi__prost_derive__0_12_1//:prost_derive",
-    ],
-    rustc_env = {
-        "PATH": "/usr/bin",
-    },
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost",
-        "manual",
-    ],
-    version = "0.12.1",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__bytes__1_5_0//:bytes",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.prost-derive-0.12.1.bazel b/third_party/rust_efi/cargo/remote/BUILD.prost-derive-0.12.1.bazel
deleted file mode 100644
index 07c6524..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.prost-derive-0.12.1.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "prost_derive",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost-derive",
-        "manual",
-    ],
-    version = "0.12.1",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__anyhow__1_0_75//:anyhow",
-        "@rsefi__itertools__0_11_0//:itertools",
-        "@rsefi__proc_macro2__1_0_67//:proc_macro2",
-        "@rsefi__quote__1_0_33//:quote",
-        "@rsefi__syn__2_0_37//:syn",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.prost-types-0.12.1.bazel b/third_party/rust_efi/cargo/remote/BUILD.prost-types-0.12.1.bazel
deleted file mode 100644
index 0be6134..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.prost-types-0.12.1.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "prost_types",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=prost-types",
-        "manual",
-    ],
-    version = "0.12.1",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__prost__0_12_1//:prost",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.ptr_meta-0.2.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.ptr_meta-0.2.0.bazel
deleted file mode 100644
index 65a2a99..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.ptr_meta-0.2.0.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "ptr_meta",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@rsefi__ptr_meta_derive__0_2_0//:ptr_meta_derive",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ptr_meta",
-        "manual",
-    ],
-    version = "0.2.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.ptr_meta_derive-0.2.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.ptr_meta_derive-0.2.0.bazel
deleted file mode 100644
index 66ee2a0..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.ptr_meta_derive-0.2.0.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "ptr_meta_derive",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ptr_meta_derive",
-        "manual",
-    ],
-    version = "0.2.0",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__proc_macro2__1_0_67//:proc_macro2",
-        "@rsefi__quote__1_0_33//:quote",
-        "@rsefi__syn__1_0_109//:syn",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.quote-1.0.33.bazel b/third_party/rust_efi/cargo/remote/BUILD.quote-1.0.33.bazel
deleted file mode 100644
index b293b7d..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.quote-1.0.33.bazel
+++ /dev/null
@@ -1,61 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "quote",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "proc-macro",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=quote",
-        "manual",
-    ],
-    version = "1.0.33",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__proc_macro2__1_0_67//:proc_macro2",
-    ],
-)
-
-# Unsupported target "compiletest" with type "test" omitted
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.syn-1.0.109.bazel b/third_party/rust_efi/cargo/remote/BUILD.syn-1.0.109.bazel
deleted file mode 100644
index 10acbb5..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.syn-1.0.109.bazel
+++ /dev/null
@@ -1,161 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-# buildifier: disable=out-of-order-load
-# buildifier: disable=load-on-top
-load(
-    "@rules_rust//cargo:cargo_build_script.bzl",
-    "cargo_build_script",
-)
-
-cargo_build_script(
-    name = "syn_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "clone-impls",
-        "default",
-        "derive",
-        "full",
-        "parsing",
-        "printing",
-        "proc-macro",
-        "quote",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.109",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-# Unsupported target "file" with type "bench" omitted
-
-# Unsupported target "rust" with type "bench" omitted
-
-rust_library(
-    name = "syn",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "clone-impls",
-        "default",
-        "derive",
-        "full",
-        "parsing",
-        "printing",
-        "proc-macro",
-        "quote",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=syn",
-        "manual",
-    ],
-    version = "1.0.109",
-    # buildifier: leave-alone
-    deps = [
-        ":syn_build_script",
-        "@rsefi__proc_macro2__1_0_67//:proc_macro2",
-        "@rsefi__quote__1_0_33//:quote",
-        "@rsefi__unicode_ident__1_0_12//:unicode_ident",
-    ],
-)
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "test_asyncness" with type "test" omitted
-
-# Unsupported target "test_attribute" with type "test" omitted
-
-# Unsupported target "test_derive_input" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_grouping" with type "test" omitted
-
-# Unsupported target "test_ident" with type "test" omitted
-
-# Unsupported target "test_item" with type "test" omitted
-
-# Unsupported target "test_iterators" with type "test" omitted
-
-# Unsupported target "test_lit" with type "test" omitted
-
-# Unsupported target "test_meta" with type "test" omitted
-
-# Unsupported target "test_parse_buffer" with type "test" omitted
-
-# Unsupported target "test_parse_stream" with type "test" omitted
-
-# Unsupported target "test_pat" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_precedence" with type "test" omitted
-
-# Unsupported target "test_receiver" with type "test" omitted
-
-# Unsupported target "test_round_trip" with type "test" omitted
-
-# Unsupported target "test_shebang" with type "test" omitted
-
-# Unsupported target "test_should_parse" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
-
-# Unsupported target "test_stmt" with type "test" omitted
-
-# Unsupported target "test_token_trees" with type "test" omitted
-
-# Unsupported target "test_ty" with type "test" omitted
-
-# Unsupported target "test_visibility" with type "test" omitted
-
-# Unsupported target "zzz_stable" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.syn-2.0.37.bazel b/third_party/rust_efi/cargo/remote/BUILD.syn-2.0.37.bazel
deleted file mode 100644
index 528a307..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.syn-2.0.37.bazel
+++ /dev/null
@@ -1,124 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-# Unsupported target "file" with type "bench" omitted
-
-# Unsupported target "rust" with type "bench" omitted
-
-rust_library(
-    name = "syn",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "clone-impls",
-        "default",
-        "derive",
-        "extra-traits",
-        "full",
-        "parsing",
-        "printing",
-        "proc-macro",
-        "quote",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=syn",
-        "manual",
-    ],
-    version = "2.0.37",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__proc_macro2__1_0_67//:proc_macro2",
-        "@rsefi__quote__1_0_33//:quote",
-        "@rsefi__unicode_ident__1_0_12//:unicode_ident",
-    ],
-)
-
-# Unsupported target "regression" with type "test" omitted
-
-# Unsupported target "test_asyncness" with type "test" omitted
-
-# Unsupported target "test_attribute" with type "test" omitted
-
-# Unsupported target "test_derive_input" with type "test" omitted
-
-# Unsupported target "test_expr" with type "test" omitted
-
-# Unsupported target "test_generics" with type "test" omitted
-
-# Unsupported target "test_grouping" with type "test" omitted
-
-# Unsupported target "test_ident" with type "test" omitted
-
-# Unsupported target "test_item" with type "test" omitted
-
-# Unsupported target "test_iterators" with type "test" omitted
-
-# Unsupported target "test_lit" with type "test" omitted
-
-# Unsupported target "test_meta" with type "test" omitted
-
-# Unsupported target "test_parse_buffer" with type "test" omitted
-
-# Unsupported target "test_parse_stream" with type "test" omitted
-
-# Unsupported target "test_pat" with type "test" omitted
-
-# Unsupported target "test_path" with type "test" omitted
-
-# Unsupported target "test_precedence" with type "test" omitted
-
-# Unsupported target "test_receiver" with type "test" omitted
-
-# Unsupported target "test_round_trip" with type "test" omitted
-
-# Unsupported target "test_shebang" with type "test" omitted
-
-# Unsupported target "test_should_parse" with type "test" omitted
-
-# Unsupported target "test_size" with type "test" omitted
-
-# Unsupported target "test_stmt" with type "test" omitted
-
-# Unsupported target "test_token_trees" with type "test" omitted
-
-# Unsupported target "test_ty" with type "test" omitted
-
-# Unsupported target "test_visibility" with type "test" omitted
-
-# Unsupported target "zzz_stable" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.ucs2-0.3.2.bazel b/third_party/rust_efi/cargo/remote/BUILD.ucs2-0.3.2.bazel
deleted file mode 100644
index 73ff181..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.ucs2-0.3.2.bazel
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "reciprocal",  # MPL-2.0 from expression "MPL-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "ucs2",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=ucs2",
-        "manual",
-    ],
-    version = "0.3.2",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__bit_field__0_10_2//:bit_field",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.uefi-0.24.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.uefi-0.24.0.bazel
deleted file mode 100644
index 251f872..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.uefi-0.24.0.bazel
+++ /dev/null
@@ -1,68 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "reciprocal",  # MPL-2.0 from expression "MPL-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "uefi",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "default",
-        "global_allocator",
-        "logger",
-        "panic-on-logger-errors",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    proc_macro_deps = [
-        "@rsefi__uefi_macros__0_12_0//:uefi_macros",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=uefi",
-        "manual",
-    ],
-    version = "0.24.0",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__bitflags__2_4_0//:bitflags",
-        "@rsefi__log__0_4_20//:log",
-        "@rsefi__ptr_meta__0_2_0//:ptr_meta",
-        "@rsefi__ucs2__0_3_2//:ucs2",
-        "@rsefi__uefi_raw__0_3_0//:uefi_raw",
-        "@rsefi__uguid__2_0_1//:uguid",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.uefi-macros-0.12.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.uefi-macros-0.12.0.bazel
deleted file mode 100644
index a361567..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.uefi-macros-0.12.0.bazel
+++ /dev/null
@@ -1,57 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "reciprocal",  # MPL-2.0 from expression "MPL-2.0"
-])
-
-# Generated Targets
-
-rust_proc_macro(
-    name = "uefi_macros",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=uefi-macros",
-        "manual",
-    ],
-    version = "0.12.0",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__proc_macro2__1_0_67//:proc_macro2",
-        "@rsefi__quote__1_0_33//:quote",
-        "@rsefi__syn__2_0_37//:syn",
-    ],
-)
-
-# Unsupported target "compilation" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.uefi-raw-0.3.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.uefi-raw-0.3.0.bazel
deleted file mode 100644
index 55445b7..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.uefi-raw-0.3.0.bazel
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "reciprocal",  # MPL-2.0 from expression "MPL-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "uefi_raw",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=uefi-raw",
-        "manual",
-    ],
-    version = "0.3.0",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__bitflags__2_4_0//:bitflags",
-        "@rsefi__ptr_meta__0_2_0//:ptr_meta",
-        "@rsefi__uguid__2_0_1//:uguid",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.uefi-services-0.21.0.bazel b/third_party/rust_efi/cargo/remote/BUILD.uefi-services-0.21.0.bazel
deleted file mode 100644
index 15013c1..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.uefi-services-0.21.0.bazel
+++ /dev/null
@@ -1,60 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "reciprocal",  # MPL-2.0 from expression "MPL-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "uefi_services",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "logger",
-        "panic_handler",
-    ],
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=uefi-services",
-        "manual",
-    ],
-    version = "0.21.0",
-    # buildifier: leave-alone
-    deps = [
-        "@rsefi__cfg_if__1_0_0//:cfg_if",
-        "@rsefi__log__0_4_20//:log",
-        "@rsefi__uefi__0_24_0//:uefi",
-    ],
-)
diff --git a/third_party/rust_efi/cargo/remote/BUILD.uguid-2.0.1.bazel b/third_party/rust_efi/cargo/remote/BUILD.uguid-2.0.1.bazel
deleted file mode 100644
index bc366b1..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.uguid-2.0.1.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
-])
-
-# Generated Targets
-
-rust_library(
-    name = "uguid",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2021",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=uguid",
-        "manual",
-    ],
-    version = "2.0.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "test_guid" with type "test" omitted
-
-# Unsupported target "test_macro_error" with type "test" omitted
-
-# Unsupported target "test_serde" with type "test" omitted
diff --git a/third_party/rust_efi/cargo/remote/BUILD.unicode-ident-1.0.12.bazel b/third_party/rust_efi/cargo/remote/BUILD.unicode-ident-1.0.12.bazel
deleted file mode 100644
index e9744bc..0000000
--- a/third_party/rust_efi/cargo/remote/BUILD.unicode-ident-1.0.12.bazel
+++ /dev/null
@@ -1,58 +0,0 @@
-"""
-@generated
-cargo-raze crate build file.
-
-DO NOT EDIT! Replaced on runs of cargo-raze
-"""
-
-# buildifier: disable=load
-load("@bazel_skylib//lib:selects.bzl", "selects")
-
-# buildifier: disable=load
-load(
-    "@rules_rust//rust:defs.bzl",
-    "rust_binary",
-    "rust_library",
-    "rust_proc_macro",
-    "rust_test",
-)
-
-package(default_visibility = [
-    # Public for visibility by "@raze__crate__version//" targets.
-    #
-    # Prefer access through "//third_party/rust_efi/cargo", which limits external
-    # visibility to explicit Cargo.toml dependencies.
-    "//visibility:public",
-])
-
-licenses([
-    "notice",  # MIT from expression "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
-])
-
-# Generated Targets
-
-# Unsupported target "xid" with type "bench" omitted
-
-rust_library(
-    name = "unicode_ident",
-    srcs = glob(["**/*.rs"]),
-    crate_root = "src/lib.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "crate-name=unicode-ident",
-        "manual",
-    ],
-    version = "1.0.12",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "compare" with type "test" omitted
-
-# Unsupported target "static_size" with type "test" omitted