third_party/rust: update rules_rust and deps

This is required for rules_rust to work with CC toolchains.

Change-Id: I15f20c7bde09697fda248f7107be8bcd00e24d57
Reviewed-on: https://review.monogon.dev/c/monogon/+/1073
Tested-by: Jenkins CI
Reviewed-by: Lorenz Brun <lorenz@monogon.tech>
diff --git a/.bazelignore b/.bazelignore
index 842180e..fe2f32b 100644
--- a/.bazelignore
+++ b/.bazelignore
@@ -1,4 +1,2 @@
 generated
 .bazeldnf
-metropolis/handbook
-third_party/rust
diff --git a/WORKSPACE b/WORKSPACE
index 38e390d..0f044e4 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -112,21 +112,17 @@
 # Rust rules
 http_archive(
     name = "rules_rust",
-    sha256 = "6c6abf4100b3118467a9674e9dba5f4933aa97840f909823aacddffc2abe139b",
-    strip_prefix = "rules_rust-f4cbea56b8053436fbab625fc32254da212a0304",
-    urls = [
-        # Main branch as of 2021-07-01
-        "https://github.com/bazelbuild/rules_rust/archive/f4cbea56b8053436fbab625fc32254da212a0304.tar.gz",
-    ],
+    sha256 = "aaaa4b9591a5dad8d8907ae2dbe6e0eb49e6314946ce4c7149241648e56a1277",
+    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.16.1/rules_rust-v0.16.1.tar.gz"],
 )
 
-#load("@rules_rust//rust:repositories.bzl", "rust_repositories")
-#
-#rust_repositories()
-#
-#load("//third_party/rust/cargo:crates.bzl", "raze_fetch_remote_crates")
-#
-#raze_fetch_remote_crates()
+load("@rules_rust//rust:repositories.bzl", "rust_repositories")
+
+rust_repositories()
+
+load("//third_party/rust/cargo:crates.bzl", "raze_fetch_remote_crates")
+
+raze_fetch_remote_crates()
 
 # third_party external repositories
 load("//third_party/linux:external.bzl", "linux_external")
diff --git a/build/ci/Dockerfile b/build/ci/Dockerfile
index aa79dc7..39bbb00 100644
--- a/build/ci/Dockerfile
+++ b/build/ci/Dockerfile
@@ -1,77 +1,34 @@
-FROM fedora:35
+FROM docker.io/fedora:37@sha256:3487c98481d1bba7e769cf7bcecd6343c2d383fdd6bed34ec541b6b23ef07664
 
 RUN dnf -y upgrade && \
-	dnf -y install \
-	"@Development Tools" \
-	g++ \
-	llvm \
-	clang \
-	lld \
-	libuuid-devel \
-	python3 \
-	nasm \
-	acpica-tools \
-	gettext-devel \
-	autoconf \
-	bison \
-	libtool \
-	automake \
-	flex \
-	glibc-static \
-	elfutils-libelf-devel \
-	libblkid-devel \
-	lz4 \
-	bc \
-	hostname \
-	which \
-	swtpm-tools \
-	rsync \
-	qemu-system-x86-core \
-	expect \
-	grpc-cli \
-	nc \
-	python-unversioned-command \
-	openssl-devel \
+	dnf -y install --setopt=tsflags=nodocs \
 	java-11-openjdk-headless \
-	dotnet-runtime-5.0 \
+	dotnet-runtime-6.0 \
 	jq \
-	tini
-
+	tini \
+    golang && \
+    dnf clean all
 
 # (java-11-openjdk-headless and tini are required for the Jenkins CI agent)
 # (dotnet-runtime-5.0 and jq are required for the GitHub Actions runner)
+# (golang is required for us to build bazelisk - see below)
 
-# Create CI build user. This is not used by scripts/bin/bazel, but instead only
-# used by CI infrastructure to run build agents as.
+# Create CI build user. It is used by CI infrastructure to run build agents as.
 # The newly created user will have a UID of 500, and a corresponding CI group
 # of GID 500 will be created as well. This UID:GID pair's numeric values are
 # relied on by the CI infrastructure and must not change without coordination.
 RUN set -e -x ;\
 	useradd -u 500 -U -m -d /home/ci ci
 
-# Install Bazel binary
-RUN curl -o /usr/local/bin/bazel \
-	https://releases.bazel.build/4.2.2/release/bazel-4.2.2-linux-x86_64 && \
-	echo '11dea6c7cfd866ed520af19a6bb1d952f3e9f4ee60ffe84e63c0825d95cb5859  /usr/local/bin/bazel' | sha256sum --check && \
-	chmod +x /usr/local/bin/bazel
-
 # Use a shared Go module cache for gazelle
 # https://github.com/bazelbuild/bazel-gazelle/pull/535
 ENV GO_REPOSITORY_USE_HOST_CACHE=1
 
-# Install ibazel (bazel-watcher)
-RUN set -e -x ;\
-    cd /tmp ;\
-    git clone -b v0.15.10 https://github.com/bazelbuild/bazel-watcher ;\
-    cd bazel-watcher ;\
-    [ $(git rev-parse HEAD) == "84cab6f15f64850fb972ea88701e634c8b611301" ] ;\
-    bazel --output_user_root /tmp/bazel-watcher-cache build //ibazel ;\
-    cp bazel-bin/ibazel/linux_amd64_stripped/ibazel /usr/local/bin/ibazel ;\
-    cd /tmp ;\
-    rm -rf bazel-watcher bazel-watcher-cache
+USER ci
 
-# --userns=keep-id uses the workdir as $HOME otherwise
-RUN mkdir /user
-ENV HOME=/user
+# Install Bazelisk. We do not have to pin a checksum since Go automatically
+# relies on its built-in transparency log for pinning.
+RUN go install github.com/bazelbuild/bazelisk@v1.15.0
+ENV PATH="/home/ci/go/bin:${PATH}"
 
 WORKDIR /work
diff --git a/third_party/rust/BUILD.bazel b/third_party/rust/BUILD.bazel
index ebb1b3f..82156d7 100644
--- a/third_party/rust/BUILD.bazel
+++ b/third_party/rust/BUILD.bazel
@@ -13,8 +13,8 @@
 
 # Aliased targets
 alias(
-    name = "mdbook",
-    actual = "@raze__mdbook__0_4_10//:mdbook",
+    name = "cargo_bin_mdbook",
+    actual = "@raze__mdbook__0_4_22//:cargo_bin_mdbook",
     tags = [
         "cargo-raze",
         "manual",
@@ -22,10 +22,8 @@
 )
 
 alias(
-    # Extra aliased target, from raze configuration
-    # N.B.: The exact form of this is subject to change.
-    name = "cargo_bin_mdbook",
-    actual = "@raze__mdbook__0_4_10//:cargo_bin_mdbook",
+    name = "mdbook",
+    actual = "@raze__mdbook__0_4_22//:mdbook",
     tags = [
         "cargo-raze",
         "manual",
@@ -34,8 +32,18 @@
 
 # Export file for Stardoc support
 exports_files(
-    [
-        "crates.bzl",
-    ],
+    glob([
+        "**/*.bazel",
+        "**/*.bzl",
+    ]),
+    visibility = ["//visibility:public"],
+)
+
+filegroup(
+    name = "srcs",
+    srcs = glob([
+        "**/*.bazel",
+        "**/*.bzl",
+    ]),
     visibility = ["//visibility:public"],
 )
diff --git a/third_party/rust/Cargo.toml b/third_party/rust/Cargo.toml
index b71a3c5..3968a35 100644
--- a/third_party/rust/Cargo.toml
+++ b/third_party/rust/Cargo.toml
@@ -17,12 +17,40 @@
 ]
 genmode = "Remote"
 
-[package.metadata.raze.crates.handlebars.'4.0.1']
+[package.metadata.raze.crates.handlebars.'4.3.6']
 data_dependencies = [
     "src/grammar.pest",
 ]
 
-[package.metadata.raze.crates.mdbook.'0.4.10']
+[package.metadata.raze.crates.opener.'0.5.0']
+data_dependencies = [
+    "src/xdg-open",
+]
+
+[package.metadata.raze.crates.clap.'3.2.23']
+data_dependencies = [
+    "README.md",
+    "examples/demo.md",
+]
+
+[package.metadata.raze.crates.clap_complete.'3.2.5']
+data_dependencies = [
+    "README.md",
+]
+
+[package.metadata.raze.crates.bstr.'0.2.17']
+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.22']
 data_dependencies = [
     "src/theme/playground_editor/ace.js",
     "src/theme/playground_editor/editor.js",
diff --git a/third_party/rust/README.md b/third_party/rust/README.md
index 8b77da1..de1ac4a 100644
--- a/third_party/rust/README.md
+++ b/third_party/rust/README.md
@@ -7,7 +7,7 @@
 
 Dependencies are defined in Cargo.toml. Raze is used to lock these into concrete versions (in `//third_party/rust/cargo/Cargo.raze.lock`) and to generate BUILDfiles (in `//third_party/rust/cargo/remote/...` and `//third_party/rust/BUILD.bazel`).
 
-In contrast to Gazelle/go dependencies, the BUILD files for external packages are actually commited into the repository instead of being generated on demand during analysis phase. This makes Raze a bit more noisy in Git history, but vastly speeds up analysis phase, and doesn't rely on an early, pre-analysis Go toolchain that Gazelle relies on.
+In contrast to Gazelle/go dependencies, the BUILD files for external packages are actually committed into the repository instead of being generated on demand during analysis phase. This makes Raze a bit more noisy in Git history, but vastly speeds up analysis phase, and doesn't rely on an early, pre-analysis Go toolchain that Gazelle relies on.
 
 To relock dependencies and regenerate BUILDfiles:
 
diff --git a/third_party/rust/cargo/BUILD.bazel b/third_party/rust/cargo/BUILD.bazel
index 0cad4cf..406c168 100644
--- a/third_party/rust/cargo/BUILD.bazel
+++ b/third_party/rust/cargo/BUILD.bazel
@@ -7,8 +7,18 @@
 
 # Export file for Stardoc support
 exports_files(
-    [
-        "crates.bzl",
-    ],
+    glob([
+        "**/*.bazel",
+        "**/*.bzl",
+    ]),
+    visibility = ["//visibility:public"],
+)
+
+filegroup(
+    name = "srcs",
+    srcs = glob([
+        "**/*.bazel",
+        "**/*.bzl",
+    ]),
     visibility = ["//visibility:public"],
 )
diff --git a/third_party/rust/cargo/Cargo.raze.lock b/third_party/rust/cargo/Cargo.raze.lock
index 8230e2a..a4afd88 100644
--- a/third_party/rust/cargo/Cargo.raze.lock
+++ b/third_party/rust/cargo/Cargo.raze.lock
@@ -2,42 +2,40 @@
 # It is not intended for manual editing.
 [[package]]
 name = "aho-corasick"
-version = "0.7.18"
+version = "0.7.20"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
+checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
 dependencies = [
  "memchr",
 ]
 
 [[package]]
 name = "ammonia"
-version = "3.1.1"
+version = "3.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1ee7d6eb157f337c5cedc95ddf17f0cbc36d36eb7763c8e0d1c1aeb3722f6279"
+checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
 dependencies = [
  "html5ever",
- "lazy_static",
  "maplit",
- "markup5ever_rcdom",
- "matches",
+ "once_cell",
  "tendril",
  "url",
 ]
 
 [[package]]
-name = "ansi_term"
-version = "0.11.0"
+name = "android_system_properties"
+version = "0.1.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
 dependencies = [
- "winapi 0.3.9",
+ "libc",
 ]
 
 [[package]]
 name = "anyhow"
-version = "1.0.41"
+version = "1.0.68"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61"
+checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
 
 [[package]]
 name = "atty"
@@ -45,70 +43,54 @@
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
 dependencies = [
- "hermit-abi",
+ "hermit-abi 0.1.19",
  "libc",
  "winapi 0.3.9",
 ]
 
 [[package]]
 name = "autocfg"
-version = "1.0.1"
+version = "1.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
 
 [[package]]
 name = "base64"
-version = "0.12.3"
+version = "0.13.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
-
-[[package]]
-name = "base64"
-version = "0.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
+checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
 
 [[package]]
 name = "bitflags"
-version = "1.2.1"
+version = "1.3.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
 
 [[package]]
 name = "block-buffer"
-version = "0.7.3"
+version = "0.10.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
+checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
 dependencies = [
- "block-padding",
- "byte-tools",
- "byteorder",
- "generic-array 0.12.4",
+ "generic-array",
 ]
 
 [[package]]
-name = "block-buffer"
-version = "0.9.0"
+name = "bstr"
+version = "0.2.17"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
+checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
 dependencies = [
- "generic-array 0.14.4",
+ "lazy_static",
+ "memchr",
+ "regex-automata",
 ]
 
 [[package]]
-name = "block-padding"
-version = "0.1.5"
+name = "bumpalo"
+version = "3.11.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
-dependencies = [
- "byte-tools",
-]
-
-[[package]]
-name = "byte-tools"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
+checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
 
 [[package]]
 name = "byteorder"
@@ -118,15 +100,15 @@
 
 [[package]]
 name = "bytes"
-version = "0.5.6"
+version = "1.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
+checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
 
 [[package]]
-name = "bytes"
-version = "1.0.1"
+name = "cc"
+version = "1.0.78"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
+checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
 
 [[package]]
 name = "cfg-if"
@@ -142,30 +124,61 @@
 
 [[package]]
 name = "chrono"
-version = "0.4.19"
+version = "0.4.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
+checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
 dependencies = [
- "libc",
+ "iana-time-zone",
+ "js-sys",
  "num-integer",
  "num-traits",
  "time",
+ "wasm-bindgen",
  "winapi 0.3.9",
 ]
 
 [[package]]
 name = "clap"
-version = "2.33.3"
+version = "3.2.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
+checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5"
 dependencies = [
- "ansi_term",
  "atty",
  "bitflags",
+ "clap_lex",
+ "indexmap",
+ "once_cell",
  "strsim",
+ "termcolor",
  "textwrap",
+]
+
+[[package]]
+name = "clap_complete"
+version = "3.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8"
+dependencies = [
+ "clap",
+]
+
+[[package]]
+name = "clap_lex"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
+dependencies = [
+ "os_str_bytes",
+]
+
+[[package]]
+name = "codespan-reporting"
+version = "0.11.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
+dependencies = [
+ "termcolor",
  "unicode-width",
- "vec_map",
 ]
 
 [[package]]
@@ -176,64 +189,101 @@
 ]
 
 [[package]]
-name = "cpufeatures"
-version = "0.1.5"
+name = "core-foundation-sys"
+version = "0.8.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef"
+checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
+
+[[package]]
+name = "cpufeatures"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
 dependencies = [
  "libc",
 ]
 
 [[package]]
-name = "digest"
-version = "0.8.1"
+name = "crypto-common"
+version = "0.1.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
+checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
 dependencies = [
- "generic-array 0.12.4",
+ "generic-array",
+ "typenum",
+]
+
+[[package]]
+name = "cxx"
+version = "1.0.86"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"
+dependencies = [
+ "cc",
+ "cxxbridge-flags",
+ "cxxbridge-macro",
+ "link-cplusplus",
+]
+
+[[package]]
+name = "cxx-build"
+version = "1.0.86"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"
+dependencies = [
+ "cc",
+ "codespan-reporting",
+ "once_cell",
+ "proc-macro2",
+ "quote",
+ "scratch",
+ "syn",
+]
+
+[[package]]
+name = "cxxbridge-flags"
+version = "1.0.86"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"
+
+[[package]]
+name = "cxxbridge-macro"
+version = "1.0.86"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
 ]
 
 [[package]]
 name = "digest"
-version = "0.9.0"
+version = "0.10.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
+checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
 dependencies = [
- "generic-array 0.14.4",
+ "block-buffer",
+ "crypto-common",
 ]
 
 [[package]]
-name = "dtoa"
-version = "0.4.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
-
-[[package]]
-name = "either"
-version = "1.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
-
-[[package]]
 name = "elasticlunr-rs"
-version = "2.3.13"
+version = "3.0.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "515a402b5acb08002194dd926065be7733003bb37ac0f030dfd39160028238e1"
+checksum = "b94d9c8df0fe6879ca12e7633fdfe467c503722cc981fc463703472d2b876448"
 dependencies = [
- "lazy_static",
  "regex",
  "serde",
  "serde_derive",
  "serde_json",
- "strum",
- "strum_macros",
 ]
 
 [[package]]
 name = "env_logger"
-version = "0.7.1"
+version = "0.9.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
+checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
 dependencies = [
  "atty",
  "humantime",
@@ -243,21 +293,24 @@
 ]
 
 [[package]]
-name = "fake-simd"
-version = "0.1.2"
+name = "fastrand"
+version = "1.8.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
+dependencies = [
+ "instant",
+]
 
 [[package]]
 name = "filetime"
-version = "0.2.14"
+version = "0.2.19"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8"
+checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9"
 dependencies = [
  "cfg-if 1.0.0",
  "libc",
  "redox_syscall",
- "winapi 0.3.9",
+ "windows-sys",
 ]
 
 [[package]]
@@ -268,11 +321,10 @@
 
 [[package]]
 name = "form_urlencoded"
-version = "1.0.1"
+version = "1.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
+checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
 dependencies = [
- "matches",
  "percent-encoding",
 ]
 
@@ -313,33 +365,19 @@
 
 [[package]]
 name = "futf"
-version = "0.1.4"
+version = "0.1.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
+checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
 dependencies = [
  "mac",
  "new_debug_unreachable",
 ]
 
 [[package]]
-name = "futures"
-version = "0.3.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
 name = "futures-channel"
-version = "0.3.15"
+version = "0.3.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
+checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
 dependencies = [
  "futures-core",
  "futures-sink",
@@ -347,24 +385,16 @@
 
 [[package]]
 name = "futures-core"
-version = "0.3.15"
+version = "0.3.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
-
-[[package]]
-name = "futures-io"
-version = "0.3.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
+checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
 
 [[package]]
 name = "futures-macro"
-version = "0.3.15"
+version = "0.3.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
+checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
 dependencies = [
- "autocfg",
- "proc-macro-hack",
  "proc-macro2",
  "quote",
  "syn",
@@ -372,82 +402,50 @@
 
 [[package]]
 name = "futures-sink"
-version = "0.3.15"
+version = "0.3.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282"
+checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
 
 [[package]]
 name = "futures-task"
-version = "0.3.15"
+version = "0.3.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
+checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
 
 [[package]]
 name = "futures-util"
-version = "0.3.15"
+version = "0.3.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
+checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
 dependencies = [
- "autocfg",
  "futures-core",
  "futures-macro",
  "futures-sink",
  "futures-task",
- "pin-project-lite 0.2.7",
+ "pin-project-lite",
  "pin-utils",
- "proc-macro-hack",
- "proc-macro-nested",
  "slab",
 ]
 
 [[package]]
 name = "generic-array"
-version = "0.12.4"
+version = "0.14.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
-dependencies = [
- "typenum",
-]
-
-[[package]]
-name = "generic-array"
-version = "0.14.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
+checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
 dependencies = [
  "typenum",
  "version_check",
 ]
 
 [[package]]
-name = "getopts"
-version = "0.2.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
-dependencies = [
- "unicode-width",
-]
-
-[[package]]
 name = "getrandom"
-version = "0.1.16"
+version = "0.2.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
+checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
 dependencies = [
  "cfg-if 1.0.0",
  "libc",
- "wasi 0.9.0+wasi-snapshot-preview1",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi 0.10.2+wasi-snapshot-preview1",
+ "wasi 0.11.0+wasi-snapshot-preview1",
 ]
 
 [[package]]
@@ -461,17 +459,17 @@
 
 [[package]]
 name = "glob"
-version = "0.3.0"
+version = "0.3.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
+checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
 
 [[package]]
 name = "h2"
-version = "0.2.7"
+version = "0.3.15"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
+checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
 dependencies = [
- "bytes 0.5.6",
+ "bytes",
  "fnv",
  "futures-core",
  "futures-sink",
@@ -482,43 +480,42 @@
  "tokio",
  "tokio-util",
  "tracing",
- "tracing-futures",
 ]
 
 [[package]]
 name = "handlebars"
-version = "4.0.1"
+version = "4.3.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2060119114dd8a8bc87facce6384751af8280a7adc8e203c023c95cbb11f5663"
+checksum = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a"
 dependencies = [
  "log",
  "pest",
  "pest_derive",
- "quick-error 2.0.1",
  "serde",
  "serde_json",
+ "thiserror",
 ]
 
 [[package]]
 name = "hashbrown"
-version = "0.11.2"
+version = "0.12.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
 
 [[package]]
 name = "headers"
-version = "0.3.4"
+version = "0.3.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0b7591fb62902706ae8e7aaff416b1b0fa2c0fd0878b46dc13baa3712d8a855"
+checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
 dependencies = [
- "base64 0.13.0",
+ "base64",
  "bitflags",
- "bytes 1.0.1",
+ "bytes",
  "headers-core",
  "http",
+ "httpdate",
  "mime",
- "sha-1 0.9.6",
- "time",
+ "sha1",
 ]
 
 [[package]]
@@ -531,15 +528,6 @@
 ]
 
 [[package]]
-name = "heck"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
-dependencies = [
- "unicode-segmentation",
-]
-
-[[package]]
 name = "hermit-abi"
 version = "0.1.19"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -549,10 +537,19 @@
 ]
 
 [[package]]
-name = "html5ever"
-version = "0.25.1"
+name = "hermit-abi"
+version = "0.2.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b"
+checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
+dependencies = [
+ "libc",
+]
+
+[[package]]
+name = "html5ever"
+version = "0.26.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
 dependencies = [
  "log",
  "mac",
@@ -564,53 +561,51 @@
 
 [[package]]
 name = "http"
-version = "0.2.4"
+version = "0.2.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
+checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
 dependencies = [
- "bytes 1.0.1",
+ "bytes",
  "fnv",
  "itoa",
 ]
 
 [[package]]
 name = "http-body"
-version = "0.3.1"
+version = "0.4.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
+checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
 dependencies = [
- "bytes 0.5.6",
+ "bytes",
  "http",
+ "pin-project-lite",
 ]
 
 [[package]]
 name = "httparse"
-version = "1.4.1"
+version = "1.8.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
+checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
 
 [[package]]
 name = "httpdate"
-version = "0.3.2"
+version = "1.0.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
+checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
 
 [[package]]
 name = "humantime"
-version = "1.3.0"
+version = "2.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
-dependencies = [
- "quick-error 1.2.3",
-]
+checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
 
 [[package]]
 name = "hyper"
-version = "0.13.10"
+version = "0.14.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb"
+checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
 dependencies = [
- "bytes 0.5.6",
+ "bytes",
  "futures-channel",
  "futures-core",
  "futures-util",
@@ -620,7 +615,7 @@
  "httparse",
  "httpdate",
  "itoa",
- "pin-project 1.0.7",
+ "pin-project-lite",
  "socket2",
  "tokio",
  "tower-service",
@@ -629,21 +624,44 @@
 ]
 
 [[package]]
-name = "idna"
-version = "0.2.3"
+name = "iana-time-zone"
+version = "0.1.53"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
+checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
 dependencies = [
- "matches",
+ "android_system_properties",
+ "core-foundation-sys",
+ "iana-time-zone-haiku",
+ "js-sys",
+ "wasm-bindgen",
+ "winapi 0.3.9",
+]
+
+[[package]]
+name = "iana-time-zone-haiku"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
+dependencies = [
+ "cxx",
+ "cxx-build",
+]
+
+[[package]]
+name = "idna"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
+dependencies = [
  "unicode-bidi",
  "unicode-normalization",
 ]
 
 [[package]]
 name = "indexmap"
-version = "1.7.0"
+version = "1.9.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
+checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
 dependencies = [
  "autocfg",
  "hashbrown",
@@ -670,12 +688,12 @@
 ]
 
 [[package]]
-name = "input_buffer"
-version = "0.3.1"
+name = "instant"
+version = "0.1.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "19a8a95243d5a0398cae618ec29477c6e3cb631152be5c19481f80bc71559754"
+checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
 dependencies = [
- "bytes 0.5.6",
+ "cfg-if 1.0.0",
 ]
 
 [[package]]
@@ -689,9 +707,18 @@
 
 [[package]]
 name = "itoa"
-version = "0.4.7"
+version = "1.0.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
+checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
+
+[[package]]
+name = "js-sys"
+version = "0.3.60"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
+dependencies = [
+ "wasm-bindgen",
+]
 
 [[package]]
 name = "kernel32-sys"
@@ -717,15 +744,34 @@
 
 [[package]]
 name = "libc"
-version = "0.2.97"
+version = "0.2.139"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6"
+checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
+
+[[package]]
+name = "link-cplusplus"
+version = "1.0.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
+dependencies = [
+ "cc",
+]
+
+[[package]]
+name = "lock_api"
+version = "0.4.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
+dependencies = [
+ "autocfg",
+ "scopeguard",
+]
 
 [[package]]
 name = "log"
-version = "0.4.14"
+version = "0.4.17"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
+checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
 dependencies = [
  "cfg-if 1.0.0",
 ]
@@ -744,9 +790,9 @@
 
 [[package]]
 name = "markup5ever"
-version = "0.10.1"
+version = "0.11.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
+checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
 dependencies = [
  "log",
  "phf",
@@ -757,60 +803,43 @@
 ]
 
 [[package]]
-name = "markup5ever_rcdom"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b"
-dependencies = [
- "html5ever",
- "markup5ever",
- "tendril",
- "xml5ever",
-]
-
-[[package]]
-name = "matches"
-version = "0.1.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
-
-[[package]]
 name = "mdbook"
-version = "0.4.10"
+version = "0.4.22"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b6da0e609de0d4a7e0d42367d91b87117e3dce74d3d1699efeda1fefb2a6fa85"
+checksum = "6b61566b406cbd75d81c634763d6c90779ca9db80202921c884348d172ada70d"
 dependencies = [
  "ammonia",
  "anyhow",
  "chrono",
  "clap",
+ "clap_complete",
  "elasticlunr-rs",
  "env_logger",
  "futures-util",
  "gitignore",
  "handlebars",
- "lazy_static",
  "log",
  "memchr",
  "notify",
- "open",
+ "once_cell",
+ "opener",
  "pulldown-cmark",
  "regex",
  "serde",
- "serde_derive",
  "serde_json",
  "shlex",
  "tempfile",
  "tokio",
  "toml",
+ "topological-sort",
  "warp",
 ]
 
 [[package]]
 name = "memchr"
-version = "2.4.0"
+version = "2.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
+checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
 
 [[package]]
 name = "mime"
@@ -820,9 +849,9 @@
 
 [[package]]
 name = "mime_guess"
-version = "2.0.3"
+version = "2.0.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
+checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
 dependencies = [
  "mime",
  "unicase",
@@ -848,6 +877,18 @@
 ]
 
 [[package]]
+name = "mio"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
+dependencies = [
+ "libc",
+ "log",
+ "wasi 0.11.0+wasi-snapshot-preview1",
+ "windows-sys",
+]
+
+[[package]]
 name = "mio-extras"
 version = "2.0.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -855,7 +896,7 @@
 dependencies = [
  "lazycell",
  "log",
- "mio",
+ "mio 0.6.23",
  "slab",
 ]
 
@@ -873,9 +914,9 @@
 
 [[package]]
 name = "net2"
-version = "0.2.37"
+version = "0.2.38"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
+checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
 dependencies = [
  "cfg-if 0.1.10",
  "libc",
@@ -900,7 +941,7 @@
  "fsevent-sys",
  "inotify",
  "libc",
- "mio",
+ "mio 0.6.23",
  "mio-extras",
  "walkdir",
  "winapi 0.3.9",
@@ -908,9 +949,9 @@
 
 [[package]]
 name = "num-integer"
-version = "0.1.44"
+version = "0.1.45"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
+checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
 dependencies = [
  "autocfg",
  "num-traits",
@@ -918,55 +959,89 @@
 
 [[package]]
 name = "num-traits"
-version = "0.2.14"
+version = "0.2.15"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
 dependencies = [
  "autocfg",
 ]
 
 [[package]]
-name = "opaque-debug"
-version = "0.2.3"
+name = "num_cpus"
+version = "1.15.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
-
-[[package]]
-name = "opaque-debug"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
-
-[[package]]
-name = "open"
-version = "1.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1711eb4b31ce4ad35b0f316d8dfba4fe5c7ad601c448446d84aae7a896627b20"
+checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
 dependencies = [
- "which",
+ "hermit-abi 0.2.6",
+ "libc",
+]
+
+[[package]]
+name = "once_cell"
+version = "1.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
+
+[[package]]
+name = "opener"
+version = "0.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ea3ebcd72a54701f56345f16785a6d3ac2df7e986d273eb4395c0b01db17952"
+dependencies = [
+ "bstr",
  "winapi 0.3.9",
 ]
 
 [[package]]
-name = "percent-encoding"
-version = "2.1.0"
+name = "os_str_bytes"
+version = "6.4.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
+checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
+
+[[package]]
+name = "parking_lot"
+version = "0.12.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
+dependencies = [
+ "lock_api",
+ "parking_lot_core",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.9.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
+dependencies = [
+ "cfg-if 1.0.0",
+ "libc",
+ "redox_syscall",
+ "smallvec",
+ "windows-sys",
+]
+
+[[package]]
+name = "percent-encoding"
+version = "2.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
 
 [[package]]
 name = "pest"
-version = "2.1.3"
+version = "2.5.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
+checksum = "4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a"
 dependencies = [
+ "thiserror",
  "ucd-trie",
 ]
 
 [[package]]
 name = "pest_derive"
-version = "2.1.0"
+version = "2.5.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
+checksum = "241cda393b0cdd65e62e07e12454f1f25d57017dcc514b1514cd3c4645e3a0a6"
 dependencies = [
  "pest",
  "pest_generator",
@@ -974,9 +1049,9 @@
 
 [[package]]
 name = "pest_generator"
-version = "2.1.3"
+version = "2.5.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
+checksum = "46b53634d8c8196302953c74d5352f33d0c512a9499bd2ce468fc9f4128fa27c"
 dependencies = [
  "pest",
  "pest_meta",
@@ -987,29 +1062,29 @@
 
 [[package]]
 name = "pest_meta"
-version = "2.1.3"
+version = "2.5.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
+checksum = "0ef4f1332a8d4678b41966bb4cc1d0676880e84183a1ecc3f4b69f03e99c7a51"
 dependencies = [
- "maplit",
+ "once_cell",
  "pest",
- "sha-1 0.8.2",
+ "sha2",
 ]
 
 [[package]]
 name = "phf"
-version = "0.8.0"
+version = "0.10.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
+checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
 dependencies = [
  "phf_shared",
 ]
 
 [[package]]
 name = "phf_codegen"
-version = "0.8.0"
+version = "0.10.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
+checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
 dependencies = [
  "phf_generator",
  "phf_shared",
@@ -1017,57 +1092,37 @@
 
 [[package]]
 name = "phf_generator"
-version = "0.8.0"
+version = "0.10.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
+checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
 dependencies = [
  "phf_shared",
- "rand 0.7.3",
+ "rand",
 ]
 
 [[package]]
 name = "phf_shared"
-version = "0.8.0"
+version = "0.10.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
+checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
 dependencies = [
  "siphasher",
 ]
 
 [[package]]
 name = "pin-project"
-version = "0.4.28"
+version = "1.0.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"
+checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
 dependencies = [
- "pin-project-internal 0.4.28",
-]
-
-[[package]]
-name = "pin-project"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4"
-dependencies = [
- "pin-project-internal 1.0.7",
+ "pin-project-internal",
 ]
 
 [[package]]
 name = "pin-project-internal"
-version = "0.4.28"
+version = "1.0.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn",
-]
-
-[[package]]
-name = "pin-project-internal"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f"
+checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -1076,15 +1131,9 @@
 
 [[package]]
 name = "pin-project-lite"
-version = "0.1.12"
+version = "0.2.9"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
-
-[[package]]
-name = "pin-project-lite"
-version = "0.2.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
+checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
 
 [[package]]
 name = "pin-utils"
@@ -1094,9 +1143,9 @@
 
 [[package]]
 name = "ppv-lite86"
-version = "0.2.10"
+version = "0.2.17"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
+checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
 
 [[package]]
 name = "precomputed-hash"
@@ -1105,93 +1154,43 @@
 checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
 
 [[package]]
-name = "proc-macro-hack"
-version = "0.5.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
-
-[[package]]
-name = "proc-macro-nested"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
-
-[[package]]
 name = "proc-macro2"
-version = "1.0.27"
+version = "1.0.49"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
+checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
 dependencies = [
- "unicode-xid",
+ "unicode-ident",
 ]
 
 [[package]]
 name = "pulldown-cmark"
-version = "0.7.2"
+version = "0.9.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca36dea94d187597e104a5c8e4b07576a8a45aa5db48a65e12940d3eb7461f55"
+checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
 dependencies = [
  "bitflags",
- "getopts",
  "memchr",
  "unicase",
 ]
 
 [[package]]
-name = "quick-error"
-version = "1.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
-
-[[package]]
-name = "quick-error"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
-
-[[package]]
 name = "quote"
-version = "1.0.9"
+version = "1.0.23"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
+checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
 dependencies = [
  "proc-macro2",
 ]
 
 [[package]]
 name = "rand"
-version = "0.7.3"
+version = "0.8.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-dependencies = [
- "getrandom 0.1.16",
- "libc",
- "rand_chacha 0.2.2",
- "rand_core 0.5.1",
- "rand_hc 0.2.0",
- "rand_pcg",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
 dependencies = [
  "libc",
- "rand_chacha 0.3.1",
- "rand_core 0.6.3",
- "rand_hc 0.3.1",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.5.1",
+ "rand_chacha",
+ "rand_core",
 ]
 
 [[package]]
@@ -1201,68 +1200,32 @@
 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
 dependencies = [
  "ppv-lite86",
- "rand_core 0.6.3",
+ "rand_core",
 ]
 
 [[package]]
 name = "rand_core"
-version = "0.5.1"
+version = "0.6.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
+checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
 dependencies = [
- "getrandom 0.1.16",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
-dependencies = [
- "getrandom 0.2.3",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-dependencies = [
- "rand_core 0.5.1",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
-dependencies = [
- "rand_core 0.6.3",
-]
-
-[[package]]
-name = "rand_pcg"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
-dependencies = [
- "rand_core 0.5.1",
+ "getrandom",
 ]
 
 [[package]]
 name = "redox_syscall"
-version = "0.2.9"
+version = "0.2.16"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee"
+checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
 dependencies = [
  "bitflags",
 ]
 
 [[package]]
 name = "regex"
-version = "1.5.4"
+version = "1.7.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
+checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
 dependencies = [
  "aho-corasick",
  "memchr",
@@ -1270,10 +1233,16 @@
 ]
 
 [[package]]
-name = "regex-syntax"
-version = "0.6.25"
+name = "regex-automata"
+version = "0.1.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
+checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
+
+[[package]]
+name = "regex-syntax"
+version = "0.6.28"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
 
 [[package]]
 name = "remove_dir_all"
@@ -1285,10 +1254,19 @@
 ]
 
 [[package]]
-name = "ryu"
-version = "1.0.5"
+name = "rustls-pemfile"
+version = "0.2.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
+checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
+dependencies = [
+ "base64",
+]
+
+[[package]]
+name = "ryu"
+version = "1.0.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
 
 [[package]]
 name = "same-file"
@@ -1301,21 +1279,36 @@
 
 [[package]]
 name = "scoped-tls"
-version = "1.0.0"
+version = "1.0.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
+checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
+
+[[package]]
+name = "scopeguard"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
+
+[[package]]
+name = "scratch"
+version = "1.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
 
 [[package]]
 name = "serde"
-version = "1.0.126"
+version = "1.0.152"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
+checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
+dependencies = [
+ "serde_derive",
+]
 
 [[package]]
 name = "serde_derive"
-version = "1.0.126"
+version = "1.0.152"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
+checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -1324,9 +1317,9 @@
 
 [[package]]
 name = "serde_json"
-version = "1.0.64"
+version = "1.0.91"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
+checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
 dependencies = [
  "itoa",
  "ryu",
@@ -1335,78 +1328,95 @@
 
 [[package]]
 name = "serde_urlencoded"
-version = "0.6.1"
+version = "0.7.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
+checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
 dependencies = [
- "dtoa",
+ "form_urlencoded",
  "itoa",
+ "ryu",
  "serde",
- "url",
 ]
 
 [[package]]
 name = "sha-1"
-version = "0.8.2"
+version = "0.10.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
+checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
 dependencies = [
- "block-buffer 0.7.3",
- "digest 0.8.1",
- "fake-simd",
- "opaque-debug 0.2.3",
-]
-
-[[package]]
-name = "sha-1"
-version = "0.9.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16"
-dependencies = [
- "block-buffer 0.9.0",
  "cfg-if 1.0.0",
  "cpufeatures",
- "digest 0.9.0",
- "opaque-debug 0.3.0",
+ "digest",
+]
+
+[[package]]
+name = "sha1"
+version = "0.10.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
+dependencies = [
+ "cfg-if 1.0.0",
+ "cpufeatures",
+ "digest",
+]
+
+[[package]]
+name = "sha2"
+version = "0.10.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
+dependencies = [
+ "cfg-if 1.0.0",
+ "cpufeatures",
+ "digest",
 ]
 
 [[package]]
 name = "shlex"
-version = "1.0.0"
+version = "1.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42a568c8f2cd051a4d283bd6eb0343ac214c1b0f1ac19f93e1175b2dee38c73d"
+checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
 
 [[package]]
 name = "siphasher"
-version = "0.3.5"
+version = "0.3.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cbce6d4507c7e4a3962091436e56e95290cb71fa302d0d270e32130b75fbff27"
+checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
 
 [[package]]
 name = "slab"
-version = "0.4.3"
+version = "0.4.7"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
+checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
+name = "smallvec"
+version = "1.10.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
 
 [[package]]
 name = "socket2"
-version = "0.3.19"
+version = "0.4.7"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
+checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
 dependencies = [
- "cfg-if 1.0.0",
  "libc",
  "winapi 0.3.9",
 ]
 
 [[package]]
 name = "string_cache"
-version = "0.8.1"
+version = "0.8.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a"
+checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
 dependencies = [
- "lazy_static",
  "new_debug_unreachable",
+ "once_cell",
+ "parking_lot",
  "phf_shared",
  "precomputed-hash",
  "serde",
@@ -1414,9 +1424,9 @@
 
 [[package]]
 name = "string_cache_codegen"
-version = "0.5.1"
+version = "0.5.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97"
+checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
 dependencies = [
  "phf_generator",
  "phf_shared",
@@ -1426,48 +1436,30 @@
 
 [[package]]
 name = "strsim"
-version = "0.8.0"
+version = "0.10.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-
-[[package]]
-name = "strum"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
-
-[[package]]
-name = "strum_macros"
-version = "0.21.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
-dependencies = [
- "heck",
- "proc-macro2",
- "quote",
- "syn",
-]
+checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
 
 [[package]]
 name = "syn"
-version = "1.0.73"
+version = "1.0.107"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
+checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
 dependencies = [
  "proc-macro2",
  "quote",
- "unicode-xid",
+ "unicode-ident",
 ]
 
 [[package]]
 name = "tempfile"
-version = "3.2.0"
+version = "3.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
+checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
 dependencies = [
  "cfg-if 1.0.0",
+ "fastrand",
  "libc",
- "rand 0.8.4",
  "redox_syscall",
  "remove_dir_all",
  "winapi 0.3.9",
@@ -1475,9 +1467,9 @@
 
 [[package]]
 name = "tendril"
-version = "0.4.2"
+version = "0.4.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33"
+checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
 dependencies = [
  "futf",
  "mac",
@@ -1486,37 +1478,55 @@
 
 [[package]]
 name = "termcolor"
-version = "1.1.2"
+version = "1.1.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
+checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
 dependencies = [
  "winapi-util",
 ]
 
 [[package]]
 name = "textwrap"
-version = "0.11.0"
+version = "0.16.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
+checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
+
+[[package]]
+name = "thiserror"
+version = "1.0.38"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
 dependencies = [
- "unicode-width",
+ "thiserror-impl",
+]
+
+[[package]]
+name = "thiserror-impl"
+version = "1.0.38"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
 ]
 
 [[package]]
 name = "time"
-version = "0.1.43"
+version = "0.1.45"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
+checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
 dependencies = [
  "libc",
+ "wasi 0.10.0+wasi-snapshot-preview1",
  "winapi 0.3.9",
 ]
 
 [[package]]
 name = "tinyvec"
-version = "1.2.0"
+version = "1.6.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
+checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
 dependencies = [
  "tinyvec_macros",
 ]
@@ -1529,27 +1539,27 @@
 
 [[package]]
 name = "tokio"
-version = "0.2.25"
+version = "1.24.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
+checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae"
 dependencies = [
- "bytes 0.5.6",
- "fnv",
- "futures-core",
- "iovec",
- "lazy_static",
+ "autocfg",
+ "bytes",
+ "libc",
  "memchr",
- "mio",
- "pin-project-lite 0.1.12",
- "slab",
+ "mio 0.8.5",
+ "num_cpus",
+ "pin-project-lite",
+ "socket2",
  "tokio-macros",
+ "windows-sys",
 ]
 
 [[package]]
 name = "tokio-macros"
-version = "0.2.6"
+version = "1.8.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
+checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -1557,114 +1567,120 @@
 ]
 
 [[package]]
-name = "tokio-tungstenite"
-version = "0.11.0"
+name = "tokio-stream"
+version = "0.1.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d9e878ad426ca286e4dcae09cbd4e1973a7f8987d97570e2469703dd7f5720c"
+checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
+dependencies = [
+ "futures-core",
+ "pin-project-lite",
+ "tokio",
+]
+
+[[package]]
+name = "tokio-tungstenite"
+version = "0.17.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181"
 dependencies = [
  "futures-util",
  "log",
- "pin-project 0.4.28",
  "tokio",
  "tungstenite",
 ]
 
 [[package]]
 name = "tokio-util"
-version = "0.3.1"
+version = "0.7.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
+checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
 dependencies = [
- "bytes 0.5.6",
+ "bytes",
  "futures-core",
  "futures-sink",
- "log",
- "pin-project-lite 0.1.12",
+ "pin-project-lite",
  "tokio",
+ "tracing",
 ]
 
 [[package]]
 name = "toml"
-version = "0.5.8"
+version = "0.5.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
+checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f"
 dependencies = [
  "serde",
 ]
 
 [[package]]
-name = "tower-service"
-version = "0.3.1"
+name = "topological-sort"
+version = "0.1.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
+checksum = "aa7c7f42dea4b1b99439786f5633aeb9c14c1b53f75e282803c2ec2ad545873c"
+
+[[package]]
+name = "tower-service"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
 
 [[package]]
 name = "tracing"
-version = "0.1.26"
+version = "0.1.37"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
+checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
 dependencies = [
  "cfg-if 1.0.0",
  "log",
- "pin-project-lite 0.2.7",
+ "pin-project-lite",
  "tracing-core",
 ]
 
 [[package]]
 name = "tracing-core"
-version = "0.1.18"
+version = "0.1.30"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
+checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
 dependencies = [
- "lazy_static",
-]
-
-[[package]]
-name = "tracing-futures"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
-dependencies = [
- "pin-project 1.0.7",
- "tracing",
+ "once_cell",
 ]
 
 [[package]]
 name = "try-lock"
-version = "0.2.3"
+version = "0.2.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
+checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
 
 [[package]]
 name = "tungstenite"
-version = "0.11.1"
+version = "0.17.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0308d80d86700c5878b9ef6321f020f29b1bb9d5ff3cab25e75e23f3a492a23"
+checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0"
 dependencies = [
- "base64 0.12.3",
+ "base64",
  "byteorder",
- "bytes 0.5.6",
+ "bytes",
  "http",
  "httparse",
- "input_buffer",
  "log",
- "rand 0.7.3",
- "sha-1 0.9.6",
+ "rand",
+ "sha-1",
+ "thiserror",
  "url",
  "utf-8",
 ]
 
 [[package]]
 name = "typenum"
-version = "1.13.0"
+version = "1.16.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
+checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
 
 [[package]]
 name = "ucd-trie"
-version = "0.1.3"
+version = "0.1.5"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
+checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
 
 [[package]]
 name = "unicase"
@@ -1677,75 +1693,53 @@
 
 [[package]]
 name = "unicode-bidi"
-version = "0.3.5"
+version = "0.3.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
-dependencies = [
- "matches",
-]
+checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
 
 [[package]]
 name = "unicode-normalization"
-version = "0.1.19"
+version = "0.1.22"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
+checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
 dependencies = [
  "tinyvec",
 ]
 
 [[package]]
-name = "unicode-segmentation"
-version = "1.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
-
-[[package]]
 name = "unicode-width"
-version = "0.1.8"
+version = "0.1.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
-
-[[package]]
-name = "unicode-xid"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
+checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
 
 [[package]]
 name = "url"
-version = "2.2.2"
+version = "2.3.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
+checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
 dependencies = [
  "form_urlencoded",
  "idna",
- "matches",
  "percent-encoding",
 ]
 
 [[package]]
-name = "urlencoding"
-version = "1.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a1f0175e03a0973cf4afd476bef05c26e228520400eb1fd473ad417b1c00ffb"
-
-[[package]]
 name = "utf-8"
 version = "0.7.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
 
 [[package]]
-name = "vec_map"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-
-[[package]]
 name = "version_check"
-version = "0.9.3"
+version = "0.9.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
+checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
 
 [[package]]
 name = "walkdir"
@@ -1770,54 +1764,101 @@
 
 [[package]]
 name = "warp"
-version = "0.2.5"
+version = "0.3.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f41be6df54c97904af01aa23e613d4521eed7ab23537cede692d4058f6449407"
+checksum = "ed7b8be92646fc3d18b06147664ebc5f48d222686cb11a8755e561a735aacc6d"
 dependencies = [
- "bytes 0.5.6",
- "futures",
+ "bytes",
+ "futures-channel",
+ "futures-util",
  "headers",
  "http",
  "hyper",
  "log",
  "mime",
  "mime_guess",
- "pin-project 0.4.28",
+ "percent-encoding",
+ "pin-project",
+ "rustls-pemfile",
  "scoped-tls",
  "serde",
  "serde_json",
  "serde_urlencoded",
  "tokio",
+ "tokio-stream",
  "tokio-tungstenite",
+ "tokio-util",
  "tower-service",
  "tracing",
- "tracing-futures",
- "urlencoding",
 ]
 
 [[package]]
 name = "wasi"
-version = "0.9.0+wasi-snapshot-preview1"
+version = "0.10.0+wasi-snapshot-preview1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
+checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
 
 [[package]]
 name = "wasi"
-version = "0.10.2+wasi-snapshot-preview1"
+version = "0.11.0+wasi-snapshot-preview1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
 
 [[package]]
-name = "which"
-version = "4.1.0"
+name = "wasm-bindgen"
+version = "0.2.83"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
+checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
 dependencies = [
- "either",
- "libc",
+ "cfg-if 1.0.0",
+ "wasm-bindgen-macro",
 ]
 
 [[package]]
+name = "wasm-bindgen-backend"
+version = "0.2.83"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
+dependencies = [
+ "bumpalo",
+ "log",
+ "once_cell",
+ "proc-macro2",
+ "quote",
+ "syn",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-macro"
+version = "0.2.83"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
+dependencies = [
+ "quote",
+ "wasm-bindgen-macro-support",
+]
+
+[[package]]
+name = "wasm-bindgen-macro-support"
+version = "0.2.83"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+ "wasm-bindgen-backend",
+ "wasm-bindgen-shared",
+]
+
+[[package]]
+name = "wasm-bindgen-shared"
+version = "0.2.83"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
+
+[[package]]
 name = "winapi"
 version = "0.2.8"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1861,6 +1902,63 @@
 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
 
 [[package]]
+name = "windows-sys"
+version = "0.42.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
+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",
+]
+
+[[package]]
+name = "windows_aarch64_gnullvm"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
+
+[[package]]
+name = "windows_aarch64_msvc"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
+
+[[package]]
+name = "windows_i686_gnu"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
+
+[[package]]
+name = "windows_i686_msvc"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
+
+[[package]]
+name = "windows_x86_64_gnu"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
+
+[[package]]
+name = "windows_x86_64_gnullvm"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
+
+[[package]]
+name = "windows_x86_64_msvc"
+version = "0.42.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
+
+[[package]]
 name = "ws2_32-sys"
 version = "0.2.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1869,15 +1967,3 @@
  "winapi 0.2.8",
  "winapi-build",
 ]
-
-[[package]]
-name = "xml5ever"
-version = "0.16.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b1b52e6e8614d4a58b8e70cf51ec0cc21b256ad8206708bcff8139b5bbd6a59"
-dependencies = [
- "log",
- "mac",
- "markup5ever",
- "time",
-]
diff --git a/third_party/rust/cargo/crates.bzl b/third_party/rust/cargo/crates.bzl
index 431c52e..ff10e2d 100644
--- a/third_party/rust/cargo/crates.bzl
+++ b/third_party/rust/cargo/crates.bzl
@@ -13,42 +13,42 @@
     """This function defines a collection of repos and should be called in a WORKSPACE file"""
     maybe(
         http_archive,
-        name = "raze__aho_corasick__0_7_18",
-        url = "https://crates.io/api/v1/crates/aho-corasick/0.7.18/download",
+        name = "raze__aho_corasick__0_7_20",
+        url = "https://crates.io/api/v1/crates/aho-corasick/0.7.20/download",
         type = "tar.gz",
-        sha256 = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f",
-        strip_prefix = "aho-corasick-0.7.18",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.aho-corasick-0.7.18.bazel"),
+        sha256 = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac",
+        strip_prefix = "aho-corasick-0.7.20",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.aho-corasick-0.7.20.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__ammonia__3_1_1",
-        url = "https://crates.io/api/v1/crates/ammonia/3.1.1/download",
+        name = "raze__ammonia__3_3_0",
+        url = "https://crates.io/api/v1/crates/ammonia/3.3.0/download",
         type = "tar.gz",
-        sha256 = "1ee7d6eb157f337c5cedc95ddf17f0cbc36d36eb7763c8e0d1c1aeb3722f6279",
-        strip_prefix = "ammonia-3.1.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ammonia-3.1.1.bazel"),
+        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__ansi_term__0_11_0",
-        url = "https://crates.io/api/v1/crates/ansi_term/0.11.0/download",
+        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 = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b",
-        strip_prefix = "ansi_term-0.11.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ansi_term-0.11.0.bazel"),
+        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__anyhow__1_0_41",
-        url = "https://crates.io/api/v1/crates/anyhow/1.0.41/download",
+        name = "raze__anyhow__1_0_68",
+        url = "https://crates.io/api/v1/crates/anyhow/1.0.68/download",
         type = "tar.gz",
-        sha256 = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61",
-        strip_prefix = "anyhow-1.0.41",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.anyhow-1.0.41.bazel"),
+        sha256 = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61",
+        strip_prefix = "anyhow-1.0.68",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.anyhow-1.0.68.bazel"),
     )
 
     maybe(
@@ -63,82 +63,62 @@
 
     maybe(
         http_archive,
-        name = "raze__autocfg__1_0_1",
-        url = "https://crates.io/api/v1/crates/autocfg/1.0.1/download",
+        name = "raze__autocfg__1_1_0",
+        url = "https://crates.io/api/v1/crates/autocfg/1.1.0/download",
         type = "tar.gz",
-        sha256 = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a",
-        strip_prefix = "autocfg-1.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.autocfg-1.0.1.bazel"),
+        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__base64__0_12_3",
-        url = "https://crates.io/api/v1/crates/base64/0.12.3/download",
+        name = "raze__base64__0_13_1",
+        url = "https://crates.io/api/v1/crates/base64/0.13.1/download",
         type = "tar.gz",
-        sha256 = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff",
-        strip_prefix = "base64-0.12.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.base64-0.12.3.bazel"),
+        sha256 = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8",
+        strip_prefix = "base64-0.13.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.base64-0.13.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__base64__0_13_0",
-        url = "https://crates.io/api/v1/crates/base64/0.13.0/download",
+        name = "raze__bitflags__1_3_2",
+        url = "https://crates.io/api/v1/crates/bitflags/1.3.2/download",
         type = "tar.gz",
-        sha256 = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd",
-        strip_prefix = "base64-0.13.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.base64-0.13.0.bazel"),
+        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__1_2_1",
-        url = "https://crates.io/api/v1/crates/bitflags/1.2.1/download",
+        name = "raze__block_buffer__0_10_3",
+        url = "https://crates.io/api/v1/crates/block-buffer/0.10.3/download",
         type = "tar.gz",
-        sha256 = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693",
-        strip_prefix = "bitflags-1.2.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bitflags-1.2.1.bazel"),
+        sha256 = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e",
+        strip_prefix = "block-buffer-0.10.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.block-buffer-0.10.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__block_buffer__0_7_3",
-        url = "https://crates.io/api/v1/crates/block-buffer/0.7.3/download",
+        name = "raze__bstr__0_2_17",
+        url = "https://crates.io/api/v1/crates/bstr/0.2.17/download",
         type = "tar.gz",
-        sha256 = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b",
-        strip_prefix = "block-buffer-0.7.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.block-buffer-0.7.3.bazel"),
+        sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223",
+        strip_prefix = "bstr-0.2.17",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.bstr-0.2.17.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__block_buffer__0_9_0",
-        url = "https://crates.io/api/v1/crates/block-buffer/0.9.0/download",
+        name = "raze__bumpalo__3_11_1",
+        url = "https://crates.io/api/v1/crates/bumpalo/3.11.1/download",
         type = "tar.gz",
-        sha256 = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4",
-        strip_prefix = "block-buffer-0.9.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.block-buffer-0.9.0.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__block_padding__0_1_5",
-        url = "https://crates.io/api/v1/crates/block-padding/0.1.5/download",
-        type = "tar.gz",
-        sha256 = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5",
-        strip_prefix = "block-padding-0.1.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.block-padding-0.1.5.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__byte_tools__0_3_1",
-        url = "https://crates.io/api/v1/crates/byte-tools/0.3.1/download",
-        type = "tar.gz",
-        sha256 = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7",
-        strip_prefix = "byte-tools-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.byte-tools-0.3.1.bazel"),
+        sha256 = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba",
+        strip_prefix = "bumpalo-3.11.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.bumpalo-3.11.1.bazel"),
     )
 
     maybe(
@@ -153,22 +133,22 @@
 
     maybe(
         http_archive,
-        name = "raze__bytes__0_5_6",
-        url = "https://crates.io/api/v1/crates/bytes/0.5.6/download",
+        name = "raze__bytes__1_3_0",
+        url = "https://crates.io/api/v1/crates/bytes/1.3.0/download",
         type = "tar.gz",
-        sha256 = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38",
-        strip_prefix = "bytes-0.5.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bytes-0.5.6.bazel"),
+        sha256 = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c",
+        strip_prefix = "bytes-1.3.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.bytes-1.3.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__bytes__1_0_1",
-        url = "https://crates.io/api/v1/crates/bytes/1.0.1/download",
+        name = "raze__cc__1_0_78",
+        url = "https://crates.io/api/v1/crates/cc/1.0.78/download",
         type = "tar.gz",
-        sha256 = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040",
-        strip_prefix = "bytes-1.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.bytes-1.0.1.bazel"),
+        sha256 = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d",
+        strip_prefix = "cc-1.0.78",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.cc-1.0.78.bazel"),
     )
 
     maybe(
@@ -193,112 +173,172 @@
 
     maybe(
         http_archive,
-        name = "raze__chrono__0_4_19",
-        url = "https://crates.io/api/v1/crates/chrono/0.4.19/download",
+        name = "raze__chrono__0_4_23",
+        url = "https://crates.io/api/v1/crates/chrono/0.4.23/download",
         type = "tar.gz",
-        sha256 = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73",
-        strip_prefix = "chrono-0.4.19",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.chrono-0.4.19.bazel"),
+        sha256 = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f",
+        strip_prefix = "chrono-0.4.23",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.chrono-0.4.23.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__clap__2_33_3",
-        url = "https://crates.io/api/v1/crates/clap/2.33.3/download",
+        name = "raze__clap__3_2_23",
+        url = "https://crates.io/api/v1/crates/clap/3.2.23/download",
         type = "tar.gz",
-        sha256 = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002",
-        strip_prefix = "clap-2.33.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap-2.33.3.bazel"),
+        sha256 = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5",
+        strip_prefix = "clap-3.2.23",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap-3.2.23.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__cpufeatures__0_1_5",
-        url = "https://crates.io/api/v1/crates/cpufeatures/0.1.5/download",
+        name = "raze__clap_complete__3_2_5",
+        url = "https://crates.io/api/v1/crates/clap_complete/3.2.5/download",
         type = "tar.gz",
-        sha256 = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef",
-        strip_prefix = "cpufeatures-0.1.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.cpufeatures-0.1.5.bazel"),
+        sha256 = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8",
+        strip_prefix = "clap_complete-3.2.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_complete-3.2.5.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__digest__0_8_1",
-        url = "https://crates.io/api/v1/crates/digest/0.8.1/download",
+        name = "raze__clap_lex__0_2_4",
+        url = "https://crates.io/api/v1/crates/clap_lex/0.2.4/download",
         type = "tar.gz",
-        sha256 = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5",
-        strip_prefix = "digest-0.8.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.digest-0.8.1.bazel"),
+        sha256 = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5",
+        strip_prefix = "clap_lex-0.2.4",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.clap_lex-0.2.4.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__digest__0_9_0",
-        url = "https://crates.io/api/v1/crates/digest/0.9.0/download",
+        name = "raze__codespan_reporting__0_11_1",
+        url = "https://crates.io/api/v1/crates/codespan-reporting/0.11.1/download",
         type = "tar.gz",
-        sha256 = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066",
-        strip_prefix = "digest-0.9.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.digest-0.9.0.bazel"),
+        sha256 = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e",
+        strip_prefix = "codespan-reporting-0.11.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.codespan-reporting-0.11.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__dtoa__0_4_8",
-        url = "https://crates.io/api/v1/crates/dtoa/0.4.8/download",
+        name = "raze__core_foundation_sys__0_8_3",
+        url = "https://crates.io/api/v1/crates/core-foundation-sys/0.8.3/download",
         type = "tar.gz",
-        sha256 = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0",
-        strip_prefix = "dtoa-0.4.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.dtoa-0.4.8.bazel"),
+        sha256 = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc",
+        strip_prefix = "core-foundation-sys-0.8.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.core-foundation-sys-0.8.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__either__1_6_1",
-        url = "https://crates.io/api/v1/crates/either/1.6.1/download",
+        name = "raze__cpufeatures__0_2_5",
+        url = "https://crates.io/api/v1/crates/cpufeatures/0.2.5/download",
         type = "tar.gz",
-        sha256 = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457",
-        strip_prefix = "either-1.6.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.either-1.6.1.bazel"),
+        sha256 = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320",
+        strip_prefix = "cpufeatures-0.2.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.cpufeatures-0.2.5.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__elasticlunr_rs__2_3_13",
-        url = "https://crates.io/api/v1/crates/elasticlunr-rs/2.3.13/download",
+        name = "raze__crypto_common__0_1_6",
+        url = "https://crates.io/api/v1/crates/crypto-common/0.1.6/download",
         type = "tar.gz",
-        sha256 = "515a402b5acb08002194dd926065be7733003bb37ac0f030dfd39160028238e1",
-        strip_prefix = "elasticlunr-rs-2.3.13",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.elasticlunr-rs-2.3.13.bazel"),
+        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__env_logger__0_7_1",
-        url = "https://crates.io/api/v1/crates/env_logger/0.7.1/download",
+        name = "raze__cxx__1_0_86",
+        url = "https://crates.io/api/v1/crates/cxx/1.0.86/download",
         type = "tar.gz",
-        sha256 = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36",
-        strip_prefix = "env_logger-0.7.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.env_logger-0.7.1.bazel"),
+        sha256 = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579",
+        strip_prefix = "cxx-1.0.86",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.cxx-1.0.86.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__fake_simd__0_1_2",
-        url = "https://crates.io/api/v1/crates/fake-simd/0.1.2/download",
+        name = "raze__cxx_build__1_0_86",
+        url = "https://crates.io/api/v1/crates/cxx-build/1.0.86/download",
         type = "tar.gz",
-        sha256 = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed",
-        strip_prefix = "fake-simd-0.1.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.fake-simd-0.1.2.bazel"),
+        sha256 = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70",
+        strip_prefix = "cxx-build-1.0.86",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.cxx-build-1.0.86.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__filetime__0_2_14",
-        url = "https://crates.io/api/v1/crates/filetime/0.2.14/download",
+        name = "raze__cxxbridge_flags__1_0_86",
+        url = "https://crates.io/api/v1/crates/cxxbridge-flags/1.0.86/download",
         type = "tar.gz",
-        sha256 = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8",
-        strip_prefix = "filetime-0.2.14",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.filetime-0.2.14.bazel"),
+        sha256 = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c",
+        strip_prefix = "cxxbridge-flags-1.0.86",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.cxxbridge-flags-1.0.86.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__cxxbridge_macro__1_0_86",
+        url = "https://crates.io/api/v1/crates/cxxbridge-macro/1.0.86/download",
+        type = "tar.gz",
+        sha256 = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5",
+        strip_prefix = "cxxbridge-macro-1.0.86",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.cxxbridge-macro-1.0.86.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__digest__0_10_6",
+        url = "https://crates.io/api/v1/crates/digest/0.10.6/download",
+        type = "tar.gz",
+        sha256 = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f",
+        strip_prefix = "digest-0.10.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.digest-0.10.6.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__elasticlunr_rs__3_0_1",
+        url = "https://crates.io/api/v1/crates/elasticlunr-rs/3.0.1/download",
+        type = "tar.gz",
+        sha256 = "b94d9c8df0fe6879ca12e7633fdfe467c503722cc981fc463703472d2b876448",
+        strip_prefix = "elasticlunr-rs-3.0.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.elasticlunr-rs-3.0.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__env_logger__0_9_3",
+        url = "https://crates.io/api/v1/crates/env_logger/0.9.3/download",
+        type = "tar.gz",
+        sha256 = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7",
+        strip_prefix = "env_logger-0.9.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.env_logger-0.9.3.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__fastrand__1_8_0",
+        url = "https://crates.io/api/v1/crates/fastrand/1.8.0/download",
+        type = "tar.gz",
+        sha256 = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499",
+        strip_prefix = "fastrand-1.8.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.fastrand-1.8.0.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__filetime__0_2_19",
+        url = "https://crates.io/api/v1/crates/filetime/0.2.19/download",
+        type = "tar.gz",
+        sha256 = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9",
+        strip_prefix = "filetime-0.2.19",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.filetime-0.2.19.bazel"),
     )
 
     maybe(
@@ -313,12 +353,12 @@
 
     maybe(
         http_archive,
-        name = "raze__form_urlencoded__1_0_1",
-        url = "https://crates.io/api/v1/crates/form_urlencoded/1.0.1/download",
+        name = "raze__form_urlencoded__1_1_0",
+        url = "https://crates.io/api/v1/crates/form_urlencoded/1.1.0/download",
         type = "tar.gz",
-        sha256 = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191",
-        strip_prefix = "form_urlencoded-1.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.form_urlencoded-1.0.1.bazel"),
+        sha256 = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8",
+        strip_prefix = "form_urlencoded-1.1.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.form_urlencoded-1.1.0.bazel"),
     )
 
     maybe(
@@ -363,142 +403,92 @@
 
     maybe(
         http_archive,
-        name = "raze__futf__0_1_4",
-        url = "https://crates.io/api/v1/crates/futf/0.1.4/download",
+        name = "raze__futf__0_1_5",
+        url = "https://crates.io/api/v1/crates/futf/0.1.5/download",
         type = "tar.gz",
-        sha256 = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b",
-        strip_prefix = "futf-0.1.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futf-0.1.4.bazel"),
+        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__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures/0.3.15/download",
+        name = "raze__futures_channel__0_3_25",
+        url = "https://crates.io/api/v1/crates/futures-channel/0.3.25/download",
         type = "tar.gz",
-        sha256 = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27",
-        strip_prefix = "futures-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-0.3.15.bazel"),
+        sha256 = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed",
+        strip_prefix = "futures-channel-0.3.25",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-channel-0.3.25.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_channel__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-channel/0.3.15/download",
+        name = "raze__futures_core__0_3_25",
+        url = "https://crates.io/api/v1/crates/futures-core/0.3.25/download",
         type = "tar.gz",
-        sha256 = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2",
-        strip_prefix = "futures-channel-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-channel-0.3.15.bazel"),
+        sha256 = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac",
+        strip_prefix = "futures-core-0.3.25",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-core-0.3.25.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_core__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-core/0.3.15/download",
+        name = "raze__futures_macro__0_3_25",
+        url = "https://crates.io/api/v1/crates/futures-macro/0.3.25/download",
         type = "tar.gz",
-        sha256 = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1",
-        strip_prefix = "futures-core-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-core-0.3.15.bazel"),
+        sha256 = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d",
+        strip_prefix = "futures-macro-0.3.25",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-macro-0.3.25.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_io__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-io/0.3.15/download",
+        name = "raze__futures_sink__0_3_25",
+        url = "https://crates.io/api/v1/crates/futures-sink/0.3.25/download",
         type = "tar.gz",
-        sha256 = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1",
-        strip_prefix = "futures-io-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-io-0.3.15.bazel"),
+        sha256 = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9",
+        strip_prefix = "futures-sink-0.3.25",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-sink-0.3.25.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_macro__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-macro/0.3.15/download",
+        name = "raze__futures_task__0_3_25",
+        url = "https://crates.io/api/v1/crates/futures-task/0.3.25/download",
         type = "tar.gz",
-        sha256 = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121",
-        strip_prefix = "futures-macro-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-macro-0.3.15.bazel"),
+        sha256 = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea",
+        strip_prefix = "futures-task-0.3.25",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-task-0.3.25.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_sink__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-sink/0.3.15/download",
+        name = "raze__futures_util__0_3_25",
+        url = "https://crates.io/api/v1/crates/futures-util/0.3.25/download",
         type = "tar.gz",
-        sha256 = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282",
-        strip_prefix = "futures-sink-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-sink-0.3.15.bazel"),
+        sha256 = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6",
+        strip_prefix = "futures-util-0.3.25",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-util-0.3.25.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_task__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-task/0.3.15/download",
+        name = "raze__generic_array__0_14_6",
+        url = "https://crates.io/api/v1/crates/generic-array/0.14.6/download",
         type = "tar.gz",
-        sha256 = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae",
-        strip_prefix = "futures-task-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-task-0.3.15.bazel"),
+        sha256 = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9",
+        strip_prefix = "generic-array-0.14.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.generic-array-0.14.6.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__futures_util__0_3_15",
-        url = "https://crates.io/api/v1/crates/futures-util/0.3.15/download",
+        name = "raze__getrandom__0_2_8",
+        url = "https://crates.io/api/v1/crates/getrandom/0.2.8/download",
         type = "tar.gz",
-        sha256 = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967",
-        strip_prefix = "futures-util-0.3.15",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.futures-util-0.3.15.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__generic_array__0_12_4",
-        url = "https://crates.io/api/v1/crates/generic-array/0.12.4/download",
-        type = "tar.gz",
-        sha256 = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd",
-        strip_prefix = "generic-array-0.12.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.generic-array-0.12.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__generic_array__0_14_4",
-        url = "https://crates.io/api/v1/crates/generic-array/0.14.4/download",
-        type = "tar.gz",
-        sha256 = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817",
-        strip_prefix = "generic-array-0.14.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.generic-array-0.14.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__getopts__0_2_21",
-        url = "https://crates.io/api/v1/crates/getopts/0.2.21/download",
-        type = "tar.gz",
-        sha256 = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5",
-        strip_prefix = "getopts-0.2.21",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.getopts-0.2.21.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__getrandom__0_1_16",
-        url = "https://crates.io/api/v1/crates/getrandom/0.1.16/download",
-        type = "tar.gz",
-        sha256 = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce",
-        strip_prefix = "getrandom-0.1.16",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.getrandom-0.1.16.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__getrandom__0_2_3",
-        url = "https://crates.io/api/v1/crates/getrandom/0.2.3/download",
-        type = "tar.gz",
-        sha256 = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753",
-        strip_prefix = "getrandom-0.2.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.getrandom-0.2.3.bazel"),
+        sha256 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31",
+        strip_prefix = "getrandom-0.2.8",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.getrandom-0.2.8.bazel"),
     )
 
     maybe(
@@ -513,52 +503,52 @@
 
     maybe(
         http_archive,
-        name = "raze__glob__0_3_0",
-        url = "https://crates.io/api/v1/crates/glob/0.3.0/download",
+        name = "raze__glob__0_3_1",
+        url = "https://crates.io/api/v1/crates/glob/0.3.1/download",
         type = "tar.gz",
-        sha256 = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574",
-        strip_prefix = "glob-0.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.glob-0.3.0.bazel"),
+        sha256 = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b",
+        strip_prefix = "glob-0.3.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.glob-0.3.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__h2__0_2_7",
-        url = "https://crates.io/api/v1/crates/h2/0.2.7/download",
+        name = "raze__h2__0_3_15",
+        url = "https://crates.io/api/v1/crates/h2/0.3.15/download",
         type = "tar.gz",
-        sha256 = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535",
-        strip_prefix = "h2-0.2.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.h2-0.2.7.bazel"),
+        sha256 = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4",
+        strip_prefix = "h2-0.3.15",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.h2-0.3.15.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__handlebars__4_0_1",
-        url = "https://crates.io/api/v1/crates/handlebars/4.0.1/download",
+        name = "raze__handlebars__4_3_6",
+        url = "https://crates.io/api/v1/crates/handlebars/4.3.6/download",
         type = "tar.gz",
-        sha256 = "2060119114dd8a8bc87facce6384751af8280a7adc8e203c023c95cbb11f5663",
-        strip_prefix = "handlebars-4.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.handlebars-4.0.1.bazel"),
+        sha256 = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a",
+        strip_prefix = "handlebars-4.3.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.handlebars-4.3.6.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__hashbrown__0_11_2",
-        url = "https://crates.io/api/v1/crates/hashbrown/0.11.2/download",
+        name = "raze__hashbrown__0_12_3",
+        url = "https://crates.io/api/v1/crates/hashbrown/0.12.3/download",
         type = "tar.gz",
-        sha256 = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e",
-        strip_prefix = "hashbrown-0.11.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.hashbrown-0.11.2.bazel"),
+        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__headers__0_3_4",
-        url = "https://crates.io/api/v1/crates/headers/0.3.4/download",
+        name = "raze__headers__0_3_8",
+        url = "https://crates.io/api/v1/crates/headers/0.3.8/download",
         type = "tar.gz",
-        sha256 = "f0b7591fb62902706ae8e7aaff416b1b0fa2c0fd0878b46dc13baa3712d8a855",
-        strip_prefix = "headers-0.3.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.headers-0.3.4.bazel"),
+        sha256 = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584",
+        strip_prefix = "headers-0.3.8",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.headers-0.3.8.bazel"),
     )
 
     maybe(
@@ -573,16 +563,6 @@
 
     maybe(
         http_archive,
-        name = "raze__heck__0_3_3",
-        url = "https://crates.io/api/v1/crates/heck/0.3.3/download",
-        type = "tar.gz",
-        sha256 = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c",
-        strip_prefix = "heck-0.3.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.heck-0.3.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
         name = "raze__hermit_abi__0_1_19",
         url = "https://crates.io/api/v1/crates/hermit-abi/0.1.19/download",
         type = "tar.gz",
@@ -593,92 +573,122 @@
 
     maybe(
         http_archive,
-        name = "raze__html5ever__0_25_1",
-        url = "https://crates.io/api/v1/crates/html5ever/0.25.1/download",
+        name = "raze__hermit_abi__0_2_6",
+        url = "https://crates.io/api/v1/crates/hermit-abi/0.2.6/download",
         type = "tar.gz",
-        sha256 = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b",
-        strip_prefix = "html5ever-0.25.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.html5ever-0.25.1.bazel"),
+        sha256 = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7",
+        strip_prefix = "hermit-abi-0.2.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.hermit-abi-0.2.6.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__http__0_2_4",
-        url = "https://crates.io/api/v1/crates/http/0.2.4/download",
+        name = "raze__html5ever__0_26_0",
+        url = "https://crates.io/api/v1/crates/html5ever/0.26.0/download",
         type = "tar.gz",
-        sha256 = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11",
-        strip_prefix = "http-0.2.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.http-0.2.4.bazel"),
+        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_body__0_3_1",
-        url = "https://crates.io/api/v1/crates/http-body/0.3.1/download",
+        name = "raze__http__0_2_8",
+        url = "https://crates.io/api/v1/crates/http/0.2.8/download",
         type = "tar.gz",
-        sha256 = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b",
-        strip_prefix = "http-body-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.http-body-0.3.1.bazel"),
+        sha256 = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399",
+        strip_prefix = "http-0.2.8",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.http-0.2.8.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__httparse__1_4_1",
-        url = "https://crates.io/api/v1/crates/httparse/1.4.1/download",
+        name = "raze__http_body__0_4_5",
+        url = "https://crates.io/api/v1/crates/http-body/0.4.5/download",
         type = "tar.gz",
-        sha256 = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68",
-        strip_prefix = "httparse-1.4.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.httparse-1.4.1.bazel"),
+        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__httpdate__0_3_2",
-        url = "https://crates.io/api/v1/crates/httpdate/0.3.2/download",
+        name = "raze__httparse__1_8_0",
+        url = "https://crates.io/api/v1/crates/httparse/1.8.0/download",
         type = "tar.gz",
-        sha256 = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47",
-        strip_prefix = "httpdate-0.3.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.httpdate-0.3.2.bazel"),
+        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__humantime__1_3_0",
-        url = "https://crates.io/api/v1/crates/humantime/1.3.0/download",
+        name = "raze__httpdate__1_0_2",
+        url = "https://crates.io/api/v1/crates/httpdate/1.0.2/download",
         type = "tar.gz",
-        sha256 = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f",
-        strip_prefix = "humantime-1.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.humantime-1.3.0.bazel"),
+        sha256 = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421",
+        strip_prefix = "httpdate-1.0.2",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.httpdate-1.0.2.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__hyper__0_13_10",
-        url = "https://crates.io/api/v1/crates/hyper/0.13.10/download",
+        name = "raze__humantime__2_1_0",
+        url = "https://crates.io/api/v1/crates/humantime/2.1.0/download",
         type = "tar.gz",
-        sha256 = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb",
-        strip_prefix = "hyper-0.13.10",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.hyper-0.13.10.bazel"),
+        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__idna__0_2_3",
-        url = "https://crates.io/api/v1/crates/idna/0.2.3/download",
+        name = "raze__hyper__0_14_23",
+        url = "https://crates.io/api/v1/crates/hyper/0.14.23/download",
         type = "tar.gz",
-        sha256 = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8",
-        strip_prefix = "idna-0.2.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.idna-0.2.3.bazel"),
+        sha256 = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c",
+        strip_prefix = "hyper-0.14.23",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.hyper-0.14.23.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__indexmap__1_7_0",
-        url = "https://crates.io/api/v1/crates/indexmap/1.7.0/download",
+        name = "raze__iana_time_zone__0_1_53",
+        url = "https://crates.io/api/v1/crates/iana-time-zone/0.1.53/download",
         type = "tar.gz",
-        sha256 = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5",
-        strip_prefix = "indexmap-1.7.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.indexmap-1.7.0.bazel"),
+        sha256 = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765",
+        strip_prefix = "iana-time-zone-0.1.53",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.iana-time-zone-0.1.53.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__iana_time_zone_haiku__0_1_1",
+        url = "https://crates.io/api/v1/crates/iana-time-zone-haiku/0.1.1/download",
+        type = "tar.gz",
+        sha256 = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca",
+        strip_prefix = "iana-time-zone-haiku-0.1.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.iana-time-zone-haiku-0.1.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__idna__0_3_0",
+        url = "https://crates.io/api/v1/crates/idna/0.3.0/download",
+        type = "tar.gz",
+        sha256 = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6",
+        strip_prefix = "idna-0.3.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.idna-0.3.0.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__indexmap__1_9_2",
+        url = "https://crates.io/api/v1/crates/indexmap/1.9.2/download",
+        type = "tar.gz",
+        sha256 = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399",
+        strip_prefix = "indexmap-1.9.2",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.indexmap-1.9.2.bazel"),
     )
 
     maybe(
@@ -703,12 +713,12 @@
 
     maybe(
         http_archive,
-        name = "raze__input_buffer__0_3_1",
-        url = "https://crates.io/api/v1/crates/input_buffer/0.3.1/download",
+        name = "raze__instant__0_1_12",
+        url = "https://crates.io/api/v1/crates/instant/0.1.12/download",
         type = "tar.gz",
-        sha256 = "19a8a95243d5a0398cae618ec29477c6e3cb631152be5c19481f80bc71559754",
-        strip_prefix = "input_buffer-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.input_buffer-0.3.1.bazel"),
+        sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c",
+        strip_prefix = "instant-0.1.12",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.instant-0.1.12.bazel"),
     )
 
     maybe(
@@ -723,12 +733,22 @@
 
     maybe(
         http_archive,
-        name = "raze__itoa__0_4_7",
-        url = "https://crates.io/api/v1/crates/itoa/0.4.7/download",
+        name = "raze__itoa__1_0_5",
+        url = "https://crates.io/api/v1/crates/itoa/1.0.5/download",
         type = "tar.gz",
-        sha256 = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736",
-        strip_prefix = "itoa-0.4.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.itoa-0.4.7.bazel"),
+        sha256 = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440",
+        strip_prefix = "itoa-1.0.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.itoa-1.0.5.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__js_sys__0_3_60",
+        url = "https://crates.io/api/v1/crates/js-sys/0.3.60/download",
+        type = "tar.gz",
+        sha256 = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47",
+        strip_prefix = "js-sys-0.3.60",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.js-sys-0.3.60.bazel"),
     )
 
     maybe(
@@ -763,22 +783,42 @@
 
     maybe(
         http_archive,
-        name = "raze__libc__0_2_97",
-        url = "https://crates.io/api/v1/crates/libc/0.2.97/download",
+        name = "raze__libc__0_2_139",
+        url = "https://crates.io/api/v1/crates/libc/0.2.139/download",
         type = "tar.gz",
-        sha256 = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6",
-        strip_prefix = "libc-0.2.97",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.libc-0.2.97.bazel"),
+        sha256 = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79",
+        strip_prefix = "libc-0.2.139",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.libc-0.2.139.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__log__0_4_14",
-        url = "https://crates.io/api/v1/crates/log/0.4.14/download",
+        name = "raze__link_cplusplus__1_0_8",
+        url = "https://crates.io/api/v1/crates/link-cplusplus/1.0.8/download",
         type = "tar.gz",
-        sha256 = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710",
-        strip_prefix = "log-0.4.14",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.log-0.4.14.bazel"),
+        sha256 = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5",
+        strip_prefix = "link-cplusplus-1.0.8",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.link-cplusplus-1.0.8.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__lock_api__0_4_9",
+        url = "https://crates.io/api/v1/crates/lock_api/0.4.9/download",
+        type = "tar.gz",
+        sha256 = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df",
+        strip_prefix = "lock_api-0.4.9",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.lock_api-0.4.9.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__log__0_4_17",
+        url = "https://crates.io/api/v1/crates/log/0.4.17/download",
+        type = "tar.gz",
+        sha256 = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e",
+        strip_prefix = "log-0.4.17",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.log-0.4.17.bazel"),
     )
 
     maybe(
@@ -803,52 +843,32 @@
 
     maybe(
         http_archive,
-        name = "raze__markup5ever__0_10_1",
-        url = "https://crates.io/api/v1/crates/markup5ever/0.10.1/download",
+        name = "raze__markup5ever__0_11_0",
+        url = "https://crates.io/api/v1/crates/markup5ever/0.11.0/download",
         type = "tar.gz",
-        sha256 = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd",
-        strip_prefix = "markup5ever-0.10.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.markup5ever-0.10.1.bazel"),
+        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__markup5ever_rcdom__0_1_0",
-        url = "https://crates.io/api/v1/crates/markup5ever_rcdom/0.1.0/download",
+        name = "raze__mdbook__0_4_22",
+        url = "https://crates.io/api/v1/crates/mdbook/0.4.22/download",
         type = "tar.gz",
-        sha256 = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b",
-        strip_prefix = "markup5ever_rcdom-0.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.markup5ever_rcdom-0.1.0.bazel"),
+        sha256 = "6b61566b406cbd75d81c634763d6c90779ca9db80202921c884348d172ada70d",
+        strip_prefix = "mdbook-0.4.22",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.mdbook-0.4.22.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__matches__0_1_8",
-        url = "https://crates.io/api/v1/crates/matches/0.1.8/download",
+        name = "raze__memchr__2_5_0",
+        url = "https://crates.io/api/v1/crates/memchr/2.5.0/download",
         type = "tar.gz",
-        sha256 = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08",
-        strip_prefix = "matches-0.1.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.matches-0.1.8.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__mdbook__0_4_10",
-        url = "https://crates.io/api/v1/crates/mdbook/0.4.10/download",
-        type = "tar.gz",
-        sha256 = "b6da0e609de0d4a7e0d42367d91b87117e3dce74d3d1699efeda1fefb2a6fa85",
-        strip_prefix = "mdbook-0.4.10",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mdbook-0.4.10.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__memchr__2_4_0",
-        url = "https://crates.io/api/v1/crates/memchr/2.4.0/download",
-        type = "tar.gz",
-        sha256 = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc",
-        strip_prefix = "memchr-2.4.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.memchr-2.4.0.bazel"),
+        sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d",
+        strip_prefix = "memchr-2.5.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.memchr-2.5.0.bazel"),
     )
 
     maybe(
@@ -863,12 +883,12 @@
 
     maybe(
         http_archive,
-        name = "raze__mime_guess__2_0_3",
-        url = "https://crates.io/api/v1/crates/mime_guess/2.0.3/download",
+        name = "raze__mime_guess__2_0_4",
+        url = "https://crates.io/api/v1/crates/mime_guess/2.0.4/download",
         type = "tar.gz",
-        sha256 = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212",
-        strip_prefix = "mime_guess-2.0.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.mime_guess-2.0.3.bazel"),
+        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(
@@ -883,6 +903,16 @@
 
     maybe(
         http_archive,
+        name = "raze__mio__0_8_5",
+        url = "https://crates.io/api/v1/crates/mio/0.8.5/download",
+        type = "tar.gz",
+        sha256 = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de",
+        strip_prefix = "mio-0.8.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.mio-0.8.5.bazel"),
+    )
+
+    maybe(
+        http_archive,
         name = "raze__mio_extras__2_0_6",
         url = "https://crates.io/api/v1/crates/mio-extras/2.0.6/download",
         type = "tar.gz",
@@ -903,12 +933,12 @@
 
     maybe(
         http_archive,
-        name = "raze__net2__0_2_37",
-        url = "https://crates.io/api/v1/crates/net2/0.2.37/download",
+        name = "raze__net2__0_2_38",
+        url = "https://crates.io/api/v1/crates/net2/0.2.38/download",
         type = "tar.gz",
-        sha256 = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae",
-        strip_prefix = "net2-0.2.37",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.net2-0.2.37.bazel"),
+        sha256 = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631",
+        strip_prefix = "net2-0.2.38",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.net2-0.2.38.bazel"),
     )
 
     maybe(
@@ -933,202 +963,202 @@
 
     maybe(
         http_archive,
-        name = "raze__num_integer__0_1_44",
-        url = "https://crates.io/api/v1/crates/num-integer/0.1.44/download",
+        name = "raze__num_integer__0_1_45",
+        url = "https://crates.io/api/v1/crates/num-integer/0.1.45/download",
         type = "tar.gz",
-        sha256 = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db",
-        strip_prefix = "num-integer-0.1.44",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.num-integer-0.1.44.bazel"),
+        sha256 = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9",
+        strip_prefix = "num-integer-0.1.45",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.num-integer-0.1.45.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__num_traits__0_2_14",
-        url = "https://crates.io/api/v1/crates/num-traits/0.2.14/download",
+        name = "raze__num_traits__0_2_15",
+        url = "https://crates.io/api/v1/crates/num-traits/0.2.15/download",
         type = "tar.gz",
-        sha256 = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290",
-        strip_prefix = "num-traits-0.2.14",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.num-traits-0.2.14.bazel"),
+        sha256 = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd",
+        strip_prefix = "num-traits-0.2.15",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.num-traits-0.2.15.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__opaque_debug__0_2_3",
-        url = "https://crates.io/api/v1/crates/opaque-debug/0.2.3/download",
+        name = "raze__num_cpus__1_15_0",
+        url = "https://crates.io/api/v1/crates/num_cpus/1.15.0/download",
         type = "tar.gz",
-        sha256 = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c",
-        strip_prefix = "opaque-debug-0.2.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.opaque-debug-0.2.3.bazel"),
+        sha256 = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b",
+        strip_prefix = "num_cpus-1.15.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.num_cpus-1.15.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__opaque_debug__0_3_0",
-        url = "https://crates.io/api/v1/crates/opaque-debug/0.3.0/download",
+        name = "raze__once_cell__1_17_0",
+        url = "https://crates.io/api/v1/crates/once_cell/1.17.0/download",
         type = "tar.gz",
-        sha256 = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5",
-        strip_prefix = "opaque-debug-0.3.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.opaque-debug-0.3.0.bazel"),
+        sha256 = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66",
+        strip_prefix = "once_cell-1.17.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.once_cell-1.17.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__open__1_7_0",
-        url = "https://crates.io/api/v1/crates/open/1.7.0/download",
+        name = "raze__opener__0_5_0",
+        url = "https://crates.io/api/v1/crates/opener/0.5.0/download",
         type = "tar.gz",
-        sha256 = "1711eb4b31ce4ad35b0f316d8dfba4fe5c7ad601c448446d84aae7a896627b20",
-        strip_prefix = "open-1.7.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.open-1.7.0.bazel"),
+        sha256 = "4ea3ebcd72a54701f56345f16785a6d3ac2df7e986d273eb4395c0b01db17952",
+        strip_prefix = "opener-0.5.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.opener-0.5.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__percent_encoding__2_1_0",
-        url = "https://crates.io/api/v1/crates/percent-encoding/2.1.0/download",
+        name = "raze__os_str_bytes__6_4_1",
+        url = "https://crates.io/api/v1/crates/os_str_bytes/6.4.1/download",
         type = "tar.gz",
-        sha256 = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e",
-        strip_prefix = "percent-encoding-2.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.percent-encoding-2.1.0.bazel"),
+        sha256 = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee",
+        strip_prefix = "os_str_bytes-6.4.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.os_str_bytes-6.4.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__pest__2_1_3",
-        url = "https://crates.io/api/v1/crates/pest/2.1.3/download",
+        name = "raze__parking_lot__0_12_1",
+        url = "https://crates.io/api/v1/crates/parking_lot/0.12.1/download",
         type = "tar.gz",
-        sha256 = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53",
-        strip_prefix = "pest-2.1.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest-2.1.3.bazel"),
+        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__pest_derive__2_1_0",
-        url = "https://crates.io/api/v1/crates/pest_derive/2.1.0/download",
+        name = "raze__parking_lot_core__0_9_6",
+        url = "https://crates.io/api/v1/crates/parking_lot_core/0.9.6/download",
         type = "tar.gz",
-        sha256 = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0",
-        strip_prefix = "pest_derive-2.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_derive-2.1.0.bazel"),
+        sha256 = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf",
+        strip_prefix = "parking_lot_core-0.9.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.parking_lot_core-0.9.6.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__pest_generator__2_1_3",
-        url = "https://crates.io/api/v1/crates/pest_generator/2.1.3/download",
+        name = "raze__percent_encoding__2_2_0",
+        url = "https://crates.io/api/v1/crates/percent-encoding/2.2.0/download",
         type = "tar.gz",
-        sha256 = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55",
-        strip_prefix = "pest_generator-2.1.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_generator-2.1.3.bazel"),
+        sha256 = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e",
+        strip_prefix = "percent-encoding-2.2.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.percent-encoding-2.2.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__pest_meta__2_1_3",
-        url = "https://crates.io/api/v1/crates/pest_meta/2.1.3/download",
+        name = "raze__pest__2_5_3",
+        url = "https://crates.io/api/v1/crates/pest/2.5.3/download",
         type = "tar.gz",
-        sha256 = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d",
-        strip_prefix = "pest_meta-2.1.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_meta-2.1.3.bazel"),
+        sha256 = "4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a",
+        strip_prefix = "pest-2.5.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest-2.5.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__phf__0_8_0",
-        url = "https://crates.io/api/v1/crates/phf/0.8.0/download",
+        name = "raze__pest_derive__2_5_3",
+        url = "https://crates.io/api/v1/crates/pest_derive/2.5.3/download",
         type = "tar.gz",
-        sha256 = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12",
-        strip_prefix = "phf-0.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf-0.8.0.bazel"),
+        sha256 = "241cda393b0cdd65e62e07e12454f1f25d57017dcc514b1514cd3c4645e3a0a6",
+        strip_prefix = "pest_derive-2.5.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_derive-2.5.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__phf_codegen__0_8_0",
-        url = "https://crates.io/api/v1/crates/phf_codegen/0.8.0/download",
+        name = "raze__pest_generator__2_5_3",
+        url = "https://crates.io/api/v1/crates/pest_generator/2.5.3/download",
         type = "tar.gz",
-        sha256 = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815",
-        strip_prefix = "phf_codegen-0.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_codegen-0.8.0.bazel"),
+        sha256 = "46b53634d8c8196302953c74d5352f33d0c512a9499bd2ce468fc9f4128fa27c",
+        strip_prefix = "pest_generator-2.5.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_generator-2.5.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__phf_generator__0_8_0",
-        url = "https://crates.io/api/v1/crates/phf_generator/0.8.0/download",
+        name = "raze__pest_meta__2_5_3",
+        url = "https://crates.io/api/v1/crates/pest_meta/2.5.3/download",
         type = "tar.gz",
-        sha256 = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526",
-        strip_prefix = "phf_generator-0.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_generator-0.8.0.bazel"),
+        sha256 = "0ef4f1332a8d4678b41966bb4cc1d0676880e84183a1ecc3f4b69f03e99c7a51",
+        strip_prefix = "pest_meta-2.5.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pest_meta-2.5.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__phf_shared__0_8_0",
-        url = "https://crates.io/api/v1/crates/phf_shared/0.8.0/download",
+        name = "raze__phf__0_10_1",
+        url = "https://crates.io/api/v1/crates/phf/0.10.1/download",
         type = "tar.gz",
-        sha256 = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7",
-        strip_prefix = "phf_shared-0.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.phf_shared-0.8.0.bazel"),
+        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__pin_project__0_4_28",
-        url = "https://crates.io/api/v1/crates/pin-project/0.4.28/download",
+        name = "raze__phf_codegen__0_10_0",
+        url = "https://crates.io/api/v1/crates/phf_codegen/0.10.0/download",
         type = "tar.gz",
-        sha256 = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f",
-        strip_prefix = "pin-project-0.4.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-0.4.28.bazel"),
+        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__pin_project__1_0_7",
-        url = "https://crates.io/api/v1/crates/pin-project/1.0.7/download",
+        name = "raze__phf_generator__0_10_0",
+        url = "https://crates.io/api/v1/crates/phf_generator/0.10.0/download",
         type = "tar.gz",
-        sha256 = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4",
-        strip_prefix = "pin-project-1.0.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-1.0.7.bazel"),
+        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__pin_project_internal__0_4_28",
-        url = "https://crates.io/api/v1/crates/pin-project-internal/0.4.28/download",
+        name = "raze__phf_shared__0_10_0",
+        url = "https://crates.io/api/v1/crates/phf_shared/0.10.0/download",
         type = "tar.gz",
-        sha256 = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e",
-        strip_prefix = "pin-project-internal-0.4.28",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-internal-0.4.28.bazel"),
+        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_internal__1_0_7",
-        url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.7/download",
+        name = "raze__pin_project__1_0_12",
+        url = "https://crates.io/api/v1/crates/pin-project/1.0.12/download",
         type = "tar.gz",
-        sha256 = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f",
-        strip_prefix = "pin-project-internal-1.0.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-internal-1.0.7.bazel"),
+        sha256 = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc",
+        strip_prefix = "pin-project-1.0.12",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-1.0.12.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__pin_project_lite__0_1_12",
-        url = "https://crates.io/api/v1/crates/pin-project-lite/0.1.12/download",
+        name = "raze__pin_project_internal__1_0_12",
+        url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.12/download",
         type = "tar.gz",
-        sha256 = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777",
-        strip_prefix = "pin-project-lite-0.1.12",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-lite-0.1.12.bazel"),
+        sha256 = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55",
+        strip_prefix = "pin-project-internal-1.0.12",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-internal-1.0.12.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__pin_project_lite__0_2_7",
-        url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.7/download",
+        name = "raze__pin_project_lite__0_2_9",
+        url = "https://crates.io/api/v1/crates/pin-project-lite/0.2.9/download",
         type = "tar.gz",
-        sha256 = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443",
-        strip_prefix = "pin-project-lite-0.2.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-lite-0.2.7.bazel"),
+        sha256 = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116",
+        strip_prefix = "pin-project-lite-0.2.9",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pin-project-lite-0.2.9.bazel"),
     )
 
     maybe(
@@ -1143,12 +1173,12 @@
 
     maybe(
         http_archive,
-        name = "raze__ppv_lite86__0_2_10",
-        url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.10/download",
+        name = "raze__ppv_lite86__0_2_17",
+        url = "https://crates.io/api/v1/crates/ppv-lite86/0.2.17/download",
         type = "tar.gz",
-        sha256 = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857",
-        strip_prefix = "ppv-lite86-0.2.10",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ppv-lite86-0.2.10.bazel"),
+        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(
@@ -1163,102 +1193,42 @@
 
     maybe(
         http_archive,
-        name = "raze__proc_macro_hack__0_5_19",
-        url = "https://crates.io/api/v1/crates/proc-macro-hack/0.5.19/download",
+        name = "raze__proc_macro2__1_0_49",
+        url = "https://crates.io/api/v1/crates/proc-macro2/1.0.49/download",
         type = "tar.gz",
-        sha256 = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5",
-        strip_prefix = "proc-macro-hack-0.5.19",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.proc-macro-hack-0.5.19.bazel"),
+        sha256 = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5",
+        strip_prefix = "proc-macro2-1.0.49",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.proc-macro2-1.0.49.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__proc_macro_nested__0_1_7",
-        url = "https://crates.io/api/v1/crates/proc-macro-nested/0.1.7/download",
+        name = "raze__pulldown_cmark__0_9_2",
+        url = "https://crates.io/api/v1/crates/pulldown-cmark/0.9.2/download",
         type = "tar.gz",
-        sha256 = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086",
-        strip_prefix = "proc-macro-nested-0.1.7",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.proc-macro-nested-0.1.7.bazel"),
+        sha256 = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63",
+        strip_prefix = "pulldown-cmark-0.9.2",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.pulldown-cmark-0.9.2.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__proc_macro2__1_0_27",
-        url = "https://crates.io/api/v1/crates/proc-macro2/1.0.27/download",
+        name = "raze__quote__1_0_23",
+        url = "https://crates.io/api/v1/crates/quote/1.0.23/download",
         type = "tar.gz",
-        sha256 = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038",
-        strip_prefix = "proc-macro2-1.0.27",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.proc-macro2-1.0.27.bazel"),
+        sha256 = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b",
+        strip_prefix = "quote-1.0.23",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.quote-1.0.23.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__pulldown_cmark__0_7_2",
-        url = "https://crates.io/api/v1/crates/pulldown-cmark/0.7.2/download",
+        name = "raze__rand__0_8_5",
+        url = "https://crates.io/api/v1/crates/rand/0.8.5/download",
         type = "tar.gz",
-        sha256 = "ca36dea94d187597e104a5c8e4b07576a8a45aa5db48a65e12940d3eb7461f55",
-        strip_prefix = "pulldown-cmark-0.7.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.pulldown-cmark-0.7.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__quick_error__1_2_3",
-        url = "https://crates.io/api/v1/crates/quick-error/1.2.3/download",
-        type = "tar.gz",
-        sha256 = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0",
-        strip_prefix = "quick-error-1.2.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.quick-error-1.2.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__quick_error__2_0_1",
-        url = "https://crates.io/api/v1/crates/quick-error/2.0.1/download",
-        type = "tar.gz",
-        sha256 = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3",
-        strip_prefix = "quick-error-2.0.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.quick-error-2.0.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__quote__1_0_9",
-        url = "https://crates.io/api/v1/crates/quote/1.0.9/download",
-        type = "tar.gz",
-        sha256 = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7",
-        strip_prefix = "quote-1.0.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.quote-1.0.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rand__0_7_3",
-        url = "https://crates.io/api/v1/crates/rand/0.7.3/download",
-        type = "tar.gz",
-        sha256 = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03",
-        strip_prefix = "rand-0.7.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand-0.7.3.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rand__0_8_4",
-        url = "https://crates.io/api/v1/crates/rand/0.8.4/download",
-        type = "tar.gz",
-        sha256 = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8",
-        strip_prefix = "rand-0.8.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand-0.8.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__rand_chacha__0_2_2",
-        url = "https://crates.io/api/v1/crates/rand_chacha/0.2.2/download",
-        type = "tar.gz",
-        sha256 = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402",
-        strip_prefix = "rand_chacha-0.2.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_chacha-0.2.2.bazel"),
+        sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404",
+        strip_prefix = "rand-0.8.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand-0.8.5.bazel"),
     )
 
     maybe(
@@ -1273,82 +1243,52 @@
 
     maybe(
         http_archive,
-        name = "raze__rand_core__0_5_1",
-        url = "https://crates.io/api/v1/crates/rand_core/0.5.1/download",
+        name = "raze__rand_core__0_6_4",
+        url = "https://crates.io/api/v1/crates/rand_core/0.6.4/download",
         type = "tar.gz",
-        sha256 = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19",
-        strip_prefix = "rand_core-0.5.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_core-0.5.1.bazel"),
+        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__rand_core__0_6_3",
-        url = "https://crates.io/api/v1/crates/rand_core/0.6.3/download",
+        name = "raze__redox_syscall__0_2_16",
+        url = "https://crates.io/api/v1/crates/redox_syscall/0.2.16/download",
         type = "tar.gz",
-        sha256 = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7",
-        strip_prefix = "rand_core-0.6.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_core-0.6.3.bazel"),
+        sha256 = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a",
+        strip_prefix = "redox_syscall-0.2.16",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.redox_syscall-0.2.16.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__rand_hc__0_2_0",
-        url = "https://crates.io/api/v1/crates/rand_hc/0.2.0/download",
+        name = "raze__regex__1_7_1",
+        url = "https://crates.io/api/v1/crates/regex/1.7.1/download",
         type = "tar.gz",
-        sha256 = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c",
-        strip_prefix = "rand_hc-0.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_hc-0.2.0.bazel"),
+        sha256 = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733",
+        strip_prefix = "regex-1.7.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-1.7.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__rand_hc__0_3_1",
-        url = "https://crates.io/api/v1/crates/rand_hc/0.3.1/download",
+        name = "raze__regex_automata__0_1_10",
+        url = "https://crates.io/api/v1/crates/regex-automata/0.1.10/download",
         type = "tar.gz",
-        sha256 = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7",
-        strip_prefix = "rand_hc-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_hc-0.3.1.bazel"),
+        sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132",
+        strip_prefix = "regex-automata-0.1.10",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-automata-0.1.10.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__rand_pcg__0_2_1",
-        url = "https://crates.io/api/v1/crates/rand_pcg/0.2.1/download",
+        name = "raze__regex_syntax__0_6_28",
+        url = "https://crates.io/api/v1/crates/regex-syntax/0.6.28/download",
         type = "tar.gz",
-        sha256 = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429",
-        strip_prefix = "rand_pcg-0.2.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.rand_pcg-0.2.1.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__redox_syscall__0_2_9",
-        url = "https://crates.io/api/v1/crates/redox_syscall/0.2.9/download",
-        type = "tar.gz",
-        sha256 = "5ab49abadf3f9e1c4bc499e8845e152ad87d2ad2d30371841171169e9d75feee",
-        strip_prefix = "redox_syscall-0.2.9",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.redox_syscall-0.2.9.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__regex__1_5_4",
-        url = "https://crates.io/api/v1/crates/regex/1.5.4/download",
-        type = "tar.gz",
-        sha256 = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461",
-        strip_prefix = "regex-1.5.4",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-1.5.4.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__regex_syntax__0_6_25",
-        url = "https://crates.io/api/v1/crates/regex-syntax/0.6.25/download",
-        type = "tar.gz",
-        sha256 = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b",
-        strip_prefix = "regex-syntax-0.6.25",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-syntax-0.6.25.bazel"),
+        sha256 = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848",
+        strip_prefix = "regex-syntax-0.6.28",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.regex-syntax-0.6.28.bazel"),
     )
 
     maybe(
@@ -1363,12 +1303,22 @@
 
     maybe(
         http_archive,
-        name = "raze__ryu__1_0_5",
-        url = "https://crates.io/api/v1/crates/ryu/1.0.5/download",
+        name = "raze__rustls_pemfile__0_2_1",
+        url = "https://crates.io/api/v1/crates/rustls-pemfile/0.2.1/download",
         type = "tar.gz",
-        sha256 = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e",
-        strip_prefix = "ryu-1.0.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ryu-1.0.5.bazel"),
+        sha256 = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9",
+        strip_prefix = "rustls-pemfile-0.2.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.rustls-pemfile-0.2.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__ryu__1_0_12",
+        url = "https://crates.io/api/v1/crates/ryu/1.0.12/download",
+        type = "tar.gz",
+        sha256 = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde",
+        strip_prefix = "ryu-1.0.12",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.ryu-1.0.12.bazel"),
     )
 
     maybe(
@@ -1383,232 +1333,272 @@
 
     maybe(
         http_archive,
-        name = "raze__scoped_tls__1_0_0",
-        url = "https://crates.io/api/v1/crates/scoped-tls/1.0.0/download",
+        name = "raze__scoped_tls__1_0_1",
+        url = "https://crates.io/api/v1/crates/scoped-tls/1.0.1/download",
         type = "tar.gz",
-        sha256 = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2",
-        strip_prefix = "scoped-tls-1.0.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.scoped-tls-1.0.0.bazel"),
+        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__serde__1_0_126",
-        url = "https://crates.io/api/v1/crates/serde/1.0.126/download",
+        name = "raze__scopeguard__1_1_0",
+        url = "https://crates.io/api/v1/crates/scopeguard/1.1.0/download",
         type = "tar.gz",
-        sha256 = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03",
-        strip_prefix = "serde-1.0.126",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde-1.0.126.bazel"),
+        sha256 = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd",
+        strip_prefix = "scopeguard-1.1.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.scopeguard-1.1.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__serde_derive__1_0_126",
-        url = "https://crates.io/api/v1/crates/serde_derive/1.0.126/download",
+        name = "raze__scratch__1_0_3",
+        url = "https://crates.io/api/v1/crates/scratch/1.0.3/download",
         type = "tar.gz",
-        sha256 = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43",
-        strip_prefix = "serde_derive-1.0.126",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_derive-1.0.126.bazel"),
+        sha256 = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2",
+        strip_prefix = "scratch-1.0.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.scratch-1.0.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__serde_json__1_0_64",
-        url = "https://crates.io/api/v1/crates/serde_json/1.0.64/download",
+        name = "raze__serde__1_0_152",
+        url = "https://crates.io/api/v1/crates/serde/1.0.152/download",
         type = "tar.gz",
-        sha256 = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79",
-        strip_prefix = "serde_json-1.0.64",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_json-1.0.64.bazel"),
+        sha256 = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb",
+        strip_prefix = "serde-1.0.152",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde-1.0.152.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__serde_urlencoded__0_6_1",
-        url = "https://crates.io/api/v1/crates/serde_urlencoded/0.6.1/download",
+        name = "raze__serde_derive__1_0_152",
+        url = "https://crates.io/api/v1/crates/serde_derive/1.0.152/download",
         type = "tar.gz",
-        sha256 = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97",
-        strip_prefix = "serde_urlencoded-0.6.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_urlencoded-0.6.1.bazel"),
+        sha256 = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e",
+        strip_prefix = "serde_derive-1.0.152",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_derive-1.0.152.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__sha_1__0_8_2",
-        url = "https://crates.io/api/v1/crates/sha-1/0.8.2/download",
+        name = "raze__serde_json__1_0_91",
+        url = "https://crates.io/api/v1/crates/serde_json/1.0.91/download",
         type = "tar.gz",
-        sha256 = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df",
-        strip_prefix = "sha-1-0.8.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha-1-0.8.2.bazel"),
+        sha256 = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883",
+        strip_prefix = "serde_json-1.0.91",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.serde_json-1.0.91.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__sha_1__0_9_6",
-        url = "https://crates.io/api/v1/crates/sha-1/0.9.6/download",
+        name = "raze__serde_urlencoded__0_7_1",
+        url = "https://crates.io/api/v1/crates/serde_urlencoded/0.7.1/download",
         type = "tar.gz",
-        sha256 = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16",
-        strip_prefix = "sha-1-0.9.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha-1-0.9.6.bazel"),
+        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__shlex__1_0_0",
-        url = "https://crates.io/api/v1/crates/shlex/1.0.0/download",
+        name = "raze__sha_1__0_10_1",
+        url = "https://crates.io/api/v1/crates/sha-1/0.10.1/download",
         type = "tar.gz",
-        sha256 = "42a568c8f2cd051a4d283bd6eb0343ac214c1b0f1ac19f93e1175b2dee38c73d",
-        strip_prefix = "shlex-1.0.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.shlex-1.0.0.bazel"),
+        sha256 = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c",
+        strip_prefix = "sha-1-0.10.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha-1-0.10.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__siphasher__0_3_5",
-        url = "https://crates.io/api/v1/crates/siphasher/0.3.5/download",
+        name = "raze__sha1__0_10_5",
+        url = "https://crates.io/api/v1/crates/sha1/0.10.5/download",
         type = "tar.gz",
-        sha256 = "cbce6d4507c7e4a3962091436e56e95290cb71fa302d0d270e32130b75fbff27",
-        strip_prefix = "siphasher-0.3.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.siphasher-0.3.5.bazel"),
+        sha256 = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3",
+        strip_prefix = "sha1-0.10.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha1-0.10.5.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__slab__0_4_3",
-        url = "https://crates.io/api/v1/crates/slab/0.4.3/download",
+        name = "raze__sha2__0_10_6",
+        url = "https://crates.io/api/v1/crates/sha2/0.10.6/download",
         type = "tar.gz",
-        sha256 = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527",
-        strip_prefix = "slab-0.4.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.slab-0.4.3.bazel"),
+        sha256 = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0",
+        strip_prefix = "sha2-0.10.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.sha2-0.10.6.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__socket2__0_3_19",
-        url = "https://crates.io/api/v1/crates/socket2/0.3.19/download",
+        name = "raze__shlex__1_1_0",
+        url = "https://crates.io/api/v1/crates/shlex/1.1.0/download",
         type = "tar.gz",
-        sha256 = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e",
-        strip_prefix = "socket2-0.3.19",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.socket2-0.3.19.bazel"),
+        sha256 = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3",
+        strip_prefix = "shlex-1.1.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.shlex-1.1.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__string_cache__0_8_1",
-        url = "https://crates.io/api/v1/crates/string_cache/0.8.1/download",
+        name = "raze__siphasher__0_3_10",
+        url = "https://crates.io/api/v1/crates/siphasher/0.3.10/download",
         type = "tar.gz",
-        sha256 = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a",
-        strip_prefix = "string_cache-0.8.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache-0.8.1.bazel"),
+        sha256 = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de",
+        strip_prefix = "siphasher-0.3.10",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.siphasher-0.3.10.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__string_cache_codegen__0_5_1",
-        url = "https://crates.io/api/v1/crates/string_cache_codegen/0.5.1/download",
+        name = "raze__slab__0_4_7",
+        url = "https://crates.io/api/v1/crates/slab/0.4.7/download",
         type = "tar.gz",
-        sha256 = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97",
-        strip_prefix = "string_cache_codegen-0.5.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache_codegen-0.5.1.bazel"),
+        sha256 = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef",
+        strip_prefix = "slab-0.4.7",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.slab-0.4.7.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__strsim__0_8_0",
-        url = "https://crates.io/api/v1/crates/strsim/0.8.0/download",
+        name = "raze__smallvec__1_10_0",
+        url = "https://crates.io/api/v1/crates/smallvec/1.10.0/download",
         type = "tar.gz",
-        sha256 = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a",
-        strip_prefix = "strsim-0.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.strsim-0.8.0.bazel"),
+        sha256 = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0",
+        strip_prefix = "smallvec-1.10.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.smallvec-1.10.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__strum__0_21_0",
-        url = "https://crates.io/api/v1/crates/strum/0.21.0/download",
+        name = "raze__socket2__0_4_7",
+        url = "https://crates.io/api/v1/crates/socket2/0.4.7/download",
         type = "tar.gz",
-        sha256 = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2",
-        strip_prefix = "strum-0.21.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.strum-0.21.0.bazel"),
+        sha256 = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd",
+        strip_prefix = "socket2-0.4.7",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.socket2-0.4.7.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__strum_macros__0_21_1",
-        url = "https://crates.io/api/v1/crates/strum_macros/0.21.1/download",
+        name = "raze__string_cache__0_8_4",
+        url = "https://crates.io/api/v1/crates/string_cache/0.8.4/download",
         type = "tar.gz",
-        sha256 = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec",
-        strip_prefix = "strum_macros-0.21.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.strum_macros-0.21.1.bazel"),
+        sha256 = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08",
+        strip_prefix = "string_cache-0.8.4",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.string_cache-0.8.4.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__syn__1_0_73",
-        url = "https://crates.io/api/v1/crates/syn/1.0.73/download",
+        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 = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7",
-        strip_prefix = "syn-1.0.73",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.syn-1.0.73.bazel"),
+        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__tempfile__3_2_0",
-        url = "https://crates.io/api/v1/crates/tempfile/3.2.0/download",
+        name = "raze__strsim__0_10_0",
+        url = "https://crates.io/api/v1/crates/strsim/0.10.0/download",
         type = "tar.gz",
-        sha256 = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22",
-        strip_prefix = "tempfile-3.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tempfile-3.2.0.bazel"),
+        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__tendril__0_4_2",
-        url = "https://crates.io/api/v1/crates/tendril/0.4.2/download",
+        name = "raze__syn__1_0_107",
+        url = "https://crates.io/api/v1/crates/syn/1.0.107/download",
         type = "tar.gz",
-        sha256 = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33",
-        strip_prefix = "tendril-0.4.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tendril-0.4.2.bazel"),
+        sha256 = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5",
+        strip_prefix = "syn-1.0.107",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.syn-1.0.107.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__termcolor__1_1_2",
-        url = "https://crates.io/api/v1/crates/termcolor/1.1.2/download",
+        name = "raze__tempfile__3_3_0",
+        url = "https://crates.io/api/v1/crates/tempfile/3.3.0/download",
         type = "tar.gz",
-        sha256 = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4",
-        strip_prefix = "termcolor-1.1.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.termcolor-1.1.2.bazel"),
+        sha256 = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4",
+        strip_prefix = "tempfile-3.3.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tempfile-3.3.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__textwrap__0_11_0",
-        url = "https://crates.io/api/v1/crates/textwrap/0.11.0/download",
+        name = "raze__tendril__0_4_3",
+        url = "https://crates.io/api/v1/crates/tendril/0.4.3/download",
         type = "tar.gz",
-        sha256 = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060",
-        strip_prefix = "textwrap-0.11.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.textwrap-0.11.0.bazel"),
+        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__time__0_1_43",
-        url = "https://crates.io/api/v1/crates/time/0.1.43/download",
+        name = "raze__termcolor__1_1_3",
+        url = "https://crates.io/api/v1/crates/termcolor/1.1.3/download",
         type = "tar.gz",
-        sha256 = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438",
-        strip_prefix = "time-0.1.43",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.time-0.1.43.bazel"),
+        sha256 = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755",
+        strip_prefix = "termcolor-1.1.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.termcolor-1.1.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tinyvec__1_2_0",
-        url = "https://crates.io/api/v1/crates/tinyvec/1.2.0/download",
+        name = "raze__textwrap__0_16_0",
+        url = "https://crates.io/api/v1/crates/textwrap/0.16.0/download",
         type = "tar.gz",
-        sha256 = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342",
-        strip_prefix = "tinyvec-1.2.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tinyvec-1.2.0.bazel"),
+        sha256 = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d",
+        strip_prefix = "textwrap-0.16.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.textwrap-0.16.0.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__thiserror__1_0_38",
+        url = "https://crates.io/api/v1/crates/thiserror/1.0.38/download",
+        type = "tar.gz",
+        sha256 = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0",
+        strip_prefix = "thiserror-1.0.38",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.thiserror-1.0.38.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__thiserror_impl__1_0_38",
+        url = "https://crates.io/api/v1/crates/thiserror-impl/1.0.38/download",
+        type = "tar.gz",
+        sha256 = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f",
+        strip_prefix = "thiserror-impl-1.0.38",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.thiserror-impl-1.0.38.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__time__0_1_45",
+        url = "https://crates.io/api/v1/crates/time/0.1.45/download",
+        type = "tar.gz",
+        sha256 = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a",
+        strip_prefix = "time-0.1.45",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.time-0.1.45.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(
@@ -1623,132 +1613,142 @@
 
     maybe(
         http_archive,
-        name = "raze__tokio__0_2_25",
-        url = "https://crates.io/api/v1/crates/tokio/0.2.25/download",
+        name = "raze__tokio__1_24_1",
+        url = "https://crates.io/api/v1/crates/tokio/1.24.1/download",
         type = "tar.gz",
-        sha256 = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092",
-        strip_prefix = "tokio-0.2.25",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-0.2.25.bazel"),
+        sha256 = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae",
+        strip_prefix = "tokio-1.24.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-1.24.1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tokio_macros__0_2_6",
-        url = "https://crates.io/api/v1/crates/tokio-macros/0.2.6/download",
+        name = "raze__tokio_macros__1_8_2",
+        url = "https://crates.io/api/v1/crates/tokio-macros/1.8.2/download",
         type = "tar.gz",
-        sha256 = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a",
-        strip_prefix = "tokio-macros-0.2.6",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-macros-0.2.6.bazel"),
+        sha256 = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8",
+        strip_prefix = "tokio-macros-1.8.2",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-macros-1.8.2.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tokio_tungstenite__0_11_0",
-        url = "https://crates.io/api/v1/crates/tokio-tungstenite/0.11.0/download",
+        name = "raze__tokio_stream__0_1_11",
+        url = "https://crates.io/api/v1/crates/tokio-stream/0.1.11/download",
         type = "tar.gz",
-        sha256 = "6d9e878ad426ca286e4dcae09cbd4e1973a7f8987d97570e2469703dd7f5720c",
-        strip_prefix = "tokio-tungstenite-0.11.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-tungstenite-0.11.0.bazel"),
+        sha256 = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce",
+        strip_prefix = "tokio-stream-0.1.11",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-stream-0.1.11.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tokio_util__0_3_1",
-        url = "https://crates.io/api/v1/crates/tokio-util/0.3.1/download",
+        name = "raze__tokio_tungstenite__0_17_2",
+        url = "https://crates.io/api/v1/crates/tokio-tungstenite/0.17.2/download",
         type = "tar.gz",
-        sha256 = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499",
-        strip_prefix = "tokio-util-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-util-0.3.1.bazel"),
+        sha256 = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181",
+        strip_prefix = "tokio-tungstenite-0.17.2",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-tungstenite-0.17.2.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__toml__0_5_8",
-        url = "https://crates.io/api/v1/crates/toml/0.5.8/download",
+        name = "raze__tokio_util__0_7_4",
+        url = "https://crates.io/api/v1/crates/tokio-util/0.7.4/download",
         type = "tar.gz",
-        sha256 = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa",
-        strip_prefix = "toml-0.5.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.toml-0.5.8.bazel"),
+        sha256 = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740",
+        strip_prefix = "tokio-util-0.7.4",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tokio-util-0.7.4.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tower_service__0_3_1",
-        url = "https://crates.io/api/v1/crates/tower-service/0.3.1/download",
+        name = "raze__toml__0_5_10",
+        url = "https://crates.io/api/v1/crates/toml/0.5.10/download",
         type = "tar.gz",
-        sha256 = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6",
-        strip_prefix = "tower-service-0.3.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tower-service-0.3.1.bazel"),
+        sha256 = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f",
+        strip_prefix = "toml-0.5.10",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.toml-0.5.10.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tracing__0_1_26",
-        url = "https://crates.io/api/v1/crates/tracing/0.1.26/download",
+        name = "raze__topological_sort__0_1_0",
+        url = "https://crates.io/api/v1/crates/topological-sort/0.1.0/download",
         type = "tar.gz",
-        sha256 = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d",
-        strip_prefix = "tracing-0.1.26",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-0.1.26.bazel"),
+        sha256 = "aa7c7f42dea4b1b99439786f5633aeb9c14c1b53f75e282803c2ec2ad545873c",
+        strip_prefix = "topological-sort-0.1.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.topological-sort-0.1.0.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tracing_core__0_1_18",
-        url = "https://crates.io/api/v1/crates/tracing-core/0.1.18/download",
+        name = "raze__tower_service__0_3_2",
+        url = "https://crates.io/api/v1/crates/tower-service/0.3.2/download",
         type = "tar.gz",
-        sha256 = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052",
-        strip_prefix = "tracing-core-0.1.18",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-core-0.1.18.bazel"),
+        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_futures__0_2_5",
-        url = "https://crates.io/api/v1/crates/tracing-futures/0.2.5/download",
+        name = "raze__tracing__0_1_37",
+        url = "https://crates.io/api/v1/crates/tracing/0.1.37/download",
         type = "tar.gz",
-        sha256 = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2",
-        strip_prefix = "tracing-futures-0.2.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-futures-0.2.5.bazel"),
+        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__try_lock__0_2_3",
-        url = "https://crates.io/api/v1/crates/try-lock/0.2.3/download",
+        name = "raze__tracing_core__0_1_30",
+        url = "https://crates.io/api/v1/crates/tracing-core/0.1.30/download",
         type = "tar.gz",
-        sha256 = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642",
-        strip_prefix = "try-lock-0.2.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.try-lock-0.2.3.bazel"),
+        sha256 = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a",
+        strip_prefix = "tracing-core-0.1.30",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tracing-core-0.1.30.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__tungstenite__0_11_1",
-        url = "https://crates.io/api/v1/crates/tungstenite/0.11.1/download",
+        name = "raze__try_lock__0_2_4",
+        url = "https://crates.io/api/v1/crates/try-lock/0.2.4/download",
         type = "tar.gz",
-        sha256 = "f0308d80d86700c5878b9ef6321f020f29b1bb9d5ff3cab25e75e23f3a492a23",
-        strip_prefix = "tungstenite-0.11.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.tungstenite-0.11.1.bazel"),
+        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__typenum__1_13_0",
-        url = "https://crates.io/api/v1/crates/typenum/1.13.0/download",
+        name = "raze__tungstenite__0_17_3",
+        url = "https://crates.io/api/v1/crates/tungstenite/0.17.3/download",
         type = "tar.gz",
-        sha256 = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06",
-        strip_prefix = "typenum-1.13.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.typenum-1.13.0.bazel"),
+        sha256 = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0",
+        strip_prefix = "tungstenite-0.17.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.tungstenite-0.17.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__ucd_trie__0_1_3",
-        url = "https://crates.io/api/v1/crates/ucd-trie/0.1.3/download",
+        name = "raze__typenum__1_16_0",
+        url = "https://crates.io/api/v1/crates/typenum/1.16.0/download",
         type = "tar.gz",
-        sha256 = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c",
-        strip_prefix = "ucd-trie-0.1.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.ucd-trie-0.1.3.bazel"),
+        sha256 = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba",
+        strip_prefix = "typenum-1.16.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.typenum-1.16.0.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__ucd_trie__0_1_5",
+        url = "https://crates.io/api/v1/crates/ucd-trie/0.1.5/download",
+        type = "tar.gz",
+        sha256 = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81",
+        strip_prefix = "ucd-trie-0.1.5",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.ucd-trie-0.1.5.bazel"),
     )
 
     maybe(
@@ -1763,72 +1763,52 @@
 
     maybe(
         http_archive,
-        name = "raze__unicode_bidi__0_3_5",
-        url = "https://crates.io/api/v1/crates/unicode-bidi/0.3.5/download",
+        name = "raze__unicode_bidi__0_3_8",
+        url = "https://crates.io/api/v1/crates/unicode-bidi/0.3.8/download",
         type = "tar.gz",
-        sha256 = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0",
-        strip_prefix = "unicode-bidi-0.3.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-bidi-0.3.5.bazel"),
+        sha256 = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992",
+        strip_prefix = "unicode-bidi-0.3.8",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-bidi-0.3.8.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__unicode_normalization__0_1_19",
-        url = "https://crates.io/api/v1/crates/unicode-normalization/0.1.19/download",
+        name = "raze__unicode_ident__1_0_6",
+        url = "https://crates.io/api/v1/crates/unicode-ident/1.0.6/download",
         type = "tar.gz",
-        sha256 = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9",
-        strip_prefix = "unicode-normalization-0.1.19",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-normalization-0.1.19.bazel"),
+        sha256 = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc",
+        strip_prefix = "unicode-ident-1.0.6",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-ident-1.0.6.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__unicode_segmentation__1_8_0",
-        url = "https://crates.io/api/v1/crates/unicode-segmentation/1.8.0/download",
+        name = "raze__unicode_normalization__0_1_22",
+        url = "https://crates.io/api/v1/crates/unicode-normalization/0.1.22/download",
         type = "tar.gz",
-        sha256 = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b",
-        strip_prefix = "unicode-segmentation-1.8.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-segmentation-1.8.0.bazel"),
+        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__unicode_width__0_1_8",
-        url = "https://crates.io/api/v1/crates/unicode-width/0.1.8/download",
+        name = "raze__unicode_width__0_1_10",
+        url = "https://crates.io/api/v1/crates/unicode-width/0.1.10/download",
         type = "tar.gz",
-        sha256 = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3",
-        strip_prefix = "unicode-width-0.1.8",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-width-0.1.8.bazel"),
+        sha256 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b",
+        strip_prefix = "unicode-width-0.1.10",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-width-0.1.10.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__unicode_xid__0_2_2",
-        url = "https://crates.io/api/v1/crates/unicode-xid/0.2.2/download",
+        name = "raze__url__2_3_1",
+        url = "https://crates.io/api/v1/crates/url/2.3.1/download",
         type = "tar.gz",
-        sha256 = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3",
-        strip_prefix = "unicode-xid-0.2.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.unicode-xid-0.2.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__url__2_2_2",
-        url = "https://crates.io/api/v1/crates/url/2.2.2/download",
-        type = "tar.gz",
-        sha256 = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c",
-        strip_prefix = "url-2.2.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.url-2.2.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__urlencoding__1_3_3",
-        url = "https://crates.io/api/v1/crates/urlencoding/1.3.3/download",
-        type = "tar.gz",
-        sha256 = "5a1f0175e03a0973cf4afd476bef05c26e228520400eb1fd473ad417b1c00ffb",
-        strip_prefix = "urlencoding-1.3.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.urlencoding-1.3.3.bazel"),
+        sha256 = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643",
+        strip_prefix = "url-2.3.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.url-2.3.1.bazel"),
     )
 
     maybe(
@@ -1843,22 +1823,12 @@
 
     maybe(
         http_archive,
-        name = "raze__vec_map__0_8_2",
-        url = "https://crates.io/api/v1/crates/vec_map/0.8.2/download",
+        name = "raze__version_check__0_9_4",
+        url = "https://crates.io/api/v1/crates/version_check/0.9.4/download",
         type = "tar.gz",
-        sha256 = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191",
-        strip_prefix = "vec_map-0.8.2",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.vec_map-0.8.2.bazel"),
-    )
-
-    maybe(
-        http_archive,
-        name = "raze__version_check__0_9_3",
-        url = "https://crates.io/api/v1/crates/version_check/0.9.3/download",
-        type = "tar.gz",
-        sha256 = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe",
-        strip_prefix = "version_check-0.9.3",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.version_check-0.9.3.bazel"),
+        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(
@@ -1883,42 +1853,82 @@
 
     maybe(
         http_archive,
-        name = "raze__warp__0_2_5",
-        url = "https://crates.io/api/v1/crates/warp/0.2.5/download",
+        name = "raze__warp__0_3_3",
+        url = "https://crates.io/api/v1/crates/warp/0.3.3/download",
         type = "tar.gz",
-        sha256 = "f41be6df54c97904af01aa23e613d4521eed7ab23537cede692d4058f6449407",
-        strip_prefix = "warp-0.2.5",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.warp-0.2.5.bazel"),
+        sha256 = "ed7b8be92646fc3d18b06147664ebc5f48d222686cb11a8755e561a735aacc6d",
+        strip_prefix = "warp-0.3.3",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.warp-0.3.3.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__wasi__0_10_2_wasi_snapshot_preview1",
-        url = "https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download",
+        name = "raze__wasi__0_10_0_wasi_snapshot_preview1",
+        url = "https://crates.io/api/v1/crates/wasi/0.10.0+wasi-snapshot-preview1/download",
         type = "tar.gz",
-        sha256 = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6",
-        strip_prefix = "wasi-0.10.2+wasi-snapshot-preview1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel"),
+        sha256 = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f",
+        strip_prefix = "wasi-0.10.0+wasi-snapshot-preview1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasi-0.10.0+wasi-snapshot-preview1.bazel"),
     )
 
     maybe(
         http_archive,
-        name = "raze__wasi__0_9_0_wasi_snapshot_preview1",
-        url = "https://crates.io/api/v1/crates/wasi/0.9.0+wasi-snapshot-preview1/download",
+        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 = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519",
-        strip_prefix = "wasi-0.9.0+wasi-snapshot-preview1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasi-0.9.0+wasi-snapshot-preview1.bazel"),
+        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__which__4_1_0",
-        url = "https://crates.io/api/v1/crates/which/4.1.0/download",
+        name = "raze__wasm_bindgen__0_2_83",
+        url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.83/download",
         type = "tar.gz",
-        sha256 = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe",
-        strip_prefix = "which-4.1.0",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.which-4.1.0.bazel"),
+        sha256 = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268",
+        strip_prefix = "wasm-bindgen-0.2.83",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-0.2.83.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__wasm_bindgen_backend__0_2_83",
+        url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.83/download",
+        type = "tar.gz",
+        sha256 = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142",
+        strip_prefix = "wasm-bindgen-backend-0.2.83",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-backend-0.2.83.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__wasm_bindgen_macro__0_2_83",
+        url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.83/download",
+        type = "tar.gz",
+        sha256 = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810",
+        strip_prefix = "wasm-bindgen-macro-0.2.83",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-macro-0.2.83.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__wasm_bindgen_macro_support__0_2_83",
+        url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.83/download",
+        type = "tar.gz",
+        sha256 = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c",
+        strip_prefix = "wasm-bindgen-macro-support-0.2.83",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-macro-support-0.2.83.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__wasm_bindgen_shared__0_2_83",
+        url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.83/download",
+        type = "tar.gz",
+        sha256 = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f",
+        strip_prefix = "wasm-bindgen-shared-0.2.83",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.wasm-bindgen-shared-0.2.83.bazel"),
     )
 
     maybe(
@@ -1983,6 +1993,86 @@
 
     maybe(
         http_archive,
+        name = "raze__windows_sys__0_42_0",
+        url = "https://crates.io/api/v1/crates/windows-sys/0.42.0/download",
+        type = "tar.gz",
+        sha256 = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7",
+        strip_prefix = "windows-sys-0.42.0",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows-sys-0.42.0.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_aarch64_gnullvm__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_aarch64_gnullvm/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608",
+        strip_prefix = "windows_aarch64_gnullvm-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_aarch64_gnullvm-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_aarch64_msvc__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_aarch64_msvc/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7",
+        strip_prefix = "windows_aarch64_msvc-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_aarch64_msvc-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_i686_gnu__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_i686_gnu/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640",
+        strip_prefix = "windows_i686_gnu-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_i686_gnu-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_i686_msvc__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_i686_msvc/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605",
+        strip_prefix = "windows_i686_msvc-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_i686_msvc-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_x86_64_gnu__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_x86_64_gnu/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45",
+        strip_prefix = "windows_x86_64_gnu-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_gnu-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_x86_64_gnullvm__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_x86_64_gnullvm/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463",
+        strip_prefix = "windows_x86_64_gnullvm-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_gnullvm-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
+        name = "raze__windows_x86_64_msvc__0_42_1",
+        url = "https://crates.io/api/v1/crates/windows_x86_64_msvc/0.42.1/download",
+        type = "tar.gz",
+        sha256 = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd",
+        strip_prefix = "windows_x86_64_msvc-0.42.1",
+        build_file = Label("//third_party/rust/cargo/remote:BUILD.windows_x86_64_msvc-0.42.1.bazel"),
+    )
+
+    maybe(
+        http_archive,
         name = "raze__ws2_32_sys__0_2_1",
         url = "https://crates.io/api/v1/crates/ws2_32-sys/0.2.1/download",
         type = "tar.gz",
@@ -1990,13 +2080,3 @@
         strip_prefix = "ws2_32-sys-0.2.1",
         build_file = Label("//third_party/rust/cargo/remote:BUILD.ws2_32-sys-0.2.1.bazel"),
     )
-
-    maybe(
-        http_archive,
-        name = "raze__xml5ever__0_16_1",
-        url = "https://crates.io/api/v1/crates/xml5ever/0.16.1/download",
-        type = "tar.gz",
-        sha256 = "0b1b52e6e8614d4a58b8e70cf51ec0cc21b256ad8206708bcff8139b5bbd6a59",
-        strip_prefix = "xml5ever-0.16.1",
-        build_file = Label("//third_party/rust/cargo/remote:BUILD.xml5ever-0.16.1.bazel"),
-    )
diff --git a/third_party/rust/cargo/remote/BUILD.aho-corasick-0.7.18.bazel b/third_party/rust/cargo/remote/BUILD.aho-corasick-0.7.20.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.aho-corasick-0.7.18.bazel
rename to third_party/rust/cargo/remote/BUILD.aho-corasick-0.7.20.bazel
index 902f006..059e34a 100644
--- a/third_party/rust/cargo/remote/BUILD.aho-corasick-0.7.18.bazel
+++ b/third_party/rust/cargo/remote/BUILD.aho-corasick-0.7.20.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -38,7 +39,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,11 +46,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=aho_corasick",
         "manual",
     ],
-    version = "0.7.18",
+    version = "0.7.20",
     # buildifier: leave-alone
     deps = [
-        "@raze__memchr__2_4_0//:memchr",
+        "@raze__memchr__2_5_0//:memchr",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.ammonia-3.1.1.bazel b/third_party/rust/cargo/remote/BUILD.ammonia-3.3.0.bazel
similarity index 73%
rename from third_party/rust/cargo/remote/BUILD.ammonia-3.1.1.bazel
rename to third_party/rust/cargo/remote/BUILD.ammonia-3.3.0.bazel
index 119eac2..8e2e04a 100644
--- a/third_party/rust/cargo/remote/BUILD.ammonia-3.1.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.ammonia-3.3.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
 rust_library(
     name = "ammonia",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,18 +44,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=ammonia",
         "manual",
     ],
-    version = "3.1.1",
+    version = "3.3.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__html5ever__0_25_1//:html5ever",
-        "@raze__lazy_static__1_4_0//:lazy_static",
+        "@raze__html5ever__0_26_0//:html5ever",
         "@raze__maplit__1_0_2//:maplit",
-        "@raze__markup5ever_rcdom__0_1_0//:markup5ever_rcdom",
-        "@raze__matches__0_1_8//:matches",
-        "@raze__tendril__0_4_2//:tendril",
-        "@raze__url__2_2_2//:url",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__tendril__0_4_3//:tendril",
+        "@raze__url__2_3_1//:url",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.cpufeatures-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.android_system_properties-0.1.5.bazel
similarity index 78%
copy from third_party/rust/cargo/remote/BUILD.cpufeatures-0.1.5.bazel
copy to third_party/rust/cargo/remote/BUILD.android_system_properties-0.1.5.bazel
index 3dc729f..651ded2 100644
--- a/third_party/rust/cargo/remote/BUILD.cpufeatures-0.1.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.android_system_properties-0.1.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,13 +31,12 @@
 
 # Generated Targets
 
+# Unsupported target "time_zone" with type "example" omitted
+
 rust_library(
-    name = "cpufeatures",
+    name = "android_system_properties",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,14 +44,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=android_system_properties",
         "manual",
     ],
     version = "0.1.5",
     # buildifier: leave-alone
     deps = [
+        "@raze__libc__0_2_139//:libc",
     ],
 )
-
-# Unsupported target "aarch64" with type "test" omitted
-
-# Unsupported target "x86" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.ansi_term-0.11.0.bazel b/third_party/rust/cargo/remote/BUILD.ansi_term-0.11.0.bazel
deleted file mode 100644
index 52b475c..0000000
--- a/third_party/rust/cargo/remote/BUILD.ansi_term-0.11.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "colours" with type "example" omitted
-
-rust_library(
-    name = "ansi_term",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.11.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.anyhow-1.0.41.bazel b/third_party/rust/cargo/remote/BUILD.anyhow-1.0.68.bazel
similarity index 92%
rename from third_party/rust/cargo/remote/BUILD.anyhow-1.0.41.bazel
rename to third_party/rust/cargo/remote/BUILD.anyhow-1.0.68.bazel
index 41be689..5257736 100644
--- a/third_party/rust/cargo/remote/BUILD.anyhow-1.0.41.bazel
+++ b/third_party/rust/cargo/remote/BUILD.anyhow-1.0.68.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -55,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.41",
+    version = "1.0.68",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -69,7 +70,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,9 +77,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=anyhow",
         "manual",
     ],
-    version = "1.0.41",
+    version = "1.0.68",
     # buildifier: leave-alone
     deps = [
         ":anyhow_build_script",
@@ -102,6 +103,8 @@
 
 # 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
diff --git a/third_party/rust/cargo/remote/BUILD.atty-0.2.14.bazel b/third_party/rust/cargo/remote/BUILD.atty-0.2.14.bazel
index 22165a7..04cdaf1 100644
--- a/third_party/rust/cargo/remote/BUILD.atty-0.2.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.atty-0.2.14.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,10 +38,7 @@
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -48,17 +46,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=atty",
         "manual",
     ],
     version = "0.2.14",
     # buildifier: leave-alone
     deps = [
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.autocfg-1.0.1.bazel b/third_party/rust/cargo/remote/BUILD.autocfg-1.1.0.bazel
similarity index 91%
rename from third_party/rust/cargo/remote/BUILD.autocfg-1.0.1.bazel
rename to third_party/rust/cargo/remote/BUILD.autocfg-1.1.0.bazel
index bebb52a..6978f3a 100644
--- a/third_party/rust/cargo/remote/BUILD.autocfg-1.0.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.autocfg-1.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,10 +42,7 @@
 rust_library(
     name = "autocfg",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -52,9 +50,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=autocfg",
         "manual",
     ],
-    version = "1.0.1",
+    version = "1.1.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.base64-0.12.3.bazel b/third_party/rust/cargo/remote/BUILD.base64-0.12.3.bazel
deleted file mode 100644
index 79b12df..0000000
--- a/third_party/rust/cargo/remote/BUILD.base64-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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "make_tables" with type "example" omitted
-
-rust_library(
-    name = "base64",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.12.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "decode" with type "test" omitted
-
-# Unsupported target "encode" with type "test" omitted
-
-# Unsupported target "helpers" with type "test" omitted
-
-# Unsupported target "tests" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.base64-0.13.0.bazel b/third_party/rust/cargo/remote/BUILD.base64-0.13.1.bazel
similarity index 92%
rename from third_party/rust/cargo/remote/BUILD.base64-0.13.0.bazel
rename to third_party/rust/cargo/remote/BUILD.base64-0.13.1.bazel
index ffff195..020ac54 100644
--- a/third_party/rust/cargo/remote/BUILD.base64-0.13.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.base64-0.13.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -44,7 +45,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -52,9 +52,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=base64",
         "manual",
     ],
-    version = "0.13.0",
+    version = "0.13.1",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.bazel b/third_party/rust/cargo/remote/BUILD.bazel
index e69de29..b49fb68 100644
--- a/third_party/rust/cargo/remote/BUILD.bazel
+++ b/third_party/rust/cargo/remote/BUILD.bazel
@@ -0,0 +1,17 @@
+# 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.2.1.bazel b/third_party/rust/cargo/remote/BUILD.bitflags-1.2.1.bazel
deleted file mode 100644
index fb6e440..0000000
--- a/third_party/rust/cargo/remote/BUILD.bitflags-1.2.1.bazel
+++ /dev/null
@@ -1,85 +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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "bitflags_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-        "default",
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.2.1",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "bitflags",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.2.1",
-    # buildifier: leave-alone
-    deps = [
-        ":bitflags_build_script",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.bitflags-1.3.2.bazel
similarity index 79%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.bitflags-1.3.2.bazel
index f09bed8..fe86954 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.bitflags-1.3.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,14 +32,12 @@
 # Generated Targets
 
 rust_library(
-    name = "siphasher",
+    name = "bitflags",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
-        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +45,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=bitflags",
         "manual",
     ],
-    version = "0.3.5",
+    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.opaque-debug-0.3.0.bazel b/third_party/rust/cargo/remote/BUILD.block-buffer-0.10.3.bazel
similarity index 82%
rename from third_party/rust/cargo/remote/BUILD.opaque-debug-0.3.0.bazel
rename to third_party/rust/cargo/remote/BUILD.block-buffer-0.10.3.bazel
index b6b1351..505c629 100644
--- a/third_party/rust/cargo/remote/BUILD.opaque-debug-0.3.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.block-buffer-0.10.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,12 +32,9 @@
 # Generated Targets
 
 rust_library(
-    name = "opaque_debug",
+    name = "block_buffer",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,11 +42,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=block-buffer",
         "manual",
     ],
-    version = "0.3.0",
+    version = "0.10.3",
     # buildifier: leave-alone
     deps = [
+        "@raze__generic_array__0_14_6//:generic_array",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.block-buffer-0.9.0.bazel b/third_party/rust/cargo/remote/BUILD.block-buffer-0.9.0.bazel
deleted file mode 100644
index abfbd37..0000000
--- a/third_party/rust/cargo/remote/BUILD.block-buffer-0.9.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.9.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__generic_array__0_14_4//:generic_array",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.block-padding-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.block-padding-0.1.5.bazel
deleted file mode 100644
index a91ad38..0000000
--- a/third_party/rust/cargo/remote/BUILD.block-padding-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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_padding",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__byte_tools__0_3_1//:byte_tools",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.bstr-0.2.17.bazel b/third_party/rust/cargo/remote/BUILD.bstr-0.2.17.bazel
new file mode 100644
index 0000000..310d226
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.bstr-0.2.17.bazel
@@ -0,0 +1,87 @@
+"""
+@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 = [
+        "default",
+        "lazy_static",
+        "regex-automata",
+        "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 = "2018",
+    rustc_flags = [
+        "--cap-lints=allow",
+    ],
+    tags = [
+        "cargo-raze",
+        "crate-name=bstr",
+        "manual",
+    ],
+    version = "0.2.17",
+    # buildifier: leave-alone
+    deps = [
+        "@raze__lazy_static__1_4_0//:lazy_static",
+        "@raze__memchr__2_5_0//:memchr",
+        "@raze__regex_automata__0_1_10//:regex_automata",
+    ],
+)
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel b/third_party/rust/cargo/remote/BUILD.bumpalo-3.11.1.bazel
similarity index 76%
copy from third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
copy to third_party/rust/cargo/remote/BUILD.bumpalo-3.11.1.bazel
index 7a47c54..452671e 100644
--- a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.bumpalo-3.11.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,26 +31,26 @@
 
 # Generated Targets
 
+# Unsupported target "benches" with type "bench" omitted
+
 rust_library(
-    name = "either",
+    name = "bumpalo",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "use_std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=bumpalo",
         "manual",
     ],
-    version = "1.6.1",
+    version = "3.11.1",
     # buildifier: leave-alone
     deps = [
     ],
 )
+
+# Unsupported target "try_alloc" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.byte-tools-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.byte-tools-0.3.1.bazel
deleted file mode 100644
index 468cf4d..0000000
--- a/third_party/rust/cargo/remote/BUILD.byte-tools-0.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "byte_tools",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
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
index f1edd28..6243505 100644
--- a/third_party/rust/cargo/remote/BUILD.byteorder-1.4.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.byteorder-1.4.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -40,7 +41,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -48,6 +48,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=byteorder",
         "manual",
     ],
     version = "1.4.3",
diff --git a/third_party/rust/cargo/remote/BUILD.bytes-1.0.1.bazel b/third_party/rust/cargo/remote/BUILD.bytes-1.0.1.bazel
deleted file mode 100644
index eeb6e4d..0000000
--- a/third_party/rust/cargo/remote/BUILD.bytes-1.0.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.1",
-    # 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.bytes-0.5.6.bazel b/third_party/rust/cargo/remote/BUILD.bytes-1.3.0.bazel
similarity index 94%
rename from third_party/rust/cargo/remote/BUILD.bytes-0.5.6.bazel
rename to third_party/rust/cargo/remote/BUILD.bytes-1.3.0.bazel
index 2c30721..6025ac7 100644
--- a/third_party/rust/cargo/remote/BUILD.bytes-0.5.6.bazel
+++ b/third_party/rust/cargo/remote/BUILD.bytes-1.3.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -44,7 +45,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -52,9 +52,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=bytes",
         "manual",
     ],
-    version = "0.5.6",
+    version = "1.3.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.phf_generator-0.8.0.bazel b/third_party/rust/cargo/remote/BUILD.cc-1.0.78.bazel
similarity index 68%
copy from third_party/rust/cargo/remote/BUILD.phf_generator-0.8.0.bazel
copy to third_party/rust/cargo/remote/BUILD.cc-1.0.78.bazel
index ecff7a0..960ebea 100644
--- a/third_party/rust/cargo/remote/BUILD.phf_generator-0.8.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cc-1.0.78.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,21 +26,17 @@
 ])
 
 licenses([
-    "notice",  # MIT from expression "MIT"
+    "notice",  # MIT from expression "MIT OR Apache-2.0"
 ])
 
 # 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",
+    name = "cargo_bin_gcc_shim",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/bin/gen_hash_test.rs",
+    crate_root = "src/bin/gcc-shim.rs",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -47,24 +44,20 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=gcc-shim",
         "manual",
     ],
-    version = "0.8.0",
+    version = "1.0.78",
     # buildifier: leave-alone
     deps = [
-        ":phf_generator",
-        "@raze__phf_shared__0_8_0//:phf_shared",
-        "@raze__rand__0_7_3//:rand",
+        ":cc",
     ],
 )
 
 rust_library(
-    name = "phf_generator",
+    name = "cc",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -72,12 +65,19 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cc",
         "manual",
     ],
-    version = "0.8.0",
+    version = "1.0.78",
     # buildifier: leave-alone
     deps = [
-        "@raze__phf_shared__0_8_0//:phf_shared",
-        "@raze__rand__0_7_3//:rand",
     ],
 )
+
+# 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-0.1.10.bazel b/third_party/rust/cargo/remote/BUILD.cfg-if-0.1.10.bazel
index ebd8fd8..15db902 100644
--- a/third_party/rust/cargo/remote/BUILD.cfg-if-0.1.10.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cfg-if-0.1.10.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "cfg_if",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cfg-if",
         "manual",
     ],
     version = "0.1.10",
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
index 9246a06..a4a349b 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "cfg_if",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cfg-if",
         "manual",
     ],
     version = "1.0.0",
diff --git a/third_party/rust/cargo/remote/BUILD.chrono-0.4.19.bazel b/third_party/rust/cargo/remote/BUILD.chrono-0.4.23.bazel
similarity index 71%
rename from third_party/rust/cargo/remote/BUILD.chrono-0.4.19.bazel
rename to third_party/rust/cargo/remote/BUILD.chrono-0.4.23.bazel
index 5d5a2f9..7404ee8 100644
--- a/third_party/rust/cargo/remote/BUILD.chrono-0.4.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.chrono-0.4.23.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -40,31 +41,36 @@
     crate_features = [
         "clock",
         "default",
-        "libc",
+        "iana-time-zone",
+        "js-sys",
         "oldtime",
         "std",
         "time",
+        "wasm-bindgen",
+        "wasmbind",
         "winapi",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=chrono",
         "manual",
     ],
-    version = "0.4.19",
+    version = "0.4.23",
     # buildifier: leave-alone
     deps = [
-        "@raze__libc__0_2_97//:libc",
-        "@raze__num_integer__0_1_44//:num_integer",
-        "@raze__num_traits__0_2_14//:num_traits",
-        "@raze__time__0_1_43//:time",
+        "@raze__iana_time_zone__0_1_53//:iana_time_zone",
+        "@raze__num_integer__0_1_45//:num_integer",
+        "@raze__num_traits__0_2_15//:num_traits",
+        "@raze__time__0_1_45//:time",
     ],
 )
 
+# Unsupported target "dateutils" with type "test" omitted
+
 # Unsupported target "wasm" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.clap-2.33.3.bazel b/third_party/rust/cargo/remote/BUILD.clap-2.33.3.bazel
deleted file mode 100644
index 9df6a55..0000000
--- a/third_party/rust/cargo/remote/BUILD.clap-2.33.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "clap",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "ansi_term",
-        "atty",
-        "color",
-        "default",
-        "strsim",
-        "suggestions",
-        "vec_map",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "2.33.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__atty__0_2_14//:atty",
-        "@raze__bitflags__1_2_1//:bitflags",
-        "@raze__strsim__0_8_0//:strsim",
-        "@raze__textwrap__0_11_0//:textwrap",
-        "@raze__unicode_width__0_1_8//:unicode_width",
-        "@raze__vec_map__0_8_2//:vec_map",
-    ] + selects.with_or({
-        # cfg(not(windows))
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__ansi_term__0_11_0//:ansi_term",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.clap-3.2.23.bazel b/third_party/rust/cargo/remote/BUILD.clap-3.2.23.bazel
new file mode 100644
index 0000000..ea41ef3
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.clap-3.2.23.bazel
@@ -0,0 +1,221 @@
+"""
+@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 = [
+        "atty",
+        "cargo",
+        "color",
+        "default",
+        "once_cell",
+        "std",
+        "strsim",
+        "suggestions",
+        "termcolor",
+    ],
+    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 = "3.2.23",
+    # buildifier: leave-alone
+    deps = [
+        ":clap",
+        "@raze__atty__0_2_14//:atty",
+        "@raze__bitflags__1_3_2//:bitflags",
+        "@raze__clap_lex__0_2_4//:clap_lex",
+        "@raze__indexmap__1_9_2//:indexmap",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__strsim__0_10_0//:strsim",
+        "@raze__termcolor__1_1_3//:termcolor",
+        "@raze__textwrap__0_16_0//:textwrap",
+    ],
+)
+
+# 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_03_positional" with type "example" omitted
+
+# Unsupported target "03_03_positional_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 "custom-bool" 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 "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 = [
+        "atty",
+        "cargo",
+        "color",
+        "default",
+        "once_cell",
+        "std",
+        "strsim",
+        "suggestions",
+        "termcolor",
+    ],
+    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 = "3.2.23",
+    # buildifier: leave-alone
+    deps = [
+        "@raze__atty__0_2_14//:atty",
+        "@raze__bitflags__1_3_2//:bitflags",
+        "@raze__clap_lex__0_2_4//:clap_lex",
+        "@raze__indexmap__1_9_2//:indexmap",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__strsim__0_10_0//:strsim",
+        "@raze__termcolor__1_1_3//:termcolor",
+        "@raze__textwrap__0_16_0//:textwrap",
+    ],
+)
diff --git a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel b/third_party/rust/cargo/remote/BUILD.clap_complete-3.2.5.bazel
similarity index 67%
copy from third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
copy to third_party/rust/cargo/remote/BUILD.clap_complete-3.2.5.bazel
index 2998d99..93a4e32 100644
--- a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.clap_complete-3.2.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,34 +31,34 @@
 
 # Generated Targets
 
-# Unsupported target "decode" with type "example" omitted
+# Unsupported target "completion" with type "example" omitted
 
-# Unsupported target "enum_external" with type "example" omitted
+# Unsupported target "completion-derive" with type "example" omitted
 
-# Unsupported target "toml2json" with type "example" omitted
+# Unsupported target "dynamic" with type "example" omitted
 
 rust_library(
-    name = "toml",
+    name = "clap_complete",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
+    data = [] + [
+        "README.md",
+    ],
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=clap_complete",
         "manual",
     ],
-    version = "0.5.8",
+    version = "3.2.5",
     # buildifier: leave-alone
     deps = [
-        "@raze__serde__1_0_126//:serde",
+        "@raze__clap__3_2_23//:clap",
     ],
 )
-
-# Unsupported target "enum_external_deserialize" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel b/third_party/rust/cargo/remote/BUILD.clap_lex-0.2.4.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
copy to third_party/rust/cargo/remote/BUILD.clap_lex-0.2.4.bazel
index 7a47c54..8fcccb6 100644
--- a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.clap_lex-0.2.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,25 +32,22 @@
 # Generated Targets
 
 rust_library(
-    name = "either",
+    name = "clap_lex",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "use_std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=clap_lex",
         "manual",
     ],
-    version = "1.6.1",
+    version = "0.2.4",
     # buildifier: leave-alone
     deps = [
+        "@raze__os_str_bytes__6_4_1//:os_str_bytes",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel b/third_party/rust/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel
new file mode 100644
index 0000000..748b3d0
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.codespan-reporting-0.11.1.bazel
@@ -0,0 +1,66 @@
+"""
+@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 "custom_files" with type "example" omitted
+
+# Unsupported target "peg_calculator" with type "example" omitted
+
+# Unsupported target "readme_preview" with type "example" omitted
+
+# Unsupported target "reusable_diagnostic" with type "example" omitted
+
+# Unsupported target "term" with type "example" omitted
+
+rust_library(
+    name = "codespan_reporting",
+    srcs = glob(["**/*.rs"]),
+    crate_root = "src/lib.rs",
+    data = [],
+    edition = "2018",
+    rustc_flags = [
+        "--cap-lints=allow",
+    ],
+    tags = [
+        "cargo-raze",
+        "crate-name=codespan-reporting",
+        "manual",
+    ],
+    version = "0.11.1",
+    # buildifier: leave-alone
+    deps = [
+        "@raze__termcolor__1_1_3//:termcolor",
+        "@raze__unicode_width__0_1_10//:unicode_width",
+    ],
+)
+
+# Unsupported target "term" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.core-foundation-sys-0.8.3.bazel
similarity index 82%
rename from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
rename to third_party/rust/cargo/remote/BUILD.core-foundation-sys-0.8.3.bazel
index ef68494..4ec53bc 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.core-foundation-sys-0.8.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,12 +38,10 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "core_foundation_sys_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -53,19 +52,16 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.8.3",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "core_foundation_sys",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -73,11 +69,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=core-foundation-sys",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.8.3",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":core_foundation_sys_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.cpufeatures-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.cpufeatures-0.2.5.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.cpufeatures-0.1.5.bazel
rename to third_party/rust/cargo/remote/BUILD.cpufeatures-0.2.5.bazel
index 3dc729f..ee6fab0 100644
--- a/third_party/rust/cargo/remote/BUILD.cpufeatures-0.1.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cpufeatures-0.2.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "cpufeatures",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cpufeatures",
         "manual",
     ],
-    version = "0.1.5",
+    version = "0.2.5",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.crypto-common-0.1.6.bazel
similarity index 79%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.crypto-common-0.1.6.bazel
index f09bed8..03db9ee 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.crypto-common-0.1.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,14 +32,12 @@
 # Generated Targets
 
 rust_library(
-    name = "siphasher",
+    name = "crypto_common",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +45,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=crypto-common",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.1.6",
     # buildifier: leave-alone
     deps = [
+        "@raze__generic_array__0_14_6//:generic_array",
+        "@raze__typenum__1_16_0//:typenum",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel b/third_party/rust/cargo/remote/BUILD.cxx-1.0.86.bazel
similarity index 67%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel
copy to third_party/rust/cargo/remote/BUILD.cxx-1.0.86.bazel
index 4cf3ce9..61810f8 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cxx-1.0.86.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,14 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_hack_build_script",
+    name = "cxx_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
+    links = "cxxbridge1",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,33 +53,45 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.5.19",
+    version = "1.0.86",
     visibility = ["//visibility:private"],
     deps = [
+        "@raze__cc__1_0_78//:cc",
+        "@raze__cxxbridge_flags__1_0_86//:cxxbridge_flags",
     ],
 )
 
 rust_library(
-    name = "proc_macro_hack",
+    name = "cxx",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
+    proc_macro_deps = [
+        "@raze__cxxbridge_macro__1_0_86//:cxxbridge_macro",
+    ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cxx",
         "manual",
     ],
-    version = "0.5.19",
+    version = "1.0.86",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_hack_build_script",
+        ":cxx_build_script",
+        "@raze__link_cplusplus__1_0_8//:link_cplusplus",
     ],
 )
 
 # Unsupported target "compiletest" with type "test" omitted
+
+# Unsupported target "cxx_gen" with type "test" omitted
+
+# Unsupported target "cxx_string" with type "test" omitted
+
+# Unsupported target "test" with type "test" omitted
+
+# Unsupported target "unique_ptr" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel b/third_party/rust/cargo/remote/BUILD.cxx-build-1.0.86.bazel
similarity index 66%
copy from third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
copy to third_party/rust/cargo/remote/BUILD.cxx-build-1.0.86.bazel
index 2998d99..c7aecd9 100644
--- a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cxx-build-1.0.86.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,20 +31,10 @@
 
 # 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",
+    name = "cxx_build",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -51,13 +42,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cxx-build",
         "manual",
     ],
-    version = "0.5.8",
+    version = "1.0.86",
     # buildifier: leave-alone
     deps = [
-        "@raze__serde__1_0_126//:serde",
+        "@raze__cc__1_0_78//:cc",
+        "@raze__codespan_reporting__0_11_1//:codespan_reporting",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__scratch__1_0_3//:scratch",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
-
-# Unsupported target "enum_external_deserialize" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.futures-io-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.cxxbridge-flags-1.0.86.bazel
similarity index 85%
copy from third_party/rust/cargo/remote/BUILD.futures-io-0.3.15.bazel
copy to third_party/rust/cargo/remote/BUILD.cxxbridge-flags-1.0.86.bazel
index 3217ac2..fe2ddb4 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-io-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cxxbridge-flags-1.0.86.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,12 +32,9 @@
 # Generated Targets
 
 rust_library(
-    name = "futures_io",
+    name = "cxxbridge_flags",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cxxbridge-flags",
         "manual",
     ],
-    version = "0.3.15",
+    version = "1.0.86",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.cxxbridge-macro-1.0.86.bazel
similarity index 74%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.cxxbridge-macro-1.0.86.bazel
index f09bed8..91f1a53 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.cxxbridge-macro-1.0.86.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,10 @@
 
 # Generated Targets
 
-rust_library(
-    name = "siphasher",
+rust_proc_macro(
+    name = "cxxbridge_macro",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=cxxbridge-macro",
         "manual",
     ],
-    version = "0.3.5",
+    version = "1.0.86",
     # buildifier: leave-alone
     deps = [
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.digest-0.10.6.bazel
similarity index 77%
copy from third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel
copy to third_party/rust/cargo/remote/BUILD.digest-0.10.6.bazel
index 45cf684..fdb3d46 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.digest-0.10.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,15 +32,16 @@
 # Generated Targets
 
 rust_library(
-    name = "futures_sink",
+    name = "digest",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "alloc",
+        "block-buffer",
+        "core-api",
         "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -47,10 +49,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=digest",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.10.6",
     # buildifier: leave-alone
     deps = [
+        "@raze__block_buffer__0_10_3//:block_buffer",
+        "@raze__crypto_common__0_1_6//:crypto_common",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.digest-0.8.1.bazel b/third_party/rust/cargo/remote/BUILD.digest-0.8.1.bazel
deleted file mode 100644
index 95d3177..0000000
--- a/third_party/rust/cargo/remote/BUILD.digest-0.8.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.8.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__generic_array__0_12_4//:generic_array",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.digest-0.9.0.bazel b/third_party/rust/cargo/remote/BUILD.digest-0.9.0.bazel
deleted file mode 100644
index 89822d2..0000000
--- a/third_party/rust/cargo/remote/BUILD.digest-0.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.9.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__generic_array__0_14_4//:generic_array",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-2.3.13.bazel b/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-3.0.1.bazel
similarity index 63%
rename from third_party/rust/cargo/remote/BUILD.elasticlunr-rs-2.3.13.bazel
rename to third_party/rust/cargo/remote/BUILD.elasticlunr-rs-3.0.1.bazel
index 059e779..cb68de9 100644
--- a/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-2.3.13.bazel
+++ b/third_party/rust/cargo/remote/BUILD.elasticlunr-rs-3.0.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,7 +31,7 @@
 
 # Generated Targets
 
-# Unsupported target "bench-holistic" with type "bench" omitted
+# Unsupported target "bench" with type "bench" omitted
 
 # Unsupported target "export_json" with type "example" omitted
 
@@ -46,34 +47,29 @@
 rust_library(
     name = "elasticlunr",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     proc_macro_deps = [
-        "@raze__serde_derive__1_0_126//:serde_derive",
-        "@raze__strum_macros__0_21_1//:strum_macros",
+        "@raze__serde_derive__1_0_152//:serde_derive",
     ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=elasticlunr",
         "manual",
     ],
-    version = "2.3.13",
+    version = "3.0.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__lazy_static__1_4_0//:lazy_static",
-        "@raze__regex__1_5_4//:regex",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__serde_json__1_0_64//:serde_json",
-        "@raze__strum__0_21_0//:strum",
+        "@raze__regex__1_7_1//:regex",
+        "@raze__serde__1_0_152//:serde",
+        "@raze__serde_json__1_0_91//:serde_json",
     ],
 )
 
-# Unsupported target "test-compare" with type "test" omitted
+# Unsupported target "test-index" with type "test" omitted
 
-# Unsupported target "test-lang" with type "test" omitted
+# Unsupported target "test-pipeline" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.env_logger-0.7.1.bazel b/third_party/rust/cargo/remote/BUILD.env_logger-0.9.3.bazel
similarity index 67%
rename from third_party/rust/cargo/remote/BUILD.env_logger-0.7.1.bazel
rename to third_party/rust/cargo/remote/BUILD.env_logger-0.9.3.bazel
index 962247d..c0ca29b 100644
--- a/third_party/rust/cargo/remote/BUILD.env_logger-0.7.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.env_logger-0.9.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,18 +31,6 @@
 
 # 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
-
 rust_library(
     name = "env_logger",
     srcs = glob(["**/*.rs"]),
@@ -53,7 +42,6 @@
         "termcolor",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -61,16 +49,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=env_logger",
         "manual",
     ],
-    version = "0.7.1",
+    version = "0.9.3",
     # buildifier: leave-alone
     deps = [
         "@raze__atty__0_2_14//:atty",
-        "@raze__humantime__1_3_0//:humantime",
-        "@raze__log__0_4_14//:log",
-        "@raze__regex__1_5_4//:regex",
-        "@raze__termcolor__1_1_2//:termcolor",
+        "@raze__humantime__2_1_0//:humantime",
+        "@raze__log__0_4_17//:log",
+        "@raze__regex__1_7_1//:regex",
+        "@raze__termcolor__1_1_3//:termcolor",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.7.bazel b/third_party/rust/cargo/remote/BUILD.fastrand-1.8.0.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.7.bazel
copy to third_party/rust/cargo/remote/BUILD.fastrand-1.8.0.bazel
index a3c5dca..8c6d334 100644
--- a/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.fastrand-1.8.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,13 +31,12 @@
 
 # Generated Targets
 
+# Unsupported target "bench" with type "bench" omitted
+
 rust_library(
-    name = "pin_project_internal",
+    name = "fastrand",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,13 +44,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=fastrand",
         "manual",
     ],
-    version = "1.0.7",
+    version = "1.8.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
     ],
 )
+
+# 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.14.bazel b/third_party/rust/cargo/remote/BUILD.filetime-0.2.19.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
rename to third_party/rust/cargo/remote/BUILD.filetime-0.2.19.bazel
index 12de45b..aecc62a 100644
--- a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.filetime-0.2.19.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,18 +44,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=filetime",
         "manual",
     ],
-    version = "0.2.14",
+    version = "0.2.19",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__1_0_0//:cfg_if",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
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
index a27d866..2a6b565 100644
--- a/third_party/rust/cargo/remote/BUILD.fnv-1.0.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.fnv-1.0.7.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -38,7 +39,6 @@
         "std",
     ],
     crate_root = "lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,6 +46,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=fnv",
         "manual",
     ],
     version = "1.0.7",
diff --git a/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.0.1.bazel b/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.1.0.bazel
similarity index 81%
rename from third_party/rust/cargo/remote/BUILD.form_urlencoded-1.0.1.bazel
rename to third_party/rust/cargo/remote/BUILD.form_urlencoded-1.1.0.bazel
index eb54cc4..83c012c 100644
--- a/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.0.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.form_urlencoded-1.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "form_urlencoded",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,12 +42,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=form_urlencoded",
         "manual",
     ],
-    version = "1.0.1",
+    version = "1.1.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__matches__0_1_8//:matches",
-        "@raze__percent_encoding__2_1_0//:percent_encoding",
+        "@raze__percent_encoding__2_2_0//:percent_encoding",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.fsevent-0.4.0.bazel b/third_party/rust/cargo/remote/BUILD.fsevent-0.4.0.bazel
index 882ac1d..5e4eabe 100644
--- a/third_party/rust/cargo/remote/BUILD.fsevent-0.4.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.fsevent-0.4.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,10 +38,7 @@
 rust_library(
     name = "fsevent",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -48,12 +46,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=fsevent",
         "manual",
     ],
     version = "0.4.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__bitflags__1_2_1//:bitflags",
+        "@raze__bitflags__1_3_2//:bitflags",
         "@raze__fsevent_sys__2_0_1//:fsevent_sys",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.fsevent-sys-2.0.1.bazel b/third_party/rust/cargo/remote/BUILD.fsevent-sys-2.0.1.bazel
index 923a2cf..e98e227 100644
--- a/third_party/rust/cargo/remote/BUILD.fsevent-sys-2.0.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.fsevent-sys-2.0.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "fsevent_sys",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,11 +42,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=fsevent-sys",
         "manual",
     ],
     version = "2.0.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__libc__0_2_97//:libc",
+        "@raze__libc__0_2_139//:libc",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-0.3.3.bazel b/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-0.3.3.bazel
index ff15cff..01475c8 100644
--- a/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-0.3.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-0.3.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "fuchsia_zircon",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,12 +42,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=fuchsia-zircon",
         "manual",
     ],
     version = "0.3.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__bitflags__1_2_1//:bitflags",
+        "@raze__bitflags__1_3_2//:bitflags",
         "@raze__fuchsia_zircon_sys__0_3_3//:fuchsia_zircon_sys",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-sys-0.3.3.bazel b/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-sys-0.3.3.bazel
index 5fcd1c1..e91baa0 100644
--- a/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-sys-0.3.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.fuchsia-zircon-sys-0.3.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
 rust_library(
     name = "fuchsia_zircon_sys",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,6 +44,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=fuchsia-zircon-sys",
         "manual",
     ],
     version = "0.3.3",
diff --git a/third_party/rust/cargo/remote/BUILD.futf-0.1.4.bazel b/third_party/rust/cargo/remote/BUILD.futf-0.1.5.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.futf-0.1.4.bazel
rename to third_party/rust/cargo/remote/BUILD.futf-0.1.5.bazel
index 835f660..42cf632 100644
--- a/third_party/rust/cargo/remote/BUILD.futf-0.1.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futf-0.1.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "futf",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futf",
         "manual",
     ],
-    version = "0.1.4",
+    version = "0.1.5",
     # buildifier: leave-alone
     deps = [
         "@raze__mac__0_1_1//:mac",
diff --git a/third_party/rust/cargo/remote/BUILD.futures-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.futures-0.3.15.bazel
deleted file mode 100644
index f9bab81..0000000
--- a/third_party/rust/cargo/remote/BUILD.futures-0.3.15.bazel
+++ /dev/null
@@ -1,168 +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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.15",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__futures_channel__0_3_15//:futures_channel",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__futures_io__0_3_15//:futures_io",
-        "@raze__futures_sink__0_3_15//:futures_sink",
-        "@raze__futures_task__0_3_15//:futures_task",
-        "@raze__futures_util__0_3_15//:futures_util",
-    ],
-)
-
-# Unsupported target "_require_features" with type "test" omitted
-
-# Unsupported target "async_await_macros" with type "test" omitted
-
-# Unsupported target "auto_traits" with type "test" omitted
-
-# Unsupported target "compat" with type "test" omitted
-
-# Unsupported target "eager_drop" with type "test" omitted
-
-# Unsupported target "eventual" with type "test" omitted
-
-# Unsupported target "future_abortable" with type "test" omitted
-
-# Unsupported target "future_basic_combinators" with type "test" omitted
-
-# Unsupported target "future_fuse" with type "test" omitted
-
-# Unsupported target "future_inspect" with type "test" omitted
-
-# Unsupported target "future_join_all" with type "test" omitted
-
-# Unsupported target "future_obj" with type "test" omitted
-
-# Unsupported target "future_select_all" with type "test" omitted
-
-# Unsupported target "future_select_ok" with type "test" omitted
-
-# Unsupported target "future_shared" with type "test" omitted
-
-# Unsupported target "future_try_flatten_stream" with type "test" omitted
-
-# Unsupported target "future_try_join_all" 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_cursor" with type "test" omitted
-
-# Unsupported target "io_lines" with type "test" omitted
-
-# Unsupported target "io_read" 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_window" with type "test" omitted
-
-# Unsupported target "io_write" with type "test" omitted
-
-# Unsupported target "lock_mutex" with type "test" omitted
-
-# Unsupported target "macro_comma_support" with type "test" omitted
-
-# Unsupported target "object_safety" with type "test" omitted
-
-# Unsupported target "oneshot" with type "test" omitted
-
-# Unsupported target "ready_queue" with type "test" omitted
-
-# Unsupported target "recurse" with type "test" omitted
-
-# Unsupported target "sink" with type "test" omitted
-
-# Unsupported target "sink_fanout" with type "test" omitted
-
-# Unsupported target "stream" with type "test" omitted
-
-# Unsupported target "stream_abortable" with type "test" omitted
-
-# Unsupported target "stream_buffer_unordered" with type "test" omitted
-
-# Unsupported target "stream_catch_unwind" with type "test" omitted
-
-# Unsupported target "stream_futures_ordered" with type "test" omitted
-
-# Unsupported target "stream_futures_unordered" with type "test" omitted
-
-# Unsupported target "stream_into_async_read" with type "test" omitted
-
-# Unsupported target "stream_peekable" with type "test" omitted
-
-# Unsupported target "stream_select_all" with type "test" omitted
-
-# Unsupported target "stream_select_next_some" with type "test" omitted
-
-# Unsupported target "stream_split" with type "test" omitted
-
-# Unsupported target "stream_try_stream" with type "test" omitted
-
-# Unsupported target "stream_unfold" with type "test" omitted
-
-# Unsupported target "task_arc_wake" with type "test" omitted
-
-# Unsupported target "task_atomic_waker" with type "test" omitted
-
-# Unsupported target "test_macro" with type "test" omitted
-
-# Unsupported target "try_join" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.25.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.futures-channel-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.futures-channel-0.3.25.bazel
index d964a79..1715ca7 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futures-channel-0.3.25.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -58,7 +59,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -77,7 +78,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -85,14 +85,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futures-channel",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     # buildifier: leave-alone
     deps = [
         ":futures_channel_build_script",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__futures_sink__0_3_15//:futures_sink",
+        "@raze__futures_core__0_3_25//:futures_core",
+        "@raze__futures_sink__0_3_25//:futures_sink",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.futures-core-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.futures-core-0.3.25.bazel
similarity index 91%
rename from third_party/rust/cargo/remote/BUILD.futures-core-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.futures-core-0.3.25.bazel
index 7496e45..ec87f02 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-core-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futures-core-0.3.25.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -56,7 +57,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -71,7 +72,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -79,9 +79,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futures-core",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     # buildifier: leave-alone
     deps = [
         ":futures_core_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.25.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.futures-macro-0.3.25.bazel
index f09bed8..6fae4e5 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.25.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,10 @@
 
 # Generated Targets
 
-rust_library(
-    name = "siphasher",
+rust_proc_macro(
+    name = "futures_macro",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futures-macro",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.3.25",
     # buildifier: leave-alone
     deps = [
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.25.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.futures-sink-0.3.25.bazel
index 45cf684..558ce0a 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.25.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -39,7 +40,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -47,9 +47,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futures-sink",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.futures-task-0.3.25.bazel
similarity index 91%
rename from third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.futures-task-0.3.25.bazel
index 750605b..5364e2b 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futures-task-0.3.25.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -55,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -69,7 +70,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,9 +77,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futures-task",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     # buildifier: leave-alone
     deps = [
         ":futures_task_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.futures-util-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.futures-util-0.3.25.bazel
similarity index 74%
rename from third_party/rust/cargo/remote/BUILD.futures-util-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.futures-util-0.3.25.bazel
index 4f9d863..7e60598 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-util-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.futures-util-0.3.25.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -48,8 +49,6 @@
         "default",
         "futures-macro",
         "futures-sink",
-        "proc-macro-hack",
-        "proc-macro-nested",
         "sink",
         "slab",
         "std",
@@ -64,15 +63,18 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__autocfg__1_0_1//:autocfg",
     ],
 )
 
+# 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"]),
@@ -83,37 +85,33 @@
         "default",
         "futures-macro",
         "futures-sink",
-        "proc-macro-hack",
-        "proc-macro-nested",
         "sink",
         "slab",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     proc_macro_deps = [
-        "@raze__futures_macro__0_3_15//:futures_macro",
-        "@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
+        "@raze__futures_macro__0_3_25//:futures_macro",
     ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=futures-util",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.3.25",
     # buildifier: leave-alone
     deps = [
         ":futures_util_build_script",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__futures_sink__0_3_15//:futures_sink",
-        "@raze__futures_task__0_3_15//:futures_task",
-        "@raze__pin_project_lite__0_2_7//:pin_project_lite",
+        "@raze__futures_core__0_3_25//:futures_core",
+        "@raze__futures_sink__0_3_25//:futures_sink",
+        "@raze__futures_task__0_3_25//:futures_task",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
         "@raze__pin_utils__0_1_0//:pin_utils",
-        "@raze__proc_macro_nested__0_1_7//:proc_macro_nested",
-        "@raze__slab__0_4_3//:slab",
+        "@raze__slab__0_4_7//:slab",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.generic-array-0.12.4.bazel b/third_party/rust/cargo/remote/BUILD.generic-array-0.12.4.bazel
deleted file mode 100644
index 3da771d..0000000
--- a/third_party/rust/cargo/remote/BUILD.generic-array-0.12.4.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "generic_array",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.12.4",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__typenum__1_13_0//:typenum",
-    ],
-)
-
-# Unsupported target "arr" with type "test" omitted
-
-# Unsupported target "generics" with type "test" omitted
-
-# Unsupported target "hex" with type "test" omitted
-
-# Unsupported target "import_name" with type "test" omitted
-
-# Unsupported target "iter" with type "test" omitted
-
-# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.generic-array-0.14.4.bazel b/third_party/rust/cargo/remote/BUILD.generic-array-0.14.4.bazel
deleted file mode 100644
index cf0a096..0000000
--- a/third_party/rust/cargo/remote/BUILD.generic-array-0.14.4.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = [
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.14.4",
-    visibility = ["//visibility:private"],
-    deps = [
-        "@raze__version_check__0_9_3//:version_check",
-    ],
-)
-
-rust_library(
-    name = "generic_array",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.14.4",
-    # buildifier: leave-alone
-    deps = [
-        ":generic_array_build_script",
-        "@raze__typenum__1_13_0//:typenum",
-    ],
-)
-
-# Unsupported target "arr" with type "test" omitted
-
-# Unsupported target "generics" with type "test" omitted
-
-# Unsupported target "hex" with type "test" omitted
-
-# Unsupported target "import_name" with type "test" omitted
-
-# Unsupported target "iter" with type "test" omitted
-
-# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.126.bazel b/third_party/rust/cargo/remote/BUILD.generic-array-0.14.6.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.serde_derive-1.0.126.bazel
copy to third_party/rust/cargo/remote/BUILD.generic-array-0.14.6.bazel
index da93d69..6f6c277 100644
--- a/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.126.bazel
+++ b/third_party/rust/cargo/remote/BUILD.generic-array-0.14.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,7 +26,7 @@
 ])
 
 licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
+    "notice",  # MIT from expression "MIT"
 ])
 
 # Generated Targets
@@ -37,12 +38,12 @@
 )
 
 cargo_build_script(
-    name = "serde_derive_build_script",
+    name = "generic_array_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
     crate_features = [
-        "default",
+        "more_lengths",
     ],
     crate_root = "build.rs",
     data = glob(["**"]),
@@ -54,20 +55,20 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.126",
+    version = "0.14.6",
     visibility = ["//visibility:private"],
     deps = [
+        "@raze__version_check__0_9_4//:version_check",
     ],
 )
 
 rust_library(
-    name = "serde_derive",
+    name = "generic_array",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "default",
+        "more_lengths",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -75,14 +76,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=generic_array",
         "manual",
     ],
-    version = "1.0.126",
+    version = "0.14.6",
     # buildifier: leave-alone
     deps = [
-        ":serde_derive_build_script",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        ":generic_array_build_script",
+        "@raze__typenum__1_16_0//:typenum",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.getopts-0.2.21.bazel b/third_party/rust/cargo/remote/BUILD.getopts-0.2.21.bazel
deleted file mode 100644
index 027446d..0000000
--- a/third_party/rust/cargo/remote/BUILD.getopts-0.2.21.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "getopts",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.21",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__unicode_width__0_1_8//:unicode_width",
-    ],
-)
-
-# Unsupported target "smoke" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.getrandom-0.2.8.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel
rename to third_party/rust/cargo/remote/BUILD.getrandom-0.2.8.bazel
index bcf7467..b567c16 100644
--- a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.getrandom-0.2.8.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,7 +42,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -49,18 +49,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=getrandom",
         "manual",
     ],
-    version = "0.2.3",
+    version = "0.2.8",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__1_0_0//:cfg_if",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.gitignore-1.0.7.bazel b/third_party/rust/cargo/remote/BUILD.gitignore-1.0.7.bazel
index e00c468..2ef115b 100644
--- a/third_party/rust/cargo/remote/BUILD.gitignore-1.0.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.gitignore-1.0.7.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,8 +36,6 @@
     # N.B.: The exact form of this is subject to change.
     name = "cargo_bin_gitignore_check",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/bin/gitignore_check.rs",
     data = [],
     edition = "2015",
@@ -45,13 +44,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=gitignore_check",
         "manual",
     ],
     version = "1.0.7",
     # buildifier: leave-alone
     deps = [
         ":gitignore",
-        "@raze__glob__0_3_0//:glob",
+        "@raze__glob__0_3_1//:glob",
     ],
 )
 
@@ -60,8 +60,6 @@
     # N.B.: The exact form of this is subject to change.
     name = "cargo_bin_gitignore_tree",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/bin/gitignore_tree.rs",
     data = [],
     edition = "2015",
@@ -70,23 +68,21 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=gitignore_tree",
         "manual",
     ],
     version = "1.0.7",
     # buildifier: leave-alone
     deps = [
         ":gitignore",
-        "@raze__glob__0_3_0//:glob",
+        "@raze__glob__0_3_1//:glob",
     ],
 )
 
 rust_library(
     name = "gitignore",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -94,11 +90,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=gitignore",
         "manual",
     ],
     version = "1.0.7",
     # buildifier: leave-alone
     deps = [
-        "@raze__glob__0_3_0//:glob",
+        "@raze__glob__0_3_1//:glob",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.glob-0.3.0.bazel b/third_party/rust/cargo/remote/BUILD.glob-0.3.1.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.glob-0.3.0.bazel
rename to third_party/rust/cargo/remote/BUILD.glob-0.3.1.bazel
index 59ddaf9..5088ec8 100644
--- a/third_party/rust/cargo/remote/BUILD.glob-0.3.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.glob-0.3.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "glob",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=glob",
         "manual",
     ],
-    version = "0.3.0",
+    version = "0.3.1",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.h2-0.2.7.bazel b/third_party/rust/cargo/remote/BUILD.h2-0.3.15.bazel
similarity index 64%
rename from third_party/rust/cargo/remote/BUILD.h2-0.2.7.bazel
rename to third_party/rust/cargo/remote/BUILD.h2-0.3.15.bazel
index bc87d18..a8c15f2 100644
--- a/third_party/rust/cargo/remote/BUILD.h2-0.2.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.h2-0.3.15.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -39,10 +40,7 @@
 rust_library(
     name = "h2",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -50,22 +48,22 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=h2",
         "manual",
     ],
-    version = "0.2.7",
+    version = "0.3.15",
     # buildifier: leave-alone
     deps = [
-        "@raze__bytes__0_5_6//:bytes",
+        "@raze__bytes__1_3_0//:bytes",
         "@raze__fnv__1_0_7//:fnv",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__futures_sink__0_3_15//:futures_sink",
-        "@raze__futures_util__0_3_15//:futures_util",
-        "@raze__http__0_2_4//:http",
-        "@raze__indexmap__1_7_0//:indexmap",
-        "@raze__slab__0_4_3//:slab",
-        "@raze__tokio__0_2_25//:tokio",
-        "@raze__tokio_util__0_3_1//:tokio_util",
-        "@raze__tracing__0_1_26//:tracing",
-        "@raze__tracing_futures__0_2_5//:tracing_futures",
+        "@raze__futures_core__0_3_25//:futures_core",
+        "@raze__futures_sink__0_3_25//:futures_sink",
+        "@raze__futures_util__0_3_25//:futures_util",
+        "@raze__http__0_2_8//:http",
+        "@raze__indexmap__1_9_2//:indexmap",
+        "@raze__slab__0_4_7//:slab",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__tokio_util__0_7_4//:tokio_util",
+        "@raze__tracing__0_1_37//:tracing",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.handlebars-4.0.1.bazel b/third_party/rust/cargo/remote/BUILD.handlebars-4.3.6.bazel
similarity index 70%
rename from third_party/rust/cargo/remote/BUILD.handlebars-4.0.1.bazel
rename to third_party/rust/cargo/remote/BUILD.handlebars-4.3.6.bazel
index 6de3d59..556cc42 100644
--- a/third_party/rust/cargo/remote/BUILD.handlebars-4.0.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.handlebars-4.3.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,8 +38,6 @@
     # N.B.: The exact form of this is subject to change.
     name = "cargo_bin_handlebars_cli",
     srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
     crate_features = [
         "default",
     ],
@@ -46,34 +45,28 @@
     data = [] + [
         "src/grammar.pest",
     ],
-    edition = "2018",
+    edition = "2021",
     proc_macro_deps = [
-        "@raze__pest_derive__2_1_0//:pest_derive",
+        "@raze__pest_derive__2_5_3//:pest_derive",
     ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=handlebars-cli",
         "manual",
     ],
-    version = "4.0.1",
+    version = "4.3.6",
     # buildifier: leave-alone
     deps = [
         ":handlebars",
-        "@raze__log__0_4_14//:log",
-        "@raze__pest__2_1_3//:pest",
-        "@raze__quick_error__2_0_1//:quick_error",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__serde_json__1_0_64//:serde_json",
-    ] + selects.with_or({
-        # cfg(unix)
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-        ],
-        "//conditions:default": [],
-    }),
+        "@raze__log__0_4_17//:log",
+        "@raze__pest__2_5_3//:pest",
+        "@raze__serde__1_0_152//:serde",
+        "@raze__serde_json__1_0_91//:serde_json",
+        "@raze__thiserror__1_0_38//:thiserror",
+    ],
 )
 
 # Unsupported target "decorator" with type "example" omitted
@@ -82,6 +75,8 @@
 
 # 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
@@ -95,49 +90,42 @@
 rust_library(
     name = "handlebars",
     srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
     crate_features = [
         "default",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [] + [
         "src/grammar.pest",
     ],
-    edition = "2018",
+    edition = "2021",
     proc_macro_deps = [
-        "@raze__pest_derive__2_1_0//:pest_derive",
+        "@raze__pest_derive__2_5_3//:pest_derive",
     ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=handlebars",
         "manual",
     ],
-    version = "4.0.1",
+    version = "4.3.6",
     # buildifier: leave-alone
     deps = [
-        "@raze__log__0_4_14//:log",
-        "@raze__pest__2_1_3//:pest",
-        "@raze__quick_error__2_0_1//:quick_error",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__serde_json__1_0_64//:serde_json",
-    ] + selects.with_or({
-        # cfg(unix)
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-        ],
-        "//conditions:default": [],
-    }),
+        "@raze__log__0_4_17//:log",
+        "@raze__pest__2_5_3//:pest",
+        "@raze__serde__1_0_152//:serde",
+        "@raze__serde_json__1_0_91//:serde_json",
+        "@raze__thiserror__1_0_38//: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
@@ -151,3 +139,5 @@
 # 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.11.2.bazel b/third_party/rust/cargo/remote/BUILD.hashbrown-0.12.3.bazel
similarity index 81%
rename from third_party/rust/cargo/remote/BUILD.hashbrown-0.11.2.bazel
rename to third_party/rust/cargo/remote/BUILD.hashbrown-0.12.3.bazel
index 257291f..815af60 100644
--- a/third_party/rust/cargo/remote/BUILD.hashbrown-0.11.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.hashbrown-0.12.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,13 +26,15 @@
 ])
 
 licenses([
-    "notice",  # Apache-2.0 from expression "Apache-2.0 OR MIT"
+    "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"]),
@@ -39,17 +42,17 @@
         "raw",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2018",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=hashbrown",
         "manual",
     ],
-    version = "0.11.2",
+    version = "0.12.3",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.headers-0.3.4.bazel b/third_party/rust/cargo/remote/BUILD.headers-0.3.8.bazel
similarity index 73%
rename from third_party/rust/cargo/remote/BUILD.headers-0.3.4.bazel
rename to third_party/rust/cargo/remote/BUILD.headers-0.3.8.bazel
index 37fac45..22215f6 100644
--- a/third_party/rust/cargo/remote/BUILD.headers-0.3.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.headers-0.3.8.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "headers",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,18 +42,19 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=headers",
         "manual",
     ],
-    version = "0.3.4",
+    version = "0.3.8",
     # buildifier: leave-alone
     deps = [
-        "@raze__base64__0_13_0//:base64",
-        "@raze__bitflags__1_2_1//:bitflags",
-        "@raze__bytes__1_0_1//:bytes",
+        "@raze__base64__0_13_1//:base64",
+        "@raze__bitflags__1_3_2//:bitflags",
+        "@raze__bytes__1_3_0//:bytes",
         "@raze__headers_core__0_2_0//:headers_core",
-        "@raze__http__0_2_4//:http",
+        "@raze__http__0_2_8//:http",
+        "@raze__httpdate__1_0_2//:httpdate",
         "@raze__mime__0_3_16//:mime",
-        "@raze__sha_1__0_9_6//:sha_1",
-        "@raze__time__0_1_43//:time",
+        "@raze__sha1__0_10_5//: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
index bcedc66..aa925f1 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "headers_core",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,11 +42,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=headers-core",
         "manual",
     ],
     version = "0.2.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__http__0_2_4//:http",
+        "@raze__http__0_2_8//:http",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.heck-0.3.3.bazel b/third_party/rust/cargo/remote/BUILD.heck-0.3.3.bazel
deleted file mode 100644
index d8725db..0000000
--- a/third_party/rust/cargo/remote/BUILD.heck-0.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__unicode_segmentation__1_8_0//:unicode_segmentation",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.hermit-abi-0.1.19.bazel b/third_party/rust/cargo/remote/BUILD.hermit-abi-0.1.19.bazel
index d7eff5c..7dcc7b5 100644
--- a/third_party/rust/cargo/remote/BUILD.hermit-abi-0.1.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.hermit-abi-0.1.19.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,11 +34,7 @@
 rust_library(
     name = "hermit_abi",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -45,11 +42,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=hermit-abi",
         "manual",
     ],
     version = "0.1.19",
     # buildifier: leave-alone
     deps = [
-        "@raze__libc__0_2_97//:libc",
+        "@raze__libc__0_2_139//:libc",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel b/third_party/rust/cargo/remote/BUILD.hermit-abi-0.2.6.bazel
similarity index 81%
copy from third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
copy to third_party/rust/cargo/remote/BUILD.hermit-abi-0.2.6.bazel
index 7a47c54..a497f76 100644
--- a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.hermit-abi-0.2.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,25 +32,22 @@
 # Generated Targets
 
 rust_library(
-    name = "either",
+    name = "hermit_abi",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "use_std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=hermit-abi",
         "manual",
     ],
-    version = "1.6.1",
+    version = "0.2.6",
     # buildifier: leave-alone
     deps = [
+        "@raze__libc__0_2_139//:libc",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.html5ever-0.25.1.bazel b/third_party/rust/cargo/remote/BUILD.html5ever-0.26.0.bazel
similarity index 83%
rename from third_party/rust/cargo/remote/BUILD.html5ever-0.25.1.bazel
rename to third_party/rust/cargo/remote/BUILD.html5ever-0.26.0.bazel
index a7eccdc..39f0798 100644
--- a/third_party/rust/cargo/remote/BUILD.html5ever-0.25.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.html5ever-0.26.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -53,12 +52,12 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.25.1",
+    version = "0.26.0",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
 
@@ -77,10 +76,7 @@
 rust_library(
     name = "html5ever",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -88,14 +84,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=html5ever",
         "manual",
     ],
-    version = "0.25.1",
+    version = "0.26.0",
     # buildifier: leave-alone
     deps = [
         ":html5ever_build_script",
-        "@raze__log__0_4_14//:log",
+        "@raze__log__0_4_17//:log",
         "@raze__mac__0_1_1//:mac",
-        "@raze__markup5ever__0_10_1//:markup5ever",
+        "@raze__markup5ever__0_11_0//:markup5ever",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.http-0.2.4.bazel b/third_party/rust/cargo/remote/BUILD.http-0.2.8.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.http-0.2.4.bazel
rename to third_party/rust/cargo/remote/BUILD.http-0.2.8.bazel
index 52bdb9d..c68f7c8 100644
--- a/third_party/rust/cargo/remote/BUILD.http-0.2.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.http-0.2.8.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -34,6 +35,8 @@
 
 # Unsupported target "header_name" with type "bench" omitted
 
+# Unsupported target "header_name2" with type "bench" omitted
+
 # Unsupported target "header_value" with type "bench" omitted
 
 # Unsupported target "method" with type "bench" omitted
@@ -43,10 +46,7 @@
 rust_library(
     name = "http",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -54,14 +54,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=http",
         "manual",
     ],
-    version = "0.2.4",
+    version = "0.2.8",
     # buildifier: leave-alone
     deps = [
-        "@raze__bytes__1_0_1//:bytes",
+        "@raze__bytes__1_3_0//:bytes",
         "@raze__fnv__1_0_7//:fnv",
-        "@raze__itoa__0_4_7//:itoa",
+        "@raze__itoa__1_0_5//:itoa",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.http-body-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.http-body-0.4.5.bazel
similarity index 79%
rename from third_party/rust/cargo/remote/BUILD.http-body-0.3.1.bazel
rename to third_party/rust/cargo/remote/BUILD.http-body-0.4.5.bazel
index 873a2d9..2853f06 100644
--- a/third_party/rust/cargo/remote/BUILD.http-body-0.3.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.http-body-0.4.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "http_body",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,13 +42,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=http-body",
         "manual",
     ],
-    version = "0.3.1",
+    version = "0.4.5",
     # buildifier: leave-alone
     deps = [
-        "@raze__bytes__0_5_6//:bytes",
-        "@raze__http__0_2_4//:http",
+        "@raze__bytes__1_3_0//:bytes",
+        "@raze__http__0_2_8//:http",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.httparse-1.4.1.bazel b/third_party/rust/cargo/remote/BUILD.httparse-1.8.0.bazel
similarity index 90%
rename from third_party/rust/cargo/remote/BUILD.httparse-1.4.1.bazel
rename to third_party/rust/cargo/remote/BUILD.httparse-1.8.0.bazel
index 5f0c933..e83a484 100644
--- a/third_party/rust/cargo/remote/BUILD.httparse-1.4.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.httparse-1.8.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -47,7 +48,7 @@
     ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -55,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.4.1",
+    version = "1.8.0",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -71,17 +72,17 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=httparse",
         "manual",
     ],
-    version = "1.4.1",
+    version = "1.8.0",
     # buildifier: leave-alone
     deps = [
         ":httparse_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.httpdate-0.3.2.bazel b/third_party/rust/cargo/remote/BUILD.httpdate-0.3.2.bazel
deleted file mode 100644
index 3133e44..0000000
--- a/third_party/rust/cargo/remote/BUILD.httpdate-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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "httpdate",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.httpdate-1.0.2.bazel
similarity index 82%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.httpdate-1.0.2.bazel
index f09bed8..d7b45f8 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.httpdate-1.0.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,12 @@
 
 # Generated Targets
 
+# Unsupported target "benchmarks" with type "bench" omitted
+
 rust_library(
-    name = "siphasher",
+    name = "httpdate",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,9 +44,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=httpdate",
         "manual",
     ],
-    version = "0.3.5",
+    version = "1.0.2",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.humantime-1.3.0.bazel b/third_party/rust/cargo/remote/BUILD.humantime-2.1.0.bazel
similarity index 84%
rename from third_party/rust/cargo/remote/BUILD.humantime-1.3.0.bazel
rename to third_party/rust/cargo/remote/BUILD.humantime-2.1.0.bazel
index d1f9caa..082290d 100644
--- a/third_party/rust/cargo/remote/BUILD.humantime-1.3.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.humantime-2.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,22 +38,19 @@
 rust_library(
     name = "humantime",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=humantime",
         "manual",
     ],
-    version = "1.3.0",
+    version = "2.1.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__quick_error__1_2_3//:quick_error",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.hyper-0.13.10.bazel b/third_party/rust/cargo/remote/BUILD.hyper-0.14.23.bazel
similarity index 70%
rename from third_party/rust/cargo/remote/BUILD.hyper-0.13.10.bazel
rename to third_party/rust/cargo/remote/BUILD.hyper-0.14.23.bazel
index b4fc3d2..4ca7e37 100644
--- a/third_party/rust/cargo/remote/BUILD.hyper-0.13.10.bazel
+++ b/third_party/rust/cargo/remote/BUILD.hyper-0.14.23.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -75,17 +76,18 @@
 rust_library(
     name = "hyper",
     srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
     crate_features = [
+        "client",
         "default",
-        "runtime",
+        "h2",
+        "http1",
+        "http2",
+        "server",
         "socket2",
         "stream",
         "tcp",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -93,35 +95,29 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=hyper",
         "manual",
     ],
-    version = "0.13.10",
+    version = "0.14.23",
     # buildifier: leave-alone
     deps = [
-        "@raze__bytes__0_5_6//:bytes",
-        "@raze__futures_channel__0_3_15//:futures_channel",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__futures_util__0_3_15//:futures_util",
-        "@raze__h2__0_2_7//:h2",
-        "@raze__http__0_2_4//:http",
-        "@raze__http_body__0_3_1//:http_body",
-        "@raze__httparse__1_4_1//:httparse",
-        "@raze__httpdate__0_3_2//:httpdate",
-        "@raze__itoa__0_4_7//:itoa",
-        "@raze__pin_project__1_0_7//:pin_project",
-        "@raze__socket2__0_3_19//:socket2",
-        "@raze__tokio__0_2_25//:tokio",
-        "@raze__tower_service__0_3_1//:tower_service",
-        "@raze__tracing__0_1_26//:tracing",
+        "@raze__bytes__1_3_0//:bytes",
+        "@raze__futures_channel__0_3_25//:futures_channel",
+        "@raze__futures_core__0_3_25//:futures_core",
+        "@raze__futures_util__0_3_25//:futures_util",
+        "@raze__h2__0_3_15//:h2",
+        "@raze__http__0_2_8//:http",
+        "@raze__http_body__0_4_5//:http_body",
+        "@raze__httparse__1_8_0//:httparse",
+        "@raze__httpdate__1_0_2//:httpdate",
+        "@raze__itoa__1_0_5//:itoa",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
+        "@raze__socket2__0_4_7//:socket2",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__tower_service__0_3_2//:tower_service",
+        "@raze__tracing__0_1_37//:tracing",
         "@raze__want__0_3_0//:want",
-    ] + selects.with_or({
-        # cfg(any(target_os = "linux", target_os = "macos"))
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-        ],
-        "//conditions:default": [],
-    }),
+    ],
 )
 
 # Unsupported target "client" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.iana-time-zone-0.1.53.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.iana-time-zone-0.1.53.bazel
index f09bed8..cbc41e2 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.iana-time-zone-0.1.53.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,17 @@
 
 # Generated Targets
 
+# Unsupported target "get_timezone" with type "example" omitted
+
+# Unsupported target "stress-test" with type "example" omitted
+
 rust_library(
-    name = "siphasher",
+    name = "iana_time_zone",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "default",
-        "std",
+        "fallback",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,9 +49,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=iana-time-zone",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.1.53",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel b/third_party/rust/cargo/remote/BUILD.iana-time-zone-haiku-0.1.1.bazel
similarity index 79%
rename from third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel
rename to third_party/rust/cargo/remote/BUILD.iana-time-zone-haiku-0.1.1.bazel
index 4cf3ce9..f800834 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.iana-time-zone-haiku-0.1.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,12 +38,10 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_hack_build_script",
+    name = "iana_time_zone_haiku_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -53,19 +52,17 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.5.19",
+    version = "0.1.1",
     visibility = ["//visibility:private"],
     deps = [
+        "@raze__cxx_build__1_0_86//:cxx_build",
     ],
 )
 
 rust_library(
-    name = "proc_macro_hack",
+    name = "iana_time_zone_haiku",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -73,13 +70,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=iana-time-zone-haiku",
         "manual",
     ],
-    version = "0.5.19",
+    version = "0.1.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_hack_build_script",
+        ":iana_time_zone_haiku_build_script",
+        "@raze__cxx__1_0_86//:cxx",
     ],
 )
-
-# Unsupported target "compiletest" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.idna-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.idna-0.3.0.bazel
similarity index 79%
rename from third_party/rust/cargo/remote/BUILD.idna-0.2.3.bazel
rename to third_party/rust/cargo/remote/BUILD.idna-0.3.0.bazel
index 0784084..3d9888b 100644
--- a/third_party/rust/cargo/remote/BUILD.idna-0.2.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.idna-0.3.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
 rust_library(
     name = "idna",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,14 +44,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=idna",
         "manual",
     ],
-    version = "0.2.3",
+    version = "0.3.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__matches__0_1_8//:matches",
-        "@raze__unicode_bidi__0_3_5//:unicode_bidi",
-        "@raze__unicode_normalization__0_1_19//:unicode_normalization",
+        "@raze__unicode_bidi__0_3_8//:unicode_bidi",
+        "@raze__unicode_normalization__0_1_22//:unicode_normalization",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.indexmap-1.7.0.bazel b/third_party/rust/cargo/remote/BUILD.indexmap-1.9.2.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.indexmap-1.7.0.bazel
rename to third_party/rust/cargo/remote/BUILD.indexmap-1.9.2.bazel
index 33724d7..ef57846 100644
--- a/third_party/rust/cargo/remote/BUILD.indexmap-1.7.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.indexmap-1.9.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -42,10 +43,11 @@
     build_script_env = {
     },
     crate_features = [
+        "std",
     ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2018",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,10 +55,10 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.7.0",
+    version = "1.9.2",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__autocfg__1_0_1//:autocfg",
+        "@raze__autocfg__1_1_0//:autocfg",
     ],
 )
 
@@ -68,23 +70,24 @@
     name = "indexmap",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2018",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=indexmap",
         "manual",
     ],
-    version = "1.7.0",
+    version = "1.9.2",
     # buildifier: leave-alone
     deps = [
         ":indexmap_build_script",
-        "@raze__hashbrown__0_11_2//:hashbrown",
+        "@raze__hashbrown__0_12_3//:hashbrown",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.inotify-0.7.1.bazel b/third_party/rust/cargo/remote/BUILD.inotify-0.7.1.bazel
index 1bbbcd9..134c674 100644
--- a/third_party/rust/cargo/remote/BUILD.inotify-0.7.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.inotify-0.7.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -39,10 +40,7 @@
 rust_library(
     name = "inotify",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -50,14 +48,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=inotify",
         "manual",
     ],
     version = "0.7.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__bitflags__1_2_1//:bitflags",
+        "@raze__bitflags__1_3_2//:bitflags",
         "@raze__inotify_sys__0_1_5//:inotify_sys",
-        "@raze__libc__0_2_97//:libc",
+        "@raze__libc__0_2_139//:libc",
     ],
 )
 
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
index 3fe3d2e..6e05fce 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "inotify_sys",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,11 +42,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=inotify-sys",
         "manual",
     ],
     version = "0.1.5",
     # buildifier: leave-alone
     deps = [
-        "@raze__libc__0_2_97//:libc",
+        "@raze__libc__0_2_139//:libc",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.input_buffer-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.input_buffer-0.3.1.bazel
deleted file mode 100644
index babc1e0..0000000
--- a/third_party/rust/cargo/remote/BUILD.input_buffer-0.3.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "input_buffer",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__0_5_6//:bytes",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.instant-0.1.12.bazel
similarity index 74%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.instant-0.1.12.bazel
index f09bed8..b61df56 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.instant-0.1.12.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,20 +26,15 @@
 ])
 
 licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
+    "notice",  # BSD-3-Clause from expression "BSD-3-Clause"
 ])
 
 # Generated Targets
 
 rust_library(
-    name = "siphasher",
+    name = "instant",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=instant",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.1.12",
     # buildifier: leave-alone
     deps = [
+        "@raze__cfg_if__1_0_0//:cfg_if",
     ],
 )
+
+# Unsupported target "wasm" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.iovec-0.1.4.bazel b/third_party/rust/cargo/remote/BUILD.iovec-0.1.4.bazel
index d4abd18..d5ec95d 100644
--- a/third_party/rust/cargo/remote/BUILD.iovec-0.1.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.iovec-0.1.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,17 +44,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=iovec",
         "manual",
     ],
     version = "0.1.4",
     # buildifier: leave-alone
     deps = [
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.itoa-0.4.7.bazel b/third_party/rust/cargo/remote/BUILD.itoa-0.4.7.bazel
deleted file mode 100644
index 6ba6427..0000000
--- a/third_party/rust/cargo/remote/BUILD.itoa-0.4.7.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.7",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "test" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.dtoa-0.4.8.bazel b/third_party/rust/cargo/remote/BUILD.itoa-1.0.5.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.dtoa-0.4.8.bazel
rename to third_party/rust/cargo/remote/BUILD.itoa-1.0.5.bazel
index 070462d..8dcb6c8 100644
--- a/third_party/rust/cargo/remote/BUILD.dtoa-0.4.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.itoa-1.0.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,22 +34,20 @@
 # Unsupported target "bench" with type "bench" omitted
 
 rust_library(
-    name = "dtoa",
+    name = "itoa",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=itoa",
         "manual",
     ],
-    version = "0.4.8",
+    version = "1.0.5",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.js-sys-0.3.60.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.js-sys-0.3.60.bazel
index f09bed8..80c2060 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.js-sys-0.3.60.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,14 +32,9 @@
 # Generated Targets
 
 rust_library(
-    name = "siphasher",
+    name = "js_sys",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,16 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=js-sys",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.3.60",
     # buildifier: leave-alone
     deps = [
+        "@raze__wasm_bindgen__0_2_83//: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.kernel32-sys-0.2.2.bazel b/third_party/rust/cargo/remote/BUILD.kernel32-sys-0.2.2.bazel
index 6d6b02d..6c6309c 100644
--- a/third_party/rust/cargo/remote/BUILD.kernel32-sys-0.2.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.kernel32-sys-0.2.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -72,10 +71,7 @@
 rust_library(
     name = "kernel32",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -83,6 +79,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=kernel32",
         "manual",
     ],
     version = "0.2.2",
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
index 99a58af..b00efb1 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "lazy_static",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=lazy_static",
         "manual",
     ],
     version = "1.4.0",
diff --git a/third_party/rust/cargo/remote/BUILD.lazycell-1.3.0.bazel b/third_party/rust/cargo/remote/BUILD.lazycell-1.3.0.bazel
index 734cd15..90db9b8 100644
--- a/third_party/rust/cargo/remote/BUILD.lazycell-1.3.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.lazycell-1.3.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "lazycell",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=lazycell",
         "manual",
     ],
     version = "1.3.0",
diff --git a/third_party/rust/cargo/remote/BUILD.libc-0.2.97.bazel b/third_party/rust/cargo/remote/BUILD.libc-0.2.139.bazel
similarity index 91%
rename from third_party/rust/cargo/remote/BUILD.libc-0.2.97.bazel
rename to third_party/rust/cargo/remote/BUILD.libc-0.2.139.bazel
index aa2db0f..9ff6a2c 100644
--- a/third_party/rust/cargo/remote/BUILD.libc-0.2.97.bazel
+++ b/third_party/rust/cargo/remote/BUILD.libc-0.2.139.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -42,7 +43,6 @@
     build_script_env = {
     },
     crate_features = [
-        "align",
         "default",
         "std",
     ],
@@ -56,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.2.97",
+    version = "0.2.139",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -66,12 +66,10 @@
     name = "libc",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "align",
         "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -79,9 +77,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=libc",
         "manual",
     ],
-    version = "0.2.97",
+    version = "0.2.139",
     # buildifier: leave-alone
     deps = [
         ":libc_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.link-cplusplus-1.0.8.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
copy to third_party/rust/cargo/remote/BUILD.link-cplusplus-1.0.8.bazel
index 750605b..91a2f9d 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.link-cplusplus-1.0.8.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,17 +38,14 @@
 )
 
 cargo_build_script(
-    name = "futures_task_build_script",
+    name = "link_cplusplus_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "alloc",
-        "std",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
+    links = "cplusplus",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -55,21 +53,17 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "1.0.8",
     visibility = ["//visibility:private"],
     deps = [
+        "@raze__cc__1_0_78//:cc",
     ],
 )
 
 rust_library(
-    name = "futures_task",
+    name = "link_cplusplus",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,11 +71,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=link-cplusplus",
         "manual",
     ],
-    version = "0.3.15",
+    version = "1.0.8",
     # buildifier: leave-alone
     deps = [
-        ":futures_task_build_script",
+        ":link_cplusplus_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.lock_api-0.4.9.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
copy to third_party/rust/cargo/remote/BUILD.lock_api-0.4.9.bazel
index 750605b..8021c24 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.lock_api-0.4.9.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,14 +38,10 @@
 )
 
 cargo_build_script(
-    name = "futures_task_build_script",
+    name = "lock_api_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "alloc",
-        "std",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -55,21 +52,17 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.4.9",
     visibility = ["//visibility:private"],
     deps = [
+        "@raze__autocfg__1_1_0//:autocfg",
     ],
 )
 
 rust_library(
-    name = "futures_task",
+    name = "lock_api",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,11 +70,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=lock_api",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.4.9",
     # buildifier: leave-alone
     deps = [
-        ":futures_task_build_script",
+        ":lock_api_build_script",
+        "@raze__scopeguard__1_1_0//:scopeguard",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.log-0.4.14.bazel b/third_party/rust/cargo/remote/BUILD.log-0.4.17.bazel
similarity index 92%
rename from third_party/rust/cargo/remote/BUILD.log-0.4.14.bazel
rename to third_party/rust/cargo/remote/BUILD.log-0.4.17.bazel
index 70862b8..ed5f61d 100644
--- a/third_party/rust/cargo/remote/BUILD.log-0.4.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.log-0.4.17.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -54,7 +55,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.4.14",
+    version = "0.4.17",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -69,7 +70,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -77,9 +77,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=log",
         "manual",
     ],
-    version = "0.4.14",
+    version = "0.4.17",
     # buildifier: leave-alone
     deps = [
         ":log_build_script",
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
index 11d2366..c4eeeb6 100644
--- a/third_party/rust/cargo/remote/BUILD.mac-0.1.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mac-0.1.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "mac",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mac",
         "manual",
     ],
     version = "0.1.1",
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
index caa14cb..4ca4e21 100644
--- a/third_party/rust/cargo/remote/BUILD.maplit-1.0.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.maplit-1.0.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "maplit",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=maplit",
         "manual",
     ],
     version = "1.0.2",
diff --git a/third_party/rust/cargo/remote/BUILD.markup5ever-0.10.1.bazel b/third_party/rust/cargo/remote/BUILD.markup5ever-0.11.0.bazel
similarity index 76%
rename from third_party/rust/cargo/remote/BUILD.markup5ever-0.10.1.bazel
rename to third_party/rust/cargo/remote/BUILD.markup5ever-0.11.0.bazel
index 06e6782..b24ba93 100644
--- a/third_party/rust/cargo/remote/BUILD.markup5ever-0.10.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.markup5ever-0.11.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -53,21 +52,18 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.10.1",
+    version = "0.11.0",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__phf_codegen__0_8_0//:phf_codegen",
-        "@raze__string_cache_codegen__0_5_1//:string_cache_codegen",
+        "@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_features = [
-    ],
     crate_root = "lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -75,15 +71,16 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=markup5ever",
         "manual",
     ],
-    version = "0.10.1",
+    version = "0.11.0",
     # buildifier: leave-alone
     deps = [
         ":markup5ever_build_script",
-        "@raze__log__0_4_14//:log",
-        "@raze__phf__0_8_0//:phf",
-        "@raze__string_cache__0_8_1//:string_cache",
-        "@raze__tendril__0_4_2//:tendril",
+        "@raze__log__0_4_17//:log",
+        "@raze__phf__0_10_1//:phf",
+        "@raze__string_cache__0_8_4//:string_cache",
+        "@raze__tendril__0_4_3//:tendril",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.markup5ever_rcdom-0.1.0.bazel b/third_party/rust/cargo/remote/BUILD.markup5ever_rcdom-0.1.0.bazel
deleted file mode 100644
index 1ef6a56..0000000
--- a/third_party/rust/cargo/remote/BUILD.markup5ever_rcdom-0.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "hello_xml" with type "example" omitted
-
-# Unsupported target "html2html" with type "example" omitted
-
-# Unsupported target "print-rcdom" with type "example" omitted
-
-# Unsupported target "xml_tree_printer" with type "example" omitted
-
-rust_library(
-    name = "markup5ever_rcdom",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__html5ever__0_25_1//:html5ever",
-        "@raze__markup5ever__0_10_1//:markup5ever",
-        "@raze__tendril__0_4_2//:tendril",
-        "@raze__xml5ever__0_16_1//:xml5ever",
-    ],
-)
-
-# Unsupported target "html-driver" with type "test" omitted
-
-# Unsupported target "html-serializer" with type "test" omitted
-
-# Unsupported target "html-tokenizer" with type "test" omitted
-
-# Unsupported target "html-tree-builder" with type "test" omitted
-
-# Unsupported target "html-tree-sink" with type "test" omitted
-
-# Unsupported target "xml-driver" with type "test" omitted
-
-# Unsupported target "xml-tokenizer" with type "test" omitted
-
-# Unsupported target "xml-tree-builder" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.matches-0.1.8.bazel b/third_party/rust/cargo/remote/BUILD.matches-0.1.8.bazel
deleted file mode 100644
index 8005b8b..0000000
--- a/third_party/rust/cargo/remote/BUILD.matches-0.1.8.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "matches",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.8",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "macro_use_one" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.mdbook-0.4.10.bazel b/third_party/rust/cargo/remote/BUILD.mdbook-0.4.22.bazel
similarity index 75%
rename from third_party/rust/cargo/remote/BUILD.mdbook-0.4.10.bazel
rename to third_party/rust/cargo/remote/BUILD.mdbook-0.4.22.bazel
index 34708ef..b825718 100644
--- a/third_party/rust/cargo/remote/BUILD.mdbook-0.4.10.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mdbook-0.4.22.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -50,56 +51,53 @@
     ],
     crate_root = "src/main.rs",
     data = [] + [
-        "src/theme/playground_editor/editor.js",
         "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/fonts.css",
         "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-regular.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-italic.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/searcher.js",
-        "src/theme/searcher/mark.min.js",
         "src/theme/searcher/elasticlunr.min.js",
-        "src/theme/index.hbs",
+        "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/redirect.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/favicon.png",
-        "src/theme/favicon.svg",
-        "src/theme/book.js",
-        "src/theme/highlight.js",
-        "src/theme/tomorrow-night.css",
-        "src/theme/highlight.css",
-        "src/theme/ayu-highlight.css",
-        "src/theme/clipboard.min.js",
         "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",
-        "src/theme/FontAwesome/fonts/FontAwesome.otf",
     ],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__serde_derive__1_0_126//:serde_derive",
-    ],
+    edition = "2021",
     rustc_env = {
         "PATH": "/usr/bin",
     },
@@ -108,35 +106,38 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mdbook",
         "manual",
     ],
-    version = "0.4.10",
+    version = "0.4.22",
     # buildifier: leave-alone
     deps = [
         ":mdbook",
-        "@raze__ammonia__3_1_1//:ammonia",
-        "@raze__anyhow__1_0_41//:anyhow",
-        "@raze__chrono__0_4_19//:chrono",
-        "@raze__clap__2_33_3//:clap",
-        "@raze__elasticlunr_rs__2_3_13//:elasticlunr_rs",
-        "@raze__env_logger__0_7_1//:env_logger",
-        "@raze__futures_util__0_3_15//:futures_util",
+        "@raze__ammonia__3_3_0//:ammonia",
+        "@raze__anyhow__1_0_68//:anyhow",
+        "@raze__chrono__0_4_23//:chrono",
+        "@raze__clap__3_2_23//:clap",
+        "@raze__clap_complete__3_2_5//:clap_complete",
+        "@raze__elasticlunr_rs__3_0_1//:elasticlunr_rs",
+        "@raze__env_logger__0_9_3//:env_logger",
+        "@raze__futures_util__0_3_25//:futures_util",
         "@raze__gitignore__1_0_7//:gitignore",
-        "@raze__handlebars__4_0_1//:handlebars",
-        "@raze__lazy_static__1_4_0//:lazy_static",
-        "@raze__log__0_4_14//:log",
-        "@raze__memchr__2_4_0//:memchr",
+        "@raze__handlebars__4_3_6//:handlebars",
+        "@raze__log__0_4_17//:log",
+        "@raze__memchr__2_5_0//:memchr",
         "@raze__notify__4_0_17//:notify",
-        "@raze__open__1_7_0//:open",
-        "@raze__pulldown_cmark__0_7_2//:pulldown_cmark",
-        "@raze__regex__1_5_4//:regex",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__serde_json__1_0_64//:serde_json",
-        "@raze__shlex__1_0_0//:shlex",
-        "@raze__tempfile__3_2_0//:tempfile",
-        "@raze__tokio__0_2_25//:tokio",
-        "@raze__toml__0_5_8//:toml",
-        "@raze__warp__0_2_5//:warp",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__opener__0_5_0//:opener",
+        "@raze__pulldown_cmark__0_9_2//:pulldown_cmark",
+        "@raze__regex__1_7_1//:regex",
+        "@raze__serde__1_0_152//:serde",
+        "@raze__serde_json__1_0_91//:serde_json",
+        "@raze__shlex__1_1_0//:shlex",
+        "@raze__tempfile__3_3_0//:tempfile",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__toml__0_5_10//:toml",
+        "@raze__topological_sort__0_1_0//:topological_sort",
+        "@raze__warp__0_3_3//:warp",
     ],
 )
 
@@ -159,58 +160,54 @@
         "watch",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [] + [
-        "src/theme/playground_editor/editor.js",
         "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/fonts.css",
         "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-regular.woff2",
-        "src/theme/fonts/open-sans-v17-all-charsets-italic.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/searcher.js",
-        "src/theme/searcher/mark.min.js",
         "src/theme/searcher/elasticlunr.min.js",
-        "src/theme/index.hbs",
+        "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/redirect.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/favicon.png",
-        "src/theme/favicon.svg",
-        "src/theme/book.js",
-        "src/theme/highlight.js",
-        "src/theme/tomorrow-night.css",
-        "src/theme/highlight.css",
-        "src/theme/ayu-highlight.css",
-        "src/theme/clipboard.min.js",
         "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",
-        "src/theme/FontAwesome/fonts/FontAwesome.otf",
     ],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__serde_derive__1_0_126//:serde_derive",
-    ],
+    edition = "2021",
     rustc_env = {
         "PATH": "/usr/bin",
     },
@@ -219,34 +216,37 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mdbook",
         "manual",
     ],
-    version = "0.4.10",
+    version = "0.4.22",
     # buildifier: leave-alone
     deps = [
-        "@raze__ammonia__3_1_1//:ammonia",
-        "@raze__anyhow__1_0_41//:anyhow",
-        "@raze__chrono__0_4_19//:chrono",
-        "@raze__clap__2_33_3//:clap",
-        "@raze__elasticlunr_rs__2_3_13//:elasticlunr_rs",
-        "@raze__env_logger__0_7_1//:env_logger",
-        "@raze__futures_util__0_3_15//:futures_util",
+        "@raze__ammonia__3_3_0//:ammonia",
+        "@raze__anyhow__1_0_68//:anyhow",
+        "@raze__chrono__0_4_23//:chrono",
+        "@raze__clap__3_2_23//:clap",
+        "@raze__clap_complete__3_2_5//:clap_complete",
+        "@raze__elasticlunr_rs__3_0_1//:elasticlunr_rs",
+        "@raze__env_logger__0_9_3//:env_logger",
+        "@raze__futures_util__0_3_25//:futures_util",
         "@raze__gitignore__1_0_7//:gitignore",
-        "@raze__handlebars__4_0_1//:handlebars",
-        "@raze__lazy_static__1_4_0//:lazy_static",
-        "@raze__log__0_4_14//:log",
-        "@raze__memchr__2_4_0//:memchr",
+        "@raze__handlebars__4_3_6//:handlebars",
+        "@raze__log__0_4_17//:log",
+        "@raze__memchr__2_5_0//:memchr",
         "@raze__notify__4_0_17//:notify",
-        "@raze__open__1_7_0//:open",
-        "@raze__pulldown_cmark__0_7_2//:pulldown_cmark",
-        "@raze__regex__1_5_4//:regex",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__serde_json__1_0_64//:serde_json",
-        "@raze__shlex__1_0_0//:shlex",
-        "@raze__tempfile__3_2_0//:tempfile",
-        "@raze__tokio__0_2_25//:tokio",
-        "@raze__toml__0_5_8//:toml",
-        "@raze__warp__0_2_5//:warp",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__opener__0_5_0//:opener",
+        "@raze__pulldown_cmark__0_9_2//:pulldown_cmark",
+        "@raze__regex__1_7_1//:regex",
+        "@raze__serde__1_0_152//:serde",
+        "@raze__serde_json__1_0_91//:serde_json",
+        "@raze__shlex__1_1_0//:shlex",
+        "@raze__tempfile__3_3_0//:tempfile",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__toml__0_5_10//:toml",
+        "@raze__topological_sort__0_1_0//:topological_sort",
+        "@raze__warp__0_3_3//:warp",
     ],
 )
 
@@ -254,6 +254,8 @@
 
 # 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
diff --git a/third_party/rust/cargo/remote/BUILD.memchr-2.4.0.bazel b/third_party/rust/cargo/remote/BUILD.memchr-2.5.0.bazel
similarity index 92%
rename from third_party/rust/cargo/remote/BUILD.memchr-2.4.0.bazel
rename to third_party/rust/cargo/remote/BUILD.memchr-2.5.0.bazel
index be54de0..7a8a02d 100644
--- a/third_party/rust/cargo/remote/BUILD.memchr-2.4.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.memchr-2.5.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -55,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "2.4.0",
+    version = "2.5.0",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -69,7 +70,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,9 +77,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=memchr",
         "manual",
     ],
-    version = "2.4.0",
+    version = "2.5.0",
     # buildifier: leave-alone
     deps = [
         ":memchr_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.mime-0.3.16.bazel b/third_party/rust/cargo/remote/BUILD.mime-0.3.16.bazel
index 2c54177..5501611 100644
--- a/third_party/rust/cargo/remote/BUILD.mime-0.3.16.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mime-0.3.16.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -39,10 +40,7 @@
 rust_library(
     name = "mime",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -50,6 +48,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mime",
         "manual",
     ],
     version = "0.3.16",
diff --git a/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.3.bazel b/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.4.bazel
similarity index 92%
rename from third_party/rust/cargo/remote/BUILD.mime_guess-2.0.3.bazel
rename to third_party/rust/cargo/remote/BUILD.mime_guess-2.0.4.bazel
index cf15029..b625895 100644
--- a/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mime_guess-2.0.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -55,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "2.0.3",
+    version = "2.0.4",
     visibility = ["//visibility:private"],
     deps = [
         "@raze__unicase__2_6_0//:unicase",
@@ -74,7 +75,6 @@
         "rev-mappings",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -82,9 +82,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mime_guess",
         "manual",
     ],
-    version = "2.0.3",
+    version = "2.0.4",
     # buildifier: leave-alone
     deps = [
         ":mime_guess_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.mio-0.6.23.bazel b/third_party/rust/cargo/remote/BUILD.mio-0.6.23.bazel
index 87fa4b2..6dcd020 100644
--- a/third_party/rust/cargo/remote/BUILD.mio-0.6.23.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mio-0.6.23.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -40,7 +41,6 @@
         "with-deprecated",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -48,6 +48,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mio",
         "manual",
     ],
     version = "0.6.23",
@@ -55,15 +56,14 @@
     deps = [
         "@raze__cfg_if__0_1_10//:cfg_if",
         "@raze__iovec__0_1_4//:iovec",
-        "@raze__log__0_4_14//:log",
-        "@raze__net2__0_2_37//:net2",
-        "@raze__slab__0_4_3//:slab",
+        "@raze__log__0_4_17//:log",
+        "@raze__net2__0_2_38//:net2",
+        "@raze__slab__0_4_7//:slab",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.rand-0.8.4.bazel b/third_party/rust/cargo/remote/BUILD.mio-0.8.5.bazel
similarity index 68%
copy from third_party/rust/cargo/remote/BUILD.rand-0.8.4.bazel
copy to third_party/rust/cargo/remote/BUILD.mio-0.8.5.bazel
index bc8c1f3..c1336ec 100644
--- a/third_party/rust/cargo/remote/BUILD.rand-0.8.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mio-0.8.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,28 +26,29 @@
 ])
 
 licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
+    "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 = "rand",
+    name = "mio",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
     crate_features = [
-        "alloc",
         "default",
-        "getrandom",
-        "libc",
-        "rand_chacha",
-        "rand_hc",
-        "std",
-        "std_rng",
+        "net",
+        "os-ext",
+        "os-poll",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -54,19 +56,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mio",
         "manual",
     ],
-    version = "0.8.4",
+    version = "0.8.5",
     # buildifier: leave-alone
     deps = [
-        "@raze__rand_chacha__0_3_1//:rand_chacha",
-        "@raze__rand_core__0_6_3//:rand_core",
+        "@raze__log__0_4_17//:log",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.mio-extras-2.0.6.bazel b/third_party/rust/cargo/remote/BUILD.mio-extras-2.0.6.bazel
index d9557d2..6e0cf10 100644
--- a/third_party/rust/cargo/remote/BUILD.mio-extras-2.0.6.bazel
+++ b/third_party/rust/cargo/remote/BUILD.mio-extras-2.0.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "mio_extras",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,15 +42,16 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=mio-extras",
         "manual",
     ],
     version = "2.0.6",
     # buildifier: leave-alone
     deps = [
         "@raze__lazycell__1_3_0//:lazycell",
-        "@raze__log__0_4_14//:log",
+        "@raze__log__0_4_17//:log",
         "@raze__mio__0_6_23//:mio",
-        "@raze__slab__0_4_3//:slab",
+        "@raze__slab__0_4_7//:slab",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.miow-0.2.2.bazel b/third_party/rust/cargo/remote/BUILD.miow-0.2.2.bazel
index 3768862..911682f 100644
--- a/third_party/rust/cargo/remote/BUILD.miow-0.2.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.miow-0.2.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "miow",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,13 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=miow",
         "manual",
     ],
     version = "0.2.2",
     # buildifier: leave-alone
     deps = [
         "@raze__kernel32_sys__0_2_2//:kernel32_sys",
-        "@raze__net2__0_2_37//:net2",
+        "@raze__net2__0_2_38//:net2",
         "@raze__winapi__0_2_8//:winapi",
         "@raze__ws2_32_sys__0_2_1//:ws2_32_sys",
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.net2-0.2.37.bazel b/third_party/rust/cargo/remote/BUILD.net2-0.2.38.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.net2-0.2.37.bazel
rename to third_party/rust/cargo/remote/BUILD.net2-0.2.38.bazel
index 6d56dd8..3a2c103 100644
--- a/third_party/rust/cargo/remote/BUILD.net2-0.2.37.bazel
+++ b/third_party/rust/cargo/remote/BUILD.net2-0.2.38.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -40,7 +41,6 @@
         "duration",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -48,18 +48,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=net2",
         "manual",
     ],
-    version = "0.2.37",
+    version = "0.2.38",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__0_1_10//:cfg_if",
     ] + selects.with_or({
-        # cfg(any(target_os = "redox", unix, target_os = "wasi"))
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
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
index 544ee20..15aeddb 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -44,10 +45,7 @@
 rust_library(
     name = "debug_unreachable",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -55,6 +53,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=debug_unreachable",
         "manual",
     ],
     version = "1.0.4",
diff --git a/third_party/rust/cargo/remote/BUILD.notify-4.0.17.bazel b/third_party/rust/cargo/remote/BUILD.notify-4.0.17.bazel
index 05e5b07..6fb88b7 100644
--- a/third_party/rust/cargo/remote/BUILD.notify-4.0.17.bazel
+++ b/third_party/rust/cargo/remote/BUILD.notify-4.0.17.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -39,10 +40,7 @@
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -50,17 +48,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=notify",
         "manual",
     ],
     version = "4.0.17",
     # buildifier: leave-alone
     deps = [
-        "@raze__bitflags__1_2_1//:bitflags",
-        "@raze__filetime__0_2_14//:filetime",
-        "@raze__libc__0_2_97//:libc",
+        "@raze__bitflags__1_3_2//:bitflags",
+        "@raze__filetime__0_2_19//:filetime",
+        "@raze__libc__0_2_139//:libc",
         "@raze__walkdir__2_3_2//:walkdir",
     ] + selects.with_or({
-        # cfg(target_os = "linux")
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
diff --git a/third_party/rust/cargo/remote/BUILD.num-integer-0.1.44.bazel b/third_party/rust/cargo/remote/BUILD.num-integer-0.1.45.bazel
similarity index 87%
rename from third_party/rust/cargo/remote/BUILD.num-integer-0.1.44.bazel
rename to third_party/rust/cargo/remote/BUILD.num-integer-0.1.45.bazel
index 5223ab7..5bd35f0 100644
--- a/third_party/rust/cargo/remote/BUILD.num-integer-0.1.44.bazel
+++ b/third_party/rust/cargo/remote/BUILD.num-integer-0.1.45.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -53,10 +52,10 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.44",
+    version = "0.1.45",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__autocfg__1_0_1//:autocfg",
+        "@raze__autocfg__1_1_0//:autocfg",
     ],
 )
 
@@ -69,10 +68,7 @@
 rust_library(
     name = "num_integer",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -80,13 +76,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=num-integer",
         "manual",
     ],
-    version = "0.1.44",
+    version = "0.1.45",
     # buildifier: leave-alone
     deps = [
         ":num_integer_build_script",
-        "@raze__num_traits__0_2_14//:num_traits",
+        "@raze__num_traits__0_2_15//:num_traits",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.num-traits-0.2.14.bazel b/third_party/rust/cargo/remote/BUILD.num-traits-0.2.15.bazel
similarity index 87%
rename from third_party/rust/cargo/remote/BUILD.num-traits-0.2.14.bazel
rename to third_party/rust/cargo/remote/BUILD.num-traits-0.2.15.bazel
index 86f22ce..b49fb04 100644
--- a/third_party/rust/cargo/remote/BUILD.num-traits-0.2.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.num-traits-0.2.15.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -53,20 +52,17 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.2.14",
+    version = "0.2.15",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__autocfg__1_0_1//:autocfg",
+        "@raze__autocfg__1_1_0//:autocfg",
     ],
 )
 
 rust_library(
     name = "num_traits",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -74,9 +70,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=num-traits",
         "manual",
     ],
-    version = "0.2.14",
+    version = "0.2.15",
     # buildifier: leave-alone
     deps = [
         ":num_traits_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel b/third_party/rust/cargo/remote/BUILD.num_cpus-1.15.0.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
copy to third_party/rust/cargo/remote/BUILD.num_cpus-1.15.0.bazel
index 12de45b..5071d21 100644
--- a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.num_cpus-1.15.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,34 +31,32 @@
 
 # Generated Targets
 
+# Unsupported target "values" with type "example" omitted
+
 rust_library(
-    name = "filetime",
+    name = "num_cpus",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2018",
+    edition = "2015",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=num_cpus",
         "manual",
     ],
-    version = "0.2.14",
+    version = "1.15.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.once_cell-1.17.0.bazel b/third_party/rust/cargo/remote/BUILD.once_cell-1.17.0.bazel
new file mode 100644
index 0000000..f8ca983
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.once_cell-1.17.0.bazel
@@ -0,0 +1,74 @@
+"""
+@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 "bench_vs_lazy_static" 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.17.0",
+    # buildifier: leave-alone
+    deps = [
+    ],
+)
+
+# Unsupported target "it" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.opaque-debug-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.opaque-debug-0.2.3.bazel
deleted file mode 100644
index b522127..0000000
--- a/third_party/rust/cargo/remote/BUILD.opaque-debug-0.2.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "opaque_debug",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.open-1.7.0.bazel b/third_party/rust/cargo/remote/BUILD.open-1.7.0.bazel
deleted file mode 100644
index 0a94da6..0000000
--- a/third_party/rust/cargo/remote/BUILD.open-1.7.0.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_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_open",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-    ],
-    crate_root = "src/main.rs",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.7.0",
-    # buildifier: leave-alone
-    deps = [
-        ":open",
-    ] + selects.with_or({
-        # cfg(all(unix, not(macos)))
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__which__4_1_0//:which",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-rust_library(
-    name = "open",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.7.0",
-    # buildifier: leave-alone
-    deps = [
-    ] + selects.with_or({
-        # cfg(all(unix, not(macos)))
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__which__4_1_0//:which",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel b/third_party/rust/cargo/remote/BUILD.opener-0.5.0.bazel
similarity index 79%
copy from third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
copy to third_party/rust/cargo/remote/BUILD.opener-0.5.0.bazel
index 12de45b..756fc3b 100644
--- a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.opener-0.5.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,34 +32,34 @@
 # Generated Targets
 
 rust_library(
-    name = "filetime",
+    name = "opener",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
+    data = [] + [
+        "src/xdg-open",
+    ],
     edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=opener",
         "manual",
     ],
-    version = "0.2.14",
+    version = "0.5.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__bstr__0_2_17//:bstr",
         ],
         "//conditions:default": [],
     }),
 )
+
+# Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel b/third_party/rust/cargo/remote/BUILD.os_str_bytes-6.4.1.bazel
similarity index 82%
copy from third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
copy to third_party/rust/cargo/remote/BUILD.os_str_bytes-6.4.1.bazel
index 7a47c54..4c513a6 100644
--- a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.os_str_bytes-6.4.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,24 +32,23 @@
 # Generated Targets
 
 rust_library(
-    name = "either",
+    name = "os_str_bytes",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "default",
-        "use_std",
+        "raw_os_str",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=os_str_bytes",
         "manual",
     ],
-    version = "1.6.1",
+    version = "6.4.1",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.parking_lot-0.12.1.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.parking_lot-0.12.1.bazel
index f09bed8..2af0afa 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.parking_lot-0.12.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,14 +32,12 @@
 # Generated Targets
 
 rust_library(
-    name = "siphasher",
+    name = "parking_lot",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
-        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +45,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=parking_lot",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.12.1",
     # buildifier: leave-alone
     deps = [
+        "@raze__lock_api__0_4_9//:lock_api",
+        "@raze__parking_lot_core__0_9_6//:parking_lot_core",
     ],
 )
+
+# Unsupported target "issue_203" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.getrandom-0.1.16.bazel b/third_party/rust/cargo/remote/BUILD.parking_lot_core-0.9.6.bazel
similarity index 78%
rename from third_party/rust/cargo/remote/BUILD.getrandom-0.1.16.bazel
rename to third_party/rust/cargo/remote/BUILD.parking_lot_core-0.9.6.bazel
index cc0280d..4902132 100644
--- a/third_party/rust/cargo/remote/BUILD.getrandom-0.1.16.bazel
+++ b/third_party/rust/cargo/remote/BUILD.parking_lot_core-0.9.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,13 +38,10 @@
 )
 
 cargo_build_script(
-    name = "getrandom_build_script",
+    name = "parking_lot_core_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "std",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -54,11 +52,10 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.16",
+    version = "0.9.6",
     visibility = ["//visibility:private"],
     deps = [
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
@@ -67,18 +64,12 @@
     }),
 )
 
-# Unsupported target "mod" with type "bench" omitted
-
 rust_library(
-    name = "getrandom",
+    name = "parking_lot_core",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -86,22 +77,21 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=parking_lot_core",
         "manual",
     ],
-    version = "0.1.16",
+    version = "0.9.6",
     # buildifier: leave-alone
     deps = [
-        ":getrandom_build_script",
+        ":parking_lot_core_build_script",
         "@raze__cfg_if__1_0_0//:cfg_if",
+        "@raze__smallvec__1_10_0//:smallvec",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
 )
-
-# Unsupported target "common" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.percent-encoding-2.1.0.bazel b/third_party/rust/cargo/remote/BUILD.percent-encoding-2.1.0.bazel
deleted file mode 100644
index ade35f7..0000000
--- a/third_party/rust/cargo/remote/BUILD.percent-encoding-2.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = [
-    ],
-    crate_root = "lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "2.1.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.percent-encoding-2.2.0.bazel
similarity index 86%
copy from third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel
copy to third_party/rust/cargo/remote/BUILD.percent-encoding-2.2.0.bazel
index 45cf684..345e812 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-sink-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.percent-encoding-2.2.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,15 +32,13 @@
 # Generated Targets
 
 rust_library(
-    name = "futures_sink",
+    name = "percent_encoding",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "alloc",
         "default",
-        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -47,9 +46,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=percent-encoding",
         "manual",
     ],
-    version = "0.3.15",
+    version = "2.2.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.pest-2.1.3.bazel b/third_party/rust/cargo/remote/BUILD.pest-2.5.3.bazel
similarity index 79%
rename from third_party/rust/cargo/remote/BUILD.pest-2.1.3.bazel
rename to third_party/rust/cargo/remote/BUILD.pest-2.5.3.bazel
index dc17616..0057ced 100644
--- a/third_party/rust/cargo/remote/BUILD.pest-2.1.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pest-2.5.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -36,22 +37,26 @@
     name = "pest",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "default",
+        "std",
+        "thiserror",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pest",
         "manual",
     ],
-    version = "2.1.3",
+    version = "2.5.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__ucd_trie__0_1_3//:ucd_trie",
+        "@raze__thiserror__1_0_38//:thiserror",
+        "@raze__ucd_trie__0_1_5//:ucd_trie",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.pest_derive-2.1.0.bazel b/third_party/rust/cargo/remote/BUILD.pest_derive-2.5.3.bazel
similarity index 74%
rename from third_party/rust/cargo/remote/BUILD.pest_derive-2.1.0.bazel
rename to third_party/rust/cargo/remote/BUILD.pest_derive-2.5.3.bazel
index 3d8f9b9..f476e43 100644
--- a/third_party/rust/cargo/remote/BUILD.pest_derive-2.1.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pest_derive-2.5.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,27 +31,31 @@
 
 # Generated Targets
 
-rust_library(
+# Unsupported target "calc" with type "example" omitted
+
+rust_proc_macro(
     name = "pest_derive",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "default",
+        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pest_derive",
         "manual",
     ],
-    version = "2.1.0",
+    version = "2.5.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__pest__2_1_3//:pest",
-        "@raze__pest_generator__2_1_3//:pest_generator",
+        "@raze__pest__2_5_3//:pest",
+        "@raze__pest_generator__2_5_3//:pest_generator",
     ],
 )
 
@@ -58,6 +63,8 @@
 
 # Unsupported target "grammar_inline" with type "test" omitted
 
+# Unsupported target "implicit" with type "test" omitted
+
 # Unsupported target "lists" with type "test" omitted
 
 # Unsupported target "reporting" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.pest_generator-2.1.3.bazel b/third_party/rust/cargo/remote/BUILD.pest_generator-2.5.3.bazel
similarity index 71%
rename from third_party/rust/cargo/remote/BUILD.pest_generator-2.1.3.bazel
rename to third_party/rust/cargo/remote/BUILD.pest_generator-2.5.3.bazel
index 39f82bb..e9a8a3a 100644
--- a/third_party/rust/cargo/remote/BUILD.pest_generator-2.1.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pest_generator-2.5.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -34,25 +35,26 @@
     name = "pest_generator",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pest_generator",
         "manual",
     ],
-    version = "2.1.3",
+    version = "2.5.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__pest__2_1_3//:pest",
-        "@raze__pest_meta__2_1_3//:pest_meta",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        "@raze__pest__2_5_3//:pest",
+        "@raze__pest_meta__2_5_3//:pest_meta",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.pest_meta-2.1.3.bazel b/third_party/rust/cargo/remote/BUILD.pest_meta-2.5.3.bazel
similarity index 80%
rename from third_party/rust/cargo/remote/BUILD.pest_meta-2.1.3.bazel
rename to third_party/rust/cargo/remote/BUILD.pest_meta-2.5.3.bazel
index 50297bb..def1f31 100644
--- a/third_party/rust/cargo/remote/BUILD.pest_meta-2.1.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pest_meta-2.5.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,23 +34,21 @@
 rust_library(
     name = "pest_meta",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pest_meta",
         "manual",
     ],
-    version = "2.1.3",
+    version = "2.5.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__maplit__1_0_2//:maplit",
-        "@raze__pest__2_1_3//:pest",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__pest__2_5_3//:pest",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.phf-0.8.0.bazel b/third_party/rust/cargo/remote/BUILD.phf-0.10.1.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.phf-0.8.0.bazel
rename to third_party/rust/cargo/remote/BUILD.phf-0.10.1.bazel
index 83145ca..29e1b95 100644
--- a/third_party/rust/cargo/remote/BUILD.phf-0.8.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.phf-0.10.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -38,7 +39,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,11 +46,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=phf",
         "manual",
     ],
-    version = "0.8.0",
+    version = "0.10.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__phf_shared__0_8_0//:phf_shared",
+        "@raze__phf_shared__0_10_0//:phf_shared",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.phf_codegen-0.8.0.bazel b/third_party/rust/cargo/remote/BUILD.phf_codegen-0.10.0.bazel
similarity index 80%
rename from third_party/rust/cargo/remote/BUILD.phf_codegen-0.8.0.bazel
rename to third_party/rust/cargo/remote/BUILD.phf_codegen-0.10.0.bazel
index baf4811..86cc8d6 100644
--- a/third_party/rust/cargo/remote/BUILD.phf_codegen-0.8.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.phf_codegen-0.10.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "phf_codegen",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,12 +42,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=phf_codegen",
         "manual",
     ],
-    version = "0.8.0",
+    version = "0.10.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__phf_generator__0_8_0//:phf_generator",
-        "@raze__phf_shared__0_8_0//:phf_shared",
+        "@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.8.0.bazel b/third_party/rust/cargo/remote/BUILD.phf_generator-0.10.0.bazel
similarity index 80%
rename from third_party/rust/cargo/remote/BUILD.phf_generator-0.8.0.bazel
rename to third_party/rust/cargo/remote/BUILD.phf_generator-0.10.0.bazel
index ecff7a0..31f7122 100644
--- a/third_party/rust/cargo/remote/BUILD.phf_generator-0.8.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.phf_generator-0.10.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,8 +38,6 @@
     # N.B.: The exact form of this is subject to change.
     name = "cargo_bin_gen_hash_test",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/bin/gen_hash_test.rs",
     data = [],
     edition = "2018",
@@ -47,24 +46,22 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=gen_hash_test",
         "manual",
     ],
-    version = "0.8.0",
+    version = "0.10.0",
     # buildifier: leave-alone
     deps = [
         ":phf_generator",
-        "@raze__phf_shared__0_8_0//:phf_shared",
-        "@raze__rand__0_7_3//:rand",
+        "@raze__phf_shared__0_10_0//:phf_shared",
+        "@raze__rand__0_8_5//:rand",
     ],
 )
 
 rust_library(
     name = "phf_generator",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -72,12 +69,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=phf_generator",
         "manual",
     ],
-    version = "0.8.0",
+    version = "0.10.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__phf_shared__0_8_0//:phf_shared",
-        "@raze__rand__0_7_3//:rand",
+        "@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.8.0.bazel b/third_party/rust/cargo/remote/BUILD.phf_shared-0.10.0.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.phf_shared-0.8.0.bazel
rename to third_party/rust/cargo/remote/BUILD.phf_shared-0.10.0.bazel
index eb63003..fd8d2fa 100644
--- a/third_party/rust/cargo/remote/BUILD.phf_shared-0.8.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.phf_shared-0.10.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -38,7 +39,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,11 +46,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=phf_shared",
         "manual",
     ],
-    version = "0.8.0",
+    version = "0.10.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__siphasher__0_3_5//:siphasher",
+        "@raze__siphasher__0_3_10//:siphasher",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-0.4.28.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-0.4.28.bazel
deleted file mode 100644
index 6fb9f74..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-project-0.4.28.bazel
+++ /dev/null
@@ -1,104 +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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__pin_project_internal__0_4_28//:pin_project_internal",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.28",
-    # 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 "lint" with type "test" omitted
-
-# Unsupported target "pin_project" with type "test" omitted
-
-# Unsupported target "pinned_drop" with type "test" omitted
-
-# Unsupported target "project" with type "test" omitted
-
-# Unsupported target "project_ref" with type "test" omitted
-
-# Unsupported target "project_replace" with type "test" omitted
-
-# Unsupported target "repr_packed" with type "test" omitted
-
-# Unsupported target "sized" with type "test" omitted
-
-# Unsupported target "unsafe_unpin" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-1.0.7.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-1.0.12.bazel
similarity index 92%
rename from third_party/rust/cargo/remote/BUILD.pin-project-1.0.7.bazel
rename to third_party/rust/cargo/remote/BUILD.pin-project-1.0.12.bazel
index 60573ea..5b14a19 100644
--- a/third_party/rust/cargo/remote/BUILD.pin-project-1.0.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pin-project-1.0.12.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -57,23 +58,21 @@
 rust_library(
     name = "pin_project",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     proc_macro_deps = [
-        "@raze__pin_project_internal__1_0_7//:pin_project_internal",
+        "@raze__pin_project_internal__1_0_12//:pin_project_internal",
     ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pin-project",
         "manual",
     ],
-    version = "1.0.7",
+    version = "1.0.12",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-internal-0.4.28.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-internal-0.4.28.bazel
deleted file mode 100644
index a966773..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-project-internal-0.4.28.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "pin_project_internal_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.28",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
-
-rust_library(
-    name = "pin_project_internal",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.28",
-    # buildifier: leave-alone
-    deps = [
-        ":pin_project_internal_build_script",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.7.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.12.bazel
similarity index 77%
rename from third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.7.bazel
rename to third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.12.bazel
index a3c5dca..d3a23cd 100644
--- a/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pin-project-internal-1.0.12.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,13 +31,10 @@
 
 # Generated Targets
 
-rust_library(
+rust_proc_macro(
     name = "pin_project_internal",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,13 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pin-project-internal",
         "manual",
     ],
-    version = "1.0.7",
+    version = "1.0.12",
     # buildifier: leave-alone
     deps = [
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.1.12.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.1.12.bazel
deleted file mode 100644
index 3165ace..0000000
--- a/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.1.12.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.12",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "compiletest" 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-project-lite-0.2.7.bazel b/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.9.bazel
similarity index 91%
rename from third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel
rename to third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.9.bazel
index efc159b..6c5d15b 100644
--- a/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pin-project-lite-0.2.9.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "pin_project_lite",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pin-project-lite",
         "manual",
     ],
-    version = "0.2.7",
+    version = "0.2.9",
     # buildifier: leave-alone
     deps = [
     ],
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
index 61c771e..7b67e17 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "pin_utils",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pin-utils",
         "manual",
     ],
     version = "0.1.0",
diff --git a/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.10.bazel b/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.17.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.10.bazel
rename to third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.17.bazel
index 8dd417b..d1a78e0 100644
--- a/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.10.bazel
+++ b/third_party/rust/cargo/remote/BUILD.ppv-lite86-0.2.17.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -38,7 +39,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,9 +46,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=ppv-lite86",
         "manual",
     ],
-    version = "0.2.10",
+    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
index cd45340..b43c8ff 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "precomputed_hash",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=precomputed-hash",
         "manual",
     ],
     version = "0.1.1",
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.27.bazel b/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.49.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.27.bazel
rename to third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.49.bazel
index 926be40..3466557 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.27.bazel
+++ b/third_party/rust/cargo/remote/BUILD.proc-macro2-1.0.49.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -44,6 +45,7 @@
     crate_features = [
         "default",
         "proc-macro",
+        "span-locations",
     ],
     crate_root = "build.rs",
     data = glob(["**"]),
@@ -55,7 +57,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.27",
+    version = "1.0.49",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -67,9 +69,9 @@
     crate_features = [
         "default",
         "proc-macro",
+        "span-locations",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,13 +79,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=proc-macro2",
         "manual",
     ],
-    version = "1.0.27",
+    version = "1.0.49",
     # buildifier: leave-alone
     deps = [
         ":proc_macro2_build_script",
-        "@raze__unicode_xid__0_2_2//:unicode_xid",
+        "@raze__unicode_ident__1_0_6//:unicode_ident",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.7.2.bazel b/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.9.2.bazel
similarity index 78%
rename from third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.7.2.bazel
rename to third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.9.2.bazel
index 0236abb..07cfd99 100644
--- a/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.7.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.pulldown-cmark-0.9.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,13 +42,9 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "default",
-        "getopts",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2018",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -55,7 +52,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.7.2",
+    version = "0.9.2",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -65,37 +62,37 @@
 
 # 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_features = [
-        "default",
-        "getopts",
-    ],
     crate_root = "src/main.rs",
     data = [],
-    edition = "2018",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pulldown-cmark",
         "manual",
     ],
-    version = "0.7.2",
+    version = "0.9.2",
     # buildifier: leave-alone
     deps = [
         ":pulldown_cmark",
         ":pulldown_cmark_build_script",
-        "@raze__bitflags__1_2_1//:bitflags",
-        "@raze__getopts__0_2_21//:getopts",
-        "@raze__memchr__2_4_0//:memchr",
+        "@raze__bitflags__1_3_2//:bitflags",
+        "@raze__memchr__2_5_0//:memchr",
         "@raze__unicase__2_6_0//:unicase",
     ],
 )
 
+# Unsupported target "broken-link-callbacks" with type "example" omitted
+
 # Unsupported target "event-filter" with type "example" omitted
 
 # Unsupported target "string-to-string" with type "example" omitted
@@ -103,28 +100,23 @@
 rust_library(
     name = "pulldown_cmark",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "getopts",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2018",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=pulldown-cmark",
         "manual",
     ],
-    version = "0.7.2",
+    version = "0.9.2",
     # buildifier: leave-alone
     deps = [
         ":pulldown_cmark_build_script",
-        "@raze__bitflags__1_2_1//:bitflags",
-        "@raze__getopts__0_2_21//:getopts",
-        "@raze__memchr__2_4_0//:memchr",
+        "@raze__bitflags__1_3_2//:bitflags",
+        "@raze__memchr__2_5_0//:memchr",
         "@raze__unicase__2_6_0//:unicase",
     ],
 )
@@ -134,3 +126,5 @@
 # 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.quick-error-1.2.3.bazel b/third_party/rust/cargo/remote/BUILD.quick-error-1.2.3.bazel
deleted file mode 100644
index a91f93c..0000000
--- a/third_party/rust/cargo/remote/BUILD.quick-error-1.2.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "context" with type "example" omitted
-
-rust_library(
-    name = "quick_error",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.2.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.quick-error-2.0.1.bazel b/third_party/rust/cargo/remote/BUILD.quick-error-2.0.1.bazel
deleted file mode 100644
index 19ed551..0000000
--- a/third_party/rust/cargo/remote/BUILD.quick-error-2.0.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "context" with type "example" omitted
-
-rust_library(
-    name = "quick_error",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "2.0.1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel b/third_party/rust/cargo/remote/BUILD.quote-1.0.23.bazel
similarity index 78%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel
copy to third_party/rust/cargo/remote/BUILD.quote-1.0.23.bazel
index 4cf3ce9..7d09af8 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-hack-0.5.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.quote-1.0.23.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,11 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_hack_build_script",
+    name = "quote_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
     crate_features = [
+        "default",
+        "proc-macro",
     ],
     crate_root = "build.rs",
     data = glob(["**"]),
@@ -53,19 +56,20 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.5.19",
+    version = "1.0.23",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_hack",
+    name = "quote",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "default",
+        "proc-macro",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -73,13 +77,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=quote",
         "manual",
     ],
-    version = "0.5.19",
+    version = "1.0.23",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_hack_build_script",
+        ":quote_build_script",
+        "@raze__proc_macro2__1_0_49//: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.quote-1.0.9.bazel b/third_party/rust/cargo/remote/BUILD.quote-1.0.9.bazel
deleted file mode 100644
index e023d51..0000000
--- a/third_party/rust/cargo/remote/BUILD.quote-1.0.9.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.9",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__proc_macro2__1_0_27//: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.7.3.bazel b/third_party/rust/cargo/remote/BUILD.rand-0.7.3.bazel
deleted file mode 100644
index 7290f43..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand-0.7.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "generators" with type "bench" omitted
-
-# Unsupported target "misc" with type "bench" omitted
-
-# Unsupported target "seq" with type "bench" omitted
-
-# Unsupported target "weighted" with type "bench" omitted
-
-# Unsupported target "monte-carlo" with type "example" omitted
-
-# Unsupported target "monty-hall" with type "example" omitted
-
-rust_library(
-    name = "rand",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-        "@raze__getrandom__0_1_16//:getrandom": "getrandom_package",
-    },
-    crate_features = [
-        "alloc",
-        "default",
-        "getrandom",
-        "getrandom_package",
-        "libc",
-        "rand_pcg",
-        "small_rng",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.7.3",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__getrandom__0_1_16//:getrandom",
-        "@raze__rand_chacha__0_2_2//:rand_chacha",
-        "@raze__rand_core__0_5_1//:rand_core",
-        "@raze__rand_pcg__0_2_1//:rand_pcg",
-    ] + selects.with_or({
-        # cfg(unix)
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__libc__0_2_97//:libc",
-        ],
-        "//conditions:default": [],
-    }),
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rand-0.8.4.bazel b/third_party/rust/cargo/remote/BUILD.rand-0.8.5.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.rand-0.8.4.bazel
rename to third_party/rust/cargo/remote/BUILD.rand-0.8.5.bazel
index bc8c1f3..a7b3b08 100644
--- a/third_party/rust/cargo/remote/BUILD.rand-0.8.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.rand-0.8.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,12 +42,11 @@
         "getrandom",
         "libc",
         "rand_chacha",
-        "rand_hc",
+        "small_rng",
         "std",
         "std_rng",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -54,19 +54,19 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=rand",
         "manual",
     ],
-    version = "0.8.4",
+    version = "0.8.5",
     # buildifier: leave-alone
     deps = [
         "@raze__rand_chacha__0_3_1//:rand_chacha",
-        "@raze__rand_core__0_6_3//:rand_core",
+        "@raze__rand_core__0_6_4//:rand_core",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.rand_chacha-0.2.2.bazel b/third_party/rust/cargo/remote/BUILD.rand_chacha-0.2.2.bazel
deleted file mode 100644
index 31182a9..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_chacha-0.2.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__ppv_lite86__0_2_10//:ppv_lite86",
-        "@raze__rand_core__0_5_1//:rand_core",
-    ],
-)
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
index 5b58889..bd957c1 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,7 +38,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -45,12 +45,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=rand_chacha",
         "manual",
     ],
     version = "0.3.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__ppv_lite86__0_2_10//:ppv_lite86",
-        "@raze__rand_core__0_6_3//:rand_core",
+        "@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.5.1.bazel b/third_party/rust/cargo/remote/BUILD.rand_core-0.5.1.bazel
deleted file mode 100644
index 7a27cd8..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_core-0.5.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.5.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__getrandom__0_1_16//:getrandom",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rand_core-0.6.3.bazel b/third_party/rust/cargo/remote/BUILD.rand_core-0.6.4.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.rand_core-0.6.3.bazel
rename to third_party/rust/cargo/remote/BUILD.rand_core-0.6.4.bazel
index c63557a..f9f8ffc 100644
--- a/third_party/rust/cargo/remote/BUILD.rand_core-0.6.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.rand_core-0.6.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -39,7 +40,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -47,11 +47,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=rand_core",
         "manual",
     ],
-    version = "0.6.3",
+    version = "0.6.4",
     # buildifier: leave-alone
     deps = [
-        "@raze__getrandom__0_2_3//:getrandom",
+        "@raze__getrandom__0_2_8//:getrandom",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.rand_hc-0.2.0.bazel b/third_party/rust/cargo/remote/BUILD.rand_hc-0.2.0.bazel
deleted file mode 100644
index 00396bc..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_hc-0.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_hc",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__rand_core__0_5_1//:rand_core",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rand_hc-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.rand_hc-0.3.1.bazel
deleted file mode 100644
index aeff7f0..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_hc-0.3.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_hc",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__rand_core__0_6_3//:rand_core",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.rand_pcg-0.2.1.bazel b/third_party/rust/cargo/remote/BUILD.rand_pcg-0.2.1.bazel
deleted file mode 100644
index e436d5a..0000000
--- a/third_party/rust/cargo/remote/BUILD.rand_pcg-0.2.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_pcg",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__rand_core__0_5_1//:rand_core",
-    ],
-)
-
-# Unsupported target "lcg128xsl64" with type "test" omitted
-
-# Unsupported target "lcg64xsh32" with type "test" omitted
-
-# Unsupported target "mcg128xsl64" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.redox_syscall-0.2.9.bazel b/third_party/rust/cargo/remote/BUILD.redox_syscall-0.2.16.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.redox_syscall-0.2.9.bazel
rename to third_party/rust/cargo/remote/BUILD.redox_syscall-0.2.16.bazel
index 62520fa..50db052 100644
--- a/third_party/rust/cargo/remote/BUILD.redox_syscall-0.2.9.bazel
+++ b/third_party/rust/cargo/remote/BUILD.redox_syscall-0.2.16.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -42,10 +43,7 @@
 rust_library(
     name = "syscall",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -53,11 +51,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=syscall",
         "manual",
     ],
-    version = "0.2.9",
+    version = "0.2.16",
     # buildifier: leave-alone
     deps = [
-        "@raze__bitflags__1_2_1//:bitflags",
+        "@raze__bitflags__1_3_2//:bitflags",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.regex-1.5.4.bazel b/third_party/rust/cargo/remote/BUILD.regex-1.7.1.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.regex-1.5.4.bazel
rename to third_party/rust/cargo/remote/BUILD.regex-1.7.1.bazel
index 6cd11a5..78008a6 100644
--- a/third_party/rust/cargo/remote/BUILD.regex-1.5.4.bazel
+++ b/third_party/rust/cargo/remote/BUILD.regex-1.7.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -65,7 +66,6 @@
         "unicode-segment",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -73,14 +73,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=regex",
         "manual",
     ],
-    version = "1.5.4",
+    version = "1.7.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__aho_corasick__0_7_18//:aho_corasick",
-        "@raze__memchr__2_4_0//:memchr",
-        "@raze__regex_syntax__0_6_25//:regex_syntax",
+        "@raze__aho_corasick__0_7_20//:aho_corasick",
+        "@raze__memchr__2_5_0//:memchr",
+        "@raze__regex_syntax__0_6_28//:regex_syntax",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.termcolor-1.1.2.bazel b/third_party/rust/cargo/remote/BUILD.regex-automata-0.1.10.bazel
similarity index 79%
copy from third_party/rust/cargo/remote/BUILD.termcolor-1.1.2.bazel
copy to third_party/rust/cargo/remote/BUILD.regex-automata-0.1.10.bazel
index a7f195a..3d96526 100644
--- a/third_party/rust/cargo/remote/BUILD.termcolor-1.1.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.regex-automata-0.1.10.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,23 +32,23 @@
 # Generated Targets
 
 rust_library(
-    name = "termcolor",
+    name = "regex_automata",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2018",
+    edition = "2015",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=regex-automata",
         "manual",
     ],
-    version = "1.1.2",
+    version = "0.1.10",
     # buildifier: leave-alone
     deps = [
     ],
 )
+
+# Unsupported target "default" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.regex-syntax-0.6.25.bazel b/third_party/rust/cargo/remote/BUILD.regex-syntax-0.6.28.bazel
similarity index 91%
rename from third_party/rust/cargo/remote/BUILD.regex-syntax-0.6.25.bazel
rename to third_party/rust/cargo/remote/BUILD.regex-syntax-0.6.28.bazel
index 2362111..256b141 100644
--- a/third_party/rust/cargo/remote/BUILD.regex-syntax-0.6.25.bazel
+++ b/third_party/rust/cargo/remote/BUILD.regex-syntax-0.6.28.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -47,7 +48,6 @@
         "unicode-segment",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -55,9 +55,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=regex-syntax",
         "manual",
     ],
-    version = "0.6.25",
+    version = "0.6.28",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel b/third_party/rust/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel
index 03ef37b..526b767 100644
--- a/third_party/rust/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.remove_dir_all-0.5.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "remove_dir_all",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=remove_dir_all",
         "manual",
     ],
     version = "0.5.3",
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.rustls-pemfile-0.2.1.bazel
similarity index 68%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.rustls-pemfile-0.2.1.bazel
index f09bed8..a7bc5e9 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.rustls-pemfile-0.2.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,20 +26,17 @@
 ])
 
 licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
+    "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 = "siphasher",
+    name = "rustls_pemfile",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +44,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=rustls-pemfile",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.2.1",
     # buildifier: leave-alone
     deps = [
+        "@raze__base64__0_13_1//:base64",
     ],
 )
+
+# Unsupported target "integration" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.ryu-1.0.5.bazel b/third_party/rust/cargo/remote/BUILD.ryu-1.0.12.bazel
similarity index 67%
rename from third_party/rust/cargo/remote/BUILD.ryu-1.0.5.bazel
rename to third_party/rust/cargo/remote/BUILD.ryu-1.0.12.bazel
index bf04f92..8e0b61b 100644
--- a/third_party/rust/cargo/remote/BUILD.ryu-1.0.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.ryu-1.0.12.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -29,35 +30,6 @@
 ])
 
 # 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 = "ryu_build_script",
-    srcs = glob(["**/*.rs"]),
-    build_script_env = {
-    },
-    crate_features = [
-    ],
-    crate_root = "build.rs",
-    data = glob(["**"]),
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.5",
-    visibility = ["//visibility:private"],
-    deps = [
-    ],
-)
 
 # Unsupported target "bench" with type "bench" omitted
 
@@ -66,10 +38,7 @@
 rust_library(
     name = "ryu",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,12 +46,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=ryu",
         "manual",
     ],
-    version = "1.0.5",
+    version = "1.0.12",
     # buildifier: leave-alone
     deps = [
-        ":ryu_build_script",
     ],
 )
 
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
index 63fd0cb..06c3e7d 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,10 +38,7 @@
 rust_library(
     name = "same_file",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -48,6 +46,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=same-file",
         "manual",
     ],
     version = "1.0.6",
diff --git a/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.0.bazel b/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.1.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.0.bazel
rename to third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.1.bazel
index f510215..2f2fa9f 100644
--- a/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.scoped-tls-1.0.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "scoped_tls",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=scoped-tls",
         "manual",
     ],
-    version = "1.0.0",
+    version = "1.0.1",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel b/third_party/rust/cargo/remote/BUILD.scopeguard-1.1.0.bazel
similarity index 81%
copy from third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
copy to third_party/rust/cargo/remote/BUILD.scopeguard-1.1.0.bazel
index 7a47c54..5788d96 100644
--- a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.scopeguard-1.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,12 @@
 
 # Generated Targets
 
+# Unsupported target "readme" with type "example" omitted
+
 rust_library(
-    name = "either",
+    name = "scopeguard",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "use_std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,9 +44,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=scopeguard",
         "manual",
     ],
-    version = "1.6.1",
+    version = "1.1.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.scratch-1.0.3.bazel
similarity index 82%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.scratch-1.0.3.bazel
index ef68494..e40b4f5 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.scratch-1.0.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,12 +38,10 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "scratch_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -53,19 +52,16 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "1.0.3",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "scratch",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -73,11 +69,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=scratch",
         "manual",
     ],
-    version = "0.1.7",
+    version = "1.0.3",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":scratch_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.serde-1.0.126.bazel b/third_party/rust/cargo/remote/BUILD.serde-1.0.152.bazel
similarity index 83%
rename from third_party/rust/cargo/remote/BUILD.serde-1.0.126.bazel
rename to third_party/rust/cargo/remote/BUILD.serde-1.0.152.bazel
index 0cbd727..7253e0c 100644
--- a/third_party/rust/cargo/remote/BUILD.serde-1.0.126.bazel
+++ b/third_party/rust/cargo/remote/BUILD.serde-1.0.152.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -43,6 +44,8 @@
     },
     crate_features = [
         "default",
+        "derive",
+        "serde_derive",
         "std",
     ],
     crate_root = "build.rs",
@@ -55,7 +58,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.126",
+    version = "1.0.152",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -66,20 +69,25 @@
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
+        "derive",
+        "serde_derive",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
+    proc_macro_deps = [
+        "@raze__serde_derive__1_0_152//:serde_derive",
+    ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=serde",
         "manual",
     ],
-    version = "1.0.126",
+    version = "1.0.152",
     # buildifier: leave-alone
     deps = [
         ":serde_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.126.bazel b/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.152.bazel
similarity index 84%
rename from third_party/rust/cargo/remote/BUILD.serde_derive-1.0.126.bazel
rename to third_party/rust/cargo/remote/BUILD.serde_derive-1.0.152.bazel
index da93d69..95c3b23 100644
--- a/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.126.bazel
+++ b/third_party/rust/cargo/remote/BUILD.serde_derive-1.0.152.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -54,20 +55,19 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.126",
+    version = "1.0.152",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
-rust_library(
+rust_proc_macro(
     name = "serde_derive",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -75,14 +75,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=serde_derive",
         "manual",
     ],
-    version = "1.0.126",
+    version = "1.0.152",
     # buildifier: leave-alone
     deps = [
         ":serde_derive_build_script",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.serde_json-1.0.64.bazel b/third_party/rust/cargo/remote/BUILD.serde_json-1.0.91.bazel
similarity index 71%
rename from third_party/rust/cargo/remote/BUILD.serde_json-1.0.64.bazel
rename to third_party/rust/cargo/remote/BUILD.serde_json-1.0.91.bazel
index 62dc6b5..1e1450f 100644
--- a/third_party/rust/cargo/remote/BUILD.serde_json-1.0.64.bazel
+++ b/third_party/rust/cargo/remote/BUILD.serde_json-1.0.91.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -55,7 +56,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.64",
+    version = "1.0.91",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -69,7 +70,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,14 +77,29 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=serde_json",
         "manual",
     ],
-    version = "1.0.64",
+    version = "1.0.91",
     # buildifier: leave-alone
     deps = [
         ":serde_json_build_script",
-        "@raze__itoa__0_4_7//:itoa",
-        "@raze__ryu__1_0_5//:ryu",
-        "@raze__serde__1_0_126//:serde",
+        "@raze__itoa__1_0_5//:itoa",
+        "@raze__ryu__1_0_12//:ryu",
+        "@raze__serde__1_0_152//: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.6.1.bazel b/third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.7.1.bazel
similarity index 76%
rename from third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.6.1.bazel
rename to third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.7.1.bazel
index 25d4ce1..eabe3cb 100644
--- a/third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.serde_urlencoded-0.7.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,26 +34,24 @@
 rust_library(
     name = "serde_urlencoded",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=serde_urlencoded",
         "manual",
     ],
-    version = "0.6.1",
+    version = "0.7.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__dtoa__0_4_8//:dtoa",
-        "@raze__itoa__0_4_7//:itoa",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__url__2_2_2//:url",
+        "@raze__form_urlencoded__1_1_0//:form_urlencoded",
+        "@raze__itoa__1_0_5//:itoa",
+        "@raze__ryu__1_0_12//:ryu",
+        "@raze__serde__1_0_152//:serde",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.sha-1-0.10.1.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel
copy to third_party/rust/cargo/remote/BUILD.sha-1-0.10.1.bazel
index bcf7467..924e64f 100644
--- a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.sha-1-0.10.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -32,16 +33,25 @@
 
 # Unsupported target "mod" with type "bench" omitted
 
+alias(
+    name = "sha_1",
+    actual = ":sha1",
+    tags = [
+        "cargo-raze",
+        "manual",
+    ],
+)
+
 rust_library(
-    name = "getrandom",
+    name = "sha1",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
     crate_features = [
+        "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -49,25 +59,22 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=sha1",
         "manual",
     ],
-    version = "0.2.3",
+    version = "0.10.1",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__1_0_0//:cfg_if",
+        "@raze__digest__0_10_6//:digest",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__cpufeatures__0_2_5//:cpufeatures",
         ],
         "//conditions:default": [],
     }),
 )
 
-# Unsupported target "custom" with type "test" omitted
-
-# Unsupported target "normal" with type "test" omitted
-
-# Unsupported target "rdrand" with type "test" omitted
+# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.sha-1-0.8.2.bazel b/third_party/rust/cargo/remote/BUILD.sha-1-0.8.2.bazel
deleted file mode 100644
index a15caa9..0000000
--- a/third_party/rust/cargo/remote/BUILD.sha-1-0.8.2.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "lib" with type "bench" omitted
-
-# Unsupported target "sha1sum" with type "example" omitted
-
-alias(
-    name = "sha_1",
-    actual = ":sha1",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-rust_library(
-    name = "sha1",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.8.2",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__block_buffer__0_7_3//:block_buffer",
-        "@raze__digest__0_8_1//:digest",
-        "@raze__fake_simd__0_1_2//:fake_simd",
-        "@raze__opaque_debug__0_2_3//:opaque_debug",
-    ],
-)
-
-# Unsupported target "lib" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.sha-1-0.9.6.bazel b/third_party/rust/cargo/remote/BUILD.sha-1-0.9.6.bazel
deleted file mode 100644
index e46daf7..0000000
--- a/third_party/rust/cargo/remote/BUILD.sha-1-0.9.6.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "lib" with type "bench" omitted
-
-# Unsupported target "sha1sum" with type "example" omitted
-
-alias(
-    name = "sha_1",
-    actual = ":sha1",
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-)
-
-rust_library(
-    name = "sha1",
-    srcs = glob(["**/*.rs"]),
-    aliases = {
-    },
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.9.6",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__block_buffer__0_9_0//:block_buffer",
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__digest__0_9_0//:digest",
-        "@raze__opaque_debug__0_3_0//:opaque_debug",
-    ] + selects.with_or({
-        # cfg(any(target_arch = "x86", target_arch = "x86_64"))
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-            "@raze__cpufeatures__0_1_5//:cpufeatures",
-        ],
-        "//conditions:default": [],
-    }),
-)
-
-# Unsupported target "lib" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.sha1-0.10.5.bazel
similarity index 78%
copy from third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel
copy to third_party/rust/cargo/remote/BUILD.sha1-0.10.5.bazel
index bcf7467..07d4c37 100644
--- a/third_party/rust/cargo/remote/BUILD.getrandom-0.2.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.sha1-0.10.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,15 +34,15 @@
 # Unsupported target "mod" with type "bench" omitted
 
 rust_library(
-    name = "getrandom",
+    name = "sha1",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
     crate_features = [
+        "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -49,25 +50,22 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=sha1",
         "manual",
     ],
-    version = "0.2.3",
+    version = "0.10.5",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__1_0_0//:cfg_if",
+        "@raze__digest__0_10_6//:digest",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__cpufeatures__0_2_5//:cpufeatures",
         ],
         "//conditions:default": [],
     }),
 )
 
-# Unsupported target "custom" with type "test" omitted
-
-# Unsupported target "normal" with type "test" omitted
-
-# Unsupported target "rdrand" with type "test" omitted
+# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel b/third_party/rust/cargo/remote/BUILD.sha2-0.10.6.bazel
similarity index 77%
copy from third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
copy to third_party/rust/cargo/remote/BUILD.sha2-0.10.6.bazel
index 12de45b..a0702b4 100644
--- a/third_party/rust/cargo/remote/BUILD.filetime-0.2.14.bazel
+++ b/third_party/rust/cargo/remote/BUILD.sha2-0.10.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,14 @@
 
 # Generated Targets
 
+# Unsupported target "mod" with type "bench" omitted
+
 rust_library(
-    name = "filetime",
+    name = "sha2",
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,19 +46,22 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=sha2",
         "manual",
     ],
-    version = "0.2.14",
+    version = "0.10.6",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__1_0_0//:cfg_if",
+        "@raze__digest__0_10_6//:digest",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__cpufeatures__0_2_5//:cpufeatures",
         ],
         "//conditions:default": [],
     }),
 )
+
+# Unsupported target "mod" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.shlex-1.0.0.bazel b/third_party/rust/cargo/remote/BUILD.shlex-1.0.0.bazel
deleted file mode 100644
index 329566f..0000000
--- a/third_party/rust/cargo/remote/BUILD.shlex-1.0.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.0.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel b/third_party/rust/cargo/remote/BUILD.shlex-1.1.0.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
rename to third_party/rust/cargo/remote/BUILD.shlex-1.1.0.bazel
index 7a47c54..be53174 100644
--- a/third_party/rust/cargo/remote/BUILD.either-1.6.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.shlex-1.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,14 +32,13 @@
 # Generated Targets
 
 rust_library(
-    name = "either",
+    name = "shlex",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
-        "use_std",
+        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,9 +46,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=shlex",
         "manual",
     ],
-    version = "1.6.1",
+    version = "1.1.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.siphasher-0.3.10.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
rename to third_party/rust/cargo/remote/BUILD.siphasher-0.3.10.bazel
index f09bed8..0183013 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.siphasher-0.3.10.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -38,7 +39,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,9 +46,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=siphasher",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.3.10",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.slab-0.4.3.bazel b/third_party/rust/cargo/remote/BUILD.slab-0.4.3.bazel
deleted file mode 100644
index 928368b..0000000
--- a/third_party/rust/cargo/remote/BUILD.slab-0.4.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "slab",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.4.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
-
-# Unsupported target "serde" with type "test" omitted
-
-# Unsupported target "slab" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.memchr-2.4.0.bazel b/third_party/rust/cargo/remote/BUILD.slab-0.4.7.bazel
similarity index 78%
copy from third_party/rust/cargo/remote/BUILD.memchr-2.4.0.bazel
copy to third_party/rust/cargo/remote/BUILD.slab-0.4.7.bazel
index be54de0..61198b1 100644
--- a/third_party/rust/cargo/remote/BUILD.memchr-2.4.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.slab-0.4.7.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,7 +26,7 @@
 ])
 
 licenses([
-    "unencumbered",  # Unlicense from expression "Unlicense OR MIT"
+    "notice",  # MIT from expression "MIT"
 ])
 
 # Generated Targets
@@ -37,7 +38,7 @@
 )
 
 cargo_build_script(
-    name = "memchr_build_script",
+    name = "slab_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
@@ -55,21 +56,21 @@
         "cargo-raze",
         "manual",
     ],
-    version = "2.4.0",
+    version = "0.4.7",
     visibility = ["//visibility:private"],
     deps = [
+        "@raze__autocfg__1_1_0//:autocfg",
     ],
 )
 
 rust_library(
-    name = "memchr",
+    name = "slab",
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,11 +78,16 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=slab",
         "manual",
     ],
-    version = "2.4.0",
+    version = "0.4.7",
     # buildifier: leave-alone
     deps = [
-        ":memchr_build_script",
+        ":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.ucd-trie-0.1.3.bazel b/third_party/rust/cargo/remote/BUILD.smallvec-1.10.0.bazel
similarity index 78%
copy from third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.3.bazel
copy to third_party/rust/cargo/remote/BUILD.smallvec-1.10.0.bazel
index a0c89fd..03db759 100644
--- a/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.smallvec-1.10.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,14 +34,9 @@
 # Unsupported target "bench" with type "bench" omitted
 
 rust_library(
-    name = "ucd_trie",
+    name = "smallvec",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -48,10 +44,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=smallvec",
         "manual",
     ],
-    version = "0.1.3",
+    version = "1.10.0",
     # 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.3.19.bazel b/third_party/rust/cargo/remote/BUILD.socket2-0.4.7.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.socket2-0.3.19.bazel
rename to third_party/rust/cargo/remote/BUILD.socket2-0.4.7.bazel
index e627c5f..13103af 100644
--- a/third_party/rust/cargo/remote/BUILD.socket2-0.3.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.socket2-0.4.7.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -36,9 +37,9 @@
     aliases = {
     },
     crate_features = [
+        "all",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,18 +47,17 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=socket2",
         "manual",
     ],
-    version = "0.3.19",
+    version = "0.4.7",
     # buildifier: leave-alone
     deps = [
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__cfg_if__1_0_0//:cfg_if",
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.string_cache-0.8.1.bazel b/third_party/rust/cargo/remote/BUILD.string_cache-0.8.4.bazel
similarity index 80%
rename from third_party/rust/cargo/remote/BUILD.string_cache-0.8.1.bazel
rename to third_party/rust/cargo/remote/BUILD.string_cache-0.8.4.bazel
index 8355a9a..7f2a594 100644
--- a/third_party/rust/cargo/remote/BUILD.string_cache-0.8.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.string_cache-0.8.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,7 +42,6 @@
         "serde_support",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -49,16 +49,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=string_cache",
         "manual",
     ],
-    version = "0.8.1",
+    version = "0.8.4",
     # buildifier: leave-alone
     deps = [
-        "@raze__lazy_static__1_4_0//:lazy_static",
         "@raze__new_debug_unreachable__1_0_4//:new_debug_unreachable",
-        "@raze__phf_shared__0_8_0//:phf_shared",
+        "@raze__once_cell__1_17_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_126//:serde",
+        "@raze__serde__1_0_152//:serde",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel b/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.2.bazel
similarity index 74%
rename from third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel
rename to third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.2.bazel
index 699007b..e906344 100644
--- a/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.string_cache_codegen-0.5.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "string_cache_codegen",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,14 +42,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=string_cache_codegen",
         "manual",
     ],
-    version = "0.5.1",
+    version = "0.5.2",
     # buildifier: leave-alone
     deps = [
-        "@raze__phf_generator__0_8_0//:phf_generator",
-        "@raze__phf_shared__0_8_0//:phf_shared",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
+        "@raze__phf_generator__0_10_0//:phf_generator",
+        "@raze__phf_shared__0_10_0//:phf_shared",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.strsim-0.8.0.bazel b/third_party/rust/cargo/remote/BUILD.strsim-0.10.0.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.strsim-0.8.0.bazel
rename to third_party/rust/cargo/remote/BUILD.strsim-0.10.0.bazel
index dcd7cff..60749c8 100644
--- a/third_party/rust/cargo/remote/BUILD.strsim-0.8.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.strsim-0.10.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
 rust_library(
     name = "strsim",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,9 +44,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=strsim",
         "manual",
     ],
-    version = "0.8.0",
+    version = "0.10.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.strum-0.21.0.bazel b/third_party/rust/cargo/remote/BUILD.strum-0.21.0.bazel
deleted file mode 100644
index 943d62b..0000000
--- a/third_party/rust/cargo/remote/BUILD.strum-0.21.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "strum",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.21.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.strum_macros-0.21.1.bazel b/third_party/rust/cargo/remote/BUILD.strum_macros-0.21.1.bazel
deleted file mode 100644
index 773cc49..0000000
--- a/third_party/rust/cargo/remote/BUILD.strum_macros-0.21.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "strum_macros",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.21.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__heck__0_3_3//:heck",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.syn-1.0.73.bazel b/third_party/rust/cargo/remote/BUILD.syn-1.0.107.bazel
similarity index 90%
rename from third_party/rust/cargo/remote/BUILD.syn-1.0.73.bazel
rename to third_party/rust/cargo/remote/BUILD.syn-1.0.107.bazel
index a75500c..7e379f7 100644
--- a/third_party/rust/cargo/remote/BUILD.syn-1.0.73.bazel
+++ b/third_party/rust/cargo/remote/BUILD.syn-1.0.107.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -52,6 +53,7 @@
         "printing",
         "proc-macro",
         "quote",
+        "visit",
         "visit-mut",
     ],
     crate_root = "build.rs",
@@ -64,7 +66,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.73",
+    version = "1.0.107",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -88,10 +90,10 @@
         "printing",
         "proc-macro",
         "quote",
+        "visit",
         "visit-mut",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -99,18 +101,21 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=syn",
         "manual",
     ],
-    version = "1.0.73",
+    version = "1.0.107",
     # buildifier: leave-alone
     deps = [
         ":syn_build_script",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__unicode_xid__0_2_2//:unicode_xid",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__unicode_ident__1_0_6//: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
diff --git a/third_party/rust/cargo/remote/BUILD.tempfile-3.2.0.bazel b/third_party/rust/cargo/remote/BUILD.tempfile-3.3.0.bazel
similarity index 87%
rename from third_party/rust/cargo/remote/BUILD.tempfile-3.2.0.bazel
rename to third_party/rust/cargo/remote/BUILD.tempfile-3.3.0.bazel
index 92873b6..4c4bbfb 100644
--- a/third_party/rust/cargo/remote/BUILD.tempfile-3.2.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tempfile-3.3.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
     srcs = glob(["**/*.rs"]),
     aliases = {
     },
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,20 +44,20 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tempfile",
         "manual",
     ],
-    version = "3.2.0",
+    version = "3.3.0",
     # buildifier: leave-alone
     deps = [
         "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__rand__0_8_4//:rand",
+        "@raze__fastrand__1_8_0//:fastrand",
         "@raze__remove_dir_all__0_5_3//:remove_dir_all",
     ] + selects.with_or({
-        # cfg(unix)
         (
             "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
         ): [
-            "@raze__libc__0_2_97//:libc",
+            "@raze__libc__0_2_139//:libc",
         ],
         "//conditions:default": [],
     }),
diff --git a/third_party/rust/cargo/remote/BUILD.tendril-0.4.2.bazel b/third_party/rust/cargo/remote/BUILD.tendril-0.4.3.bazel
similarity index 87%
rename from third_party/rust/cargo/remote/BUILD.tendril-0.4.2.bazel
rename to third_party/rust/cargo/remote/BUILD.tendril-0.4.3.bazel
index c26b4c0..16bcb67 100644
--- a/third_party/rust/cargo/remote/BUILD.tendril-0.4.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tendril-0.4.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
 rust_library(
     name = "tendril",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -46,12 +44,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tendril",
         "manual",
     ],
-    version = "0.4.2",
+    version = "0.4.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__futf__0_1_4//:futf",
+        "@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.1.2.bazel b/third_party/rust/cargo/remote/BUILD.termcolor-1.1.3.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.termcolor-1.1.2.bazel
rename to third_party/rust/cargo/remote/BUILD.termcolor-1.1.3.bazel
index a7f195a..70bc12d 100644
--- a/third_party/rust/cargo/remote/BUILD.termcolor-1.1.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.termcolor-1.1.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "termcolor",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=termcolor",
         "manual",
     ],
-    version = "1.1.2",
+    version = "1.1.3",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.textwrap-0.11.0.bazel b/third_party/rust/cargo/remote/BUILD.textwrap-0.16.0.bazel
similarity index 76%
rename from third_party/rust/cargo/remote/BUILD.textwrap-0.11.0.bazel
rename to third_party/rust/cargo/remote/BUILD.textwrap-0.16.0.bazel
index ee6aa2b..7037c0e 100644
--- a/third_party/rust/cargo/remote/BUILD.textwrap-0.11.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.textwrap-0.16.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,33 +31,30 @@
 
 # Generated Targets
 
-# Unsupported target "linear" with type "bench" omitted
-
-# Unsupported target "layout" with type "example" omitted
+# Unsupported target "hyphenation" with type "example" omitted
 
 # Unsupported target "termwidth" with type "example" omitted
 
 rust_library(
     name = "textwrap",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2021",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=textwrap",
         "manual",
     ],
-    version = "0.11.0",
+    version = "0.16.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__unicode_width__0_1_8//:unicode_width",
     ],
 )
 
+# Unsupported target "indent" with type "test" omitted
+
 # Unsupported target "version-numbers" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.anyhow-1.0.41.bazel b/third_party/rust/cargo/remote/BUILD.thiserror-1.0.38.bazel
similarity index 63%
copy from third_party/rust/cargo/remote/BUILD.anyhow-1.0.41.bazel
copy to third_party/rust/cargo/remote/BUILD.thiserror-1.0.38.bazel
index 41be689..44ea638 100644
--- a/third_party/rust/cargo/remote/BUILD.anyhow-1.0.41.bazel
+++ b/third_party/rust/cargo/remote/BUILD.thiserror-1.0.38.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,14 +38,10 @@
 )
 
 cargo_build_script(
-    name = "anyhow_build_script",
+    name = "thiserror_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -55,59 +52,58 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.0.41",
+    version = "1.0.38",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "anyhow",
+    name = "thiserror",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
+    proc_macro_deps = [
+        "@raze__thiserror_impl__1_0_38//:thiserror_impl",
+    ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=thiserror",
         "manual",
     ],
-    version = "1.0.41",
+    version = "1.0.38",
     # buildifier: leave-alone
     deps = [
-        ":anyhow_build_script",
+        ":thiserror_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_deprecated" with type "test" omitted
 
-# Unsupported target "test_chain" with type "test" omitted
+# Unsupported target "test_display" with type "test" omitted
 
-# Unsupported target "test_context" with type "test" omitted
+# Unsupported target "test_error" with type "test" omitted
 
-# Unsupported target "test_convert" with type "test" omitted
+# Unsupported target "test_expr" with type "test" omitted
 
-# Unsupported target "test_downcast" with type "test" omitted
+# Unsupported target "test_from" with type "test" omitted
 
-# Unsupported target "test_ffi" with type "test" omitted
+# Unsupported target "test_generics" with type "test" omitted
 
-# Unsupported target "test_fmt" with type "test" omitted
+# Unsupported target "test_lints" with type "test" omitted
 
-# Unsupported target "test_macros" with type "test" omitted
+# Unsupported target "test_option" with type "test" omitted
 
-# Unsupported target "test_repr" 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.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.thiserror-impl-1.0.38.bazel
similarity index 75%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.thiserror-impl-1.0.38.bazel
index f09bed8..1fc1db2 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.thiserror-impl-1.0.38.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,10 @@
 
 # Generated Targets
 
-rust_library(
-    name = "siphasher",
+rust_proc_macro(
+    name = "thiserror_impl",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=thiserror-impl",
         "manual",
     ],
-    version = "0.3.5",
+    version = "1.0.38",
     # buildifier: leave-alone
     deps = [
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.time-0.1.43.bazel b/third_party/rust/cargo/remote/BUILD.time-0.1.45.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.time-0.1.43.bazel
rename to third_party/rust/cargo/remote/BUILD.time-0.1.45.bazel
index 59e6f33..f842b14 100644
--- a/third_party/rust/cargo/remote/BUILD.time-0.1.43.bazel
+++ b/third_party/rust/cargo/remote/BUILD.time-0.1.45.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "time",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,11 +42,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=time",
         "manual",
     ],
-    version = "0.1.43",
+    version = "0.1.45",
     # buildifier: leave-alone
     deps = [
-        "@raze__libc__0_2_97//:libc",
+        "@raze__libc__0_2_139//:libc",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.tinyvec-1.2.0.bazel b/third_party/rust/cargo/remote/BUILD.tinyvec-1.6.0.bazel
similarity index 87%
rename from third_party/rust/cargo/remote/BUILD.tinyvec-1.2.0.bazel
rename to third_party/rust/cargo/remote/BUILD.tinyvec-1.6.0.bazel
index 31520c9..581c31f 100644
--- a/third_party/rust/cargo/remote/BUILD.tinyvec-1.2.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tinyvec-1.6.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -32,6 +33,8 @@
 
 # Unsupported target "macros" with type "bench" omitted
 
+# Unsupported target "smallvec" with type "bench" omitted
+
 rust_library(
     name = "tinyvec",
     srcs = glob(["**/*.rs"]),
@@ -41,7 +44,6 @@
         "tinyvec_macros",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -49,9 +51,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tinyvec",
         "manual",
     ],
-    version = "1.2.0",
+    version = "1.6.0",
     # buildifier: leave-alone
     deps = [
         "@raze__tinyvec_macros__0_1_0//:tinyvec_macros",
diff --git a/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.0.bazel b/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.0.bazel
index 0d294b0..011f11c 100644
--- a/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tinyvec_macros-0.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "tinyvec_macros",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tinyvec_macros",
         "manual",
     ],
     version = "0.1.0",
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-0.2.25.bazel b/third_party/rust/cargo/remote/BUILD.tokio-0.2.25.bazel
deleted file mode 100644
index 1d76ac8..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-0.2.25.bazel
+++ /dev/null
@@ -1,289 +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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = [
-        "blocking",
-        "default",
-        "fnv",
-        "fs",
-        "futures-core",
-        "io-driver",
-        "io-util",
-        "iovec",
-        "lazy_static",
-        "macros",
-        "memchr",
-        "mio",
-        "rt-core",
-        "slab",
-        "stream",
-        "sync",
-        "tcp",
-        "time",
-        "tokio-macros",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    proc_macro_deps = [
-        "@raze__tokio_macros__0_2_6//:tokio_macros",
-    ],
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.25",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__0_5_6//:bytes",
-        "@raze__fnv__1_0_7//:fnv",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__iovec__0_1_4//:iovec",
-        "@raze__lazy_static__1_4_0//:lazy_static",
-        "@raze__memchr__2_4_0//:memchr",
-        "@raze__mio__0_6_23//:mio",
-        "@raze__pin_project_lite__0_1_12//:pin_project_lite",
-        "@raze__slab__0_4_3//:slab",
-    ] + selects.with_or({
-        # cfg(unix)
-        (
-            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
-        ): [
-        ],
-        "//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 "fs" 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_file_mocked" with type "test" omitted
-
-# Unsupported target "fs_link" with type "test" omitted
-
-# Unsupported target "io_async_read" with type "test" omitted
-
-# Unsupported target "io_chain" with type "test" omitted
-
-# Unsupported target "io_copy" with type "test" omitted
-
-# Unsupported target "io_driver" with type "test" omitted
-
-# Unsupported target "io_driver_drop" with type "test" omitted
-
-# Unsupported target "io_lines" with type "test" omitted
-
-# Unsupported target "io_mem_stream" with type "test" omitted
-
-# Unsupported target "io_read" 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_reader_stream" with type "test" omitted
-
-# Unsupported target "io_split" with type "test" omitted
-
-# Unsupported target "io_take" 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_int" with type "test" omitted
-
-# Unsupported target "macros_join" with type "test" omitted
-
-# Unsupported target "macros_pin" 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 "no_rt" 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_smoke" with type "test" omitted
-
-# Unsupported target "rt_basic" with type "test" omitted
-
-# Unsupported target "rt_common" with type "test" omitted
-
-# Unsupported target "rt_threaded" 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_twice" with type "test" omitted
-
-# Unsupported target "signal_usr1" with type "test" omitted
-
-# Unsupported target "stream_chain" 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_pending" with type "test" omitted
-
-# Unsupported target "stream_reader" with type "test" omitted
-
-# Unsupported target "stream_stream_map" with type "test" omitted
-
-# Unsupported target "stream_timeout" with type "test" omitted
-
-# Unsupported target "sync_barrier" with type "test" omitted
-
-# Unsupported target "sync_broadcast" with type "test" omitted
-
-# Unsupported target "sync_cancellation_token" with type "test" omitted
-
-# Unsupported target "sync_errors" with type "test" omitted
-
-# Unsupported target "sync_mpsc" 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_oneshot" 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_blocking" with type "test" omitted
-
-# Unsupported target "task_local" with type "test" omitted
-
-# Unsupported target "task_local_set" 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_peek" with type "test" omitted
-
-# Unsupported target "tcp_shutdown" with type "test" omitted
-
-# Unsupported target "tcp_split" with type "test" omitted
-
-# Unsupported target "test_clock" with type "test" omitted
-
-# Unsupported target "time_delay" with type "test" omitted
-
-# Unsupported target "time_delay_queue" with type "test" omitted
-
-# Unsupported target "time_interval" with type "test" omitted
-
-# Unsupported target "time_rt" with type "test" omitted
-
-# Unsupported target "time_throttle" 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
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-1.24.1.bazel b/third_party/rust/cargo/remote/BUILD.tokio-1.24.1.bazel
new file mode 100644
index 0000000..af6646a
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.tokio-1.24.1.bazel
@@ -0,0 +1,389 @@
+"""
+@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 = "tokio_build_script",
+    srcs = glob(["**/*.rs"]),
+    build_script_env = {
+    },
+    crate_features = [
+        "bytes",
+        "default",
+        "fs",
+        "io-util",
+        "libc",
+        "macros",
+        "memchr",
+        "mio",
+        "net",
+        "num_cpus",
+        "rt",
+        "rt-multi-thread",
+        "socket2",
+        "sync",
+        "time",
+        "tokio-macros",
+        "windows-sys",
+    ],
+    crate_root = "build.rs",
+    data = glob(["**"]),
+    edition = "2018",
+    rustc_flags = [
+        "--cap-lints=allow",
+    ],
+    tags = [
+        "cargo-raze",
+        "manual",
+    ],
+    version = "1.24.1",
+    visibility = ["//visibility:private"],
+    deps = [
+        "@raze__autocfg__1_1_0//:autocfg",
+    ] + selects.with_or({
+        (
+            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
+        ): [
+        ],
+        "//conditions:default": [],
+    }) + selects.with_or({
+        (
+            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
+        ): [
+        ],
+        "//conditions:default": [],
+    }),
+)
+
+rust_library(
+    name = "tokio",
+    srcs = glob(["**/*.rs"]),
+    aliases = {
+    },
+    crate_features = [
+        "bytes",
+        "default",
+        "fs",
+        "io-util",
+        "libc",
+        "macros",
+        "memchr",
+        "mio",
+        "net",
+        "num_cpus",
+        "rt",
+        "rt-multi-thread",
+        "socket2",
+        "sync",
+        "time",
+        "tokio-macros",
+        "windows-sys",
+    ],
+    crate_root = "src/lib.rs",
+    data = [],
+    edition = "2018",
+    proc_macro_deps = [
+        "@raze__tokio_macros__1_8_2//:tokio_macros",
+    ],
+    rustc_flags = [
+        "--cap-lints=allow",
+    ],
+    tags = [
+        "cargo-raze",
+        "crate-name=tokio",
+        "manual",
+    ],
+    version = "1.24.1",
+    # buildifier: leave-alone
+    deps = [
+        ":tokio_build_script",
+        "@raze__bytes__1_3_0//:bytes",
+        "@raze__memchr__2_5_0//:memchr",
+        "@raze__mio__0_8_5//:mio",
+        "@raze__num_cpus__1_15_0//:num_cpus",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
+    ] + selects.with_or({
+        (
+            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
+        ): [
+            "@raze__socket2__0_4_7//:socket2",
+        ],
+        "//conditions:default": [],
+    }) + selects.with_or({
+        (
+            "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
+        ): [
+            "@raze__libc__0_2_139//: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 "fs" 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 "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 "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_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 "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 "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-0.2.6.bazel b/third_party/rust/cargo/remote/BUILD.tokio-macros-1.8.2.bazel
similarity index 77%
rename from third_party/rust/cargo/remote/BUILD.tokio-macros-0.2.6.bazel
rename to third_party/rust/cargo/remote/BUILD.tokio-macros-1.8.2.bazel
index 8ec1b1f..2bf49dd 100644
--- a/third_party/rust/cargo/remote/BUILD.tokio-macros-0.2.6.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tokio-macros-1.8.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,13 +31,10 @@
 
 # Generated Targets
 
-rust_library(
+rust_proc_macro(
     name = "tokio_macros",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,13 +42,14 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tokio-macros",
         "manual",
     ],
-    version = "0.2.6",
+    version = "1.8.2",
     # buildifier: leave-alone
     deps = [
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-stream-0.1.11.bazel b/third_party/rust/cargo/remote/BUILD.tokio-stream-0.1.11.bazel
new file mode 100644
index 0000000..6de6db1
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.tokio-stream-0.1.11.bazel
@@ -0,0 +1,89 @@
+"""
+@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 = "2018",
+    rustc_flags = [
+        "--cap-lints=allow",
+    ],
+    tags = [
+        "cargo-raze",
+        "crate-name=tokio-stream",
+        "manual",
+    ],
+    version = "0.1.11",
+    # buildifier: leave-alone
+    deps = [
+        "@raze__futures_core__0_3_25//:futures_core",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
+        "@raze__tokio__1_24_1//: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_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.11.0.bazel b/third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.17.2.bazel
similarity index 75%
rename from third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.11.0.bazel
rename to third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.17.2.bazel
index 0d8c0b9..385ac24 100644
--- a/third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.11.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tokio-tungstenite-0.17.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -46,9 +47,11 @@
     name = "tokio_tungstenite",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "connect",
+        "default",
+        "stream",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -56,19 +59,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tokio-tungstenite",
         "manual",
     ],
-    version = "0.11.0",
+    version = "0.17.2",
     # buildifier: leave-alone
     deps = [
-        "@raze__futures_util__0_3_15//:futures_util",
-        "@raze__log__0_4_14//:log",
-        "@raze__pin_project__0_4_28//:pin_project",
-        "@raze__tokio__0_2_25//:tokio",
-        "@raze__tungstenite__0_11_1//:tungstenite",
+        "@raze__futures_util__0_3_25//:futures_util",
+        "@raze__log__0_4_17//:log",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__tungstenite__0_17_3//:tungstenite",
     ],
 )
-
-# Unsupported target "communication" with type "test" omitted
-
-# Unsupported target "handshakes" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-util-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.tokio-util-0.3.1.bazel
deleted file mode 100644
index d1e227b..0000000
--- a/third_party/rust/cargo/remote/BUILD.tokio-util-0.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.3.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__bytes__0_5_6//:bytes",
-        "@raze__futures_core__0_3_15//:futures_core",
-        "@raze__futures_sink__0_3_15//:futures_sink",
-        "@raze__log__0_4_14//:log",
-        "@raze__pin_project_lite__0_1_12//:pin_project_lite",
-        "@raze__tokio__0_2_25//:tokio",
-    ],
-)
-
-# Unsupported target "codecs" with type "test" omitted
-
-# Unsupported target "framed" with type "test" omitted
-
-# Unsupported target "framed_read" with type "test" omitted
-
-# Unsupported target "framed_write" with type "test" omitted
-
-# Unsupported target "length_delimited" with type "test" omitted
-
-# Unsupported target "udp" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.tokio-util-0.7.4.bazel b/third_party/rust/cargo/remote/BUILD.tokio-util-0.7.4.bazel
new file mode 100644
index 0000000..819ad5b
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.tokio-util-0.7.4.bazel
@@ -0,0 +1,104 @@
+"""
+@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 = "2018",
+    rustc_flags = [
+        "--cap-lints=allow",
+    ],
+    tags = [
+        "cargo-raze",
+        "crate-name=tokio-util",
+        "manual",
+    ],
+    version = "0.7.4",
+    # buildifier: leave-alone
+    deps = [
+        "@raze__bytes__1_3_0//:bytes",
+        "@raze__futures_core__0_3_25//:futures_core",
+        "@raze__futures_sink__0_3_25//:futures_sink",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__tracing__0_1_37//:tracing",
+    ],
+)
+
+# Unsupported target "_require_full" with type "test" omitted
+
+# Unsupported target "codecs" 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_reader_stream" 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.8.bazel b/third_party/rust/cargo/remote/BUILD.toml-0.5.10.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
rename to third_party/rust/cargo/remote/BUILD.toml-0.5.10.bazel
index 2998d99..d5cd8f0 100644
--- a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.toml-0.5.10.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -43,7 +44,6 @@
         "default",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -51,12 +51,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=toml",
         "manual",
     ],
-    version = "0.5.8",
+    version = "0.5.10",
     # buildifier: leave-alone
     deps = [
-        "@raze__serde__1_0_126//:serde",
+        "@raze__serde__1_0_152//:serde",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.fake-simd-0.1.2.bazel b/third_party/rust/cargo/remote/BUILD.topological-sort-0.1.0.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.fake-simd-0.1.2.bazel
rename to third_party/rust/cargo/remote/BUILD.topological-sort-0.1.0.bazel
index 1c7a396..ea443fd 100644
--- a/third_party/rust/cargo/remote/BUILD.fake-simd-0.1.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.topological-sort-0.1.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,12 +32,9 @@
 # Generated Targets
 
 rust_library(
-    name = "fake_simd",
+    name = "topological_sort",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=topological-sort",
         "manual",
     ],
-    version = "0.1.2",
+    version = "0.1.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.tower-service-0.3.1.bazel b/third_party/rust/cargo/remote/BUILD.tower-service-0.3.2.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.tower-service-0.3.1.bazel
rename to third_party/rust/cargo/remote/BUILD.tower-service-0.3.2.bazel
index 56b6d78..a8881e1 100644
--- a/third_party/rust/cargo/remote/BUILD.tower-service-0.3.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tower-service-0.3.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "tower_service",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tower-service",
         "manual",
     ],
-    version = "0.3.1",
+    version = "0.3.2",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.tracing-0.1.26.bazel b/third_party/rust/cargo/remote/BUILD.tracing-0.1.26.bazel
deleted file mode 100644
index 0cf6759..0000000
--- a/third_party/rust/cargo/remote/BUILD.tracing-0.1.26.bazel
+++ /dev/null
@@ -1,85 +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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "no_subscriber" with type "bench" omitted
-
-# Unsupported target "subscriber" with type "bench" omitted
-
-rust_library(
-    name = "tracing",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "log",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.1.26",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__cfg_if__1_0_0//:cfg_if",
-        "@raze__log__0_4_14//:log",
-        "@raze__pin_project_lite__0_2_7//:pin_project_lite",
-        "@raze__tracing_core__0_1_18//:tracing_core",
-    ],
-)
-
-# 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 "macro_imports" with type "test" omitted
-
-# Unsupported target "macros" 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 "span" with type "test" omitted
-
-# Unsupported target "subscriber" with type "test" omitted
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
new file mode 100644
index 0000000..1833f51
--- /dev/null
+++ b/third_party/rust/cargo/remote/BUILD.tracing-0.1.37.bazel
@@ -0,0 +1,116 @@
+"""
+@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_17//:log",
+        "@raze__pin_project_lite__0_2_9//:pin_project_lite",
+        "@raze__tracing_core__0_1_30//: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.18.bazel b/third_party/rust/cargo/remote/BUILD.tracing-core-0.1.30.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.tracing-core-0.1.18.bazel
rename to third_party/rust/cargo/remote/BUILD.tracing-core-0.1.30.bazel
index c0470e3..4f08ee5 100644
--- a/third_party/rust/cargo/remote/BUILD.tracing-core-0.1.18.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tracing-core-0.1.30.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -34,11 +35,10 @@
     name = "tracing_core",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "lazy_static",
+        "once_cell",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,12 +46,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tracing-core",
         "manual",
     ],
-    version = "0.1.18",
+    version = "0.1.30",
     # buildifier: leave-alone
     deps = [
-        "@raze__lazy_static__1_4_0//:lazy_static",
+        "@raze__once_cell__1_17_0//:once_cell",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.tracing-futures-0.2.5.bazel b/third_party/rust/cargo/remote/BUILD.tracing-futures-0.2.5.bazel
deleted file mode 100644
index 7a5daaa..0000000
--- a/third_party/rust/cargo/remote/BUILD.tracing-futures-0.2.5.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_futures",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "pin-project",
-        "std-future",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.2.5",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__pin_project__1_0_7//:pin_project",
-        "@raze__tracing__0_1_26//:tracing",
-    ],
-)
-
-# Unsupported target "std_future" with type "test" omitted
-
-# Unsupported target "support" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.try-lock-0.2.3.bazel b/third_party/rust/cargo/remote/BUILD.try-lock-0.2.4.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.try-lock-0.2.3.bazel
rename to third_party/rust/cargo/remote/BUILD.try-lock-0.2.4.bazel
index f6a3385..987e1b1 100644
--- a/third_party/rust/cargo/remote/BUILD.try-lock-0.2.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.try-lock-0.2.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "try_lock",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=try-lock",
         "manual",
     ],
-    version = "0.2.3",
+    version = "0.2.4",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.tungstenite-0.11.1.bazel b/third_party/rust/cargo/remote/BUILD.tungstenite-0.11.1.bazel
deleted file mode 100644
index 5bfb2eb..0000000
--- a/third_party/rust/cargo/remote/BUILD.tungstenite-0.11.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "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
-
-rust_library(
-    name = "tungstenite",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.11.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__base64__0_12_3//:base64",
-        "@raze__byteorder__1_4_3//:byteorder",
-        "@raze__bytes__0_5_6//:bytes",
-        "@raze__http__0_2_4//:http",
-        "@raze__httparse__1_4_1//:httparse",
-        "@raze__input_buffer__0_3_1//:input_buffer",
-        "@raze__log__0_4_14//:log",
-        "@raze__rand__0_7_3//:rand",
-        "@raze__sha_1__0_9_6//:sha_1",
-        "@raze__url__2_2_2//:url",
-        "@raze__utf_8__0_7_6//:utf_8",
-    ],
-)
-
-# Unsupported target "connection_reset" with type "test" omitted
-
-# Unsupported target "no_send_after_close" with type "test" omitted
-
-# Unsupported target "receive_after_init_close" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.block-buffer-0.7.3.bazel b/third_party/rust/cargo/remote/BUILD.tungstenite-0.17.3.bazel
similarity index 60%
rename from third_party/rust/cargo/remote/BUILD.block-buffer-0.7.3.bazel
rename to third_party/rust/cargo/remote/BUILD.tungstenite-0.17.3.bazel
index 5ad66dc..538a81c 100644
--- a/third_party/rust/cargo/remote/BUILD.block-buffer-0.7.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.tungstenite-0.17.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,28 +31,35 @@
 
 # Generated Targets
 
+# Unsupported target "buffer" with type "bench" omitted
+
 rust_library(
-    name = "block_buffer",
+    name = "tungstenite",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=tungstenite",
         "manual",
     ],
-    version = "0.7.3",
+    version = "0.17.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__block_padding__0_1_5//:block_padding",
-        "@raze__byte_tools__0_3_1//:byte_tools",
+        "@raze__base64__0_13_1//:base64",
         "@raze__byteorder__1_4_3//:byteorder",
-        "@raze__generic_array__0_12_4//:generic_array",
+        "@raze__bytes__1_3_0//:bytes",
+        "@raze__http__0_2_8//:http",
+        "@raze__httparse__1_8_0//:httparse",
+        "@raze__log__0_4_17//:log",
+        "@raze__rand__0_8_5//:rand",
+        "@raze__sha_1__0_10_1//:sha_1",
+        "@raze__thiserror__1_0_38//:thiserror",
+        "@raze__url__2_3_1//:url",
+        "@raze__utf_8__0_7_6//:utf_8",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.typenum-1.13.0.bazel b/third_party/rust/cargo/remote/BUILD.typenum-1.16.0.bazel
similarity index 90%
rename from third_party/rust/cargo/remote/BUILD.typenum-1.13.0.bazel
rename to third_party/rust/cargo/remote/BUILD.typenum-1.16.0.bazel
index 5586376..1fa7c88 100644
--- a/third_party/rust/cargo/remote/BUILD.typenum-1.13.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.typenum-1.16.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build/main.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -53,7 +52,7 @@
         "cargo-raze",
         "manual",
     ],
-    version = "1.13.0",
+    version = "1.16.0",
     visibility = ["//visibility:private"],
     deps = [
     ],
@@ -62,10 +61,7 @@
 rust_library(
     name = "typenum",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -73,9 +69,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=typenum",
         "manual",
     ],
-    version = "1.13.0",
+    version = "1.16.0",
     # buildifier: leave-alone
     deps = [
         ":typenum_build_script",
diff --git a/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.3.bazel b/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.5.bazel
similarity index 89%
rename from third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.3.bazel
rename to third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.5.bazel
index a0c89fd..6090d1c 100644
--- a/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.ucd-trie-0.1.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -36,11 +37,9 @@
     name = "ucd_trie",
     srcs = glob(["**/*.rs"]),
     crate_features = [
-        "default",
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -48,9 +47,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=ucd-trie",
         "manual",
     ],
-    version = "0.1.3",
+    version = "0.1.5",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.unicase-2.6.0.bazel b/third_party/rust/cargo/remote/BUILD.unicase-2.6.0.bazel
index c536fa5..c496908 100644
--- a/third_party/rust/cargo/remote/BUILD.unicase-2.6.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.unicase-2.6.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -56,17 +55,14 @@
     version = "2.6.0",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__version_check__0_9_3//:version_check",
+        "@raze__version_check__0_9_4//:version_check",
     ],
 )
 
 rust_library(
     name = "unicase",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -74,6 +70,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=unicase",
         "manual",
     ],
     version = "2.6.0",
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.8.bazel
similarity index 85%
rename from third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.5.bazel
rename to third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.8.bazel
index 1020cdf..f743736 100644
--- a/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.unicode-bidi-0.3.8.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,9 +36,10 @@
     srcs = glob(["**/*.rs"]),
     crate_features = [
         "default",
+        "hardcoded-data",
+        "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -45,11 +47,11 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=unicode_bidi",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.3.8",
     # buildifier: leave-alone
     deps = [
-        "@raze__matches__0_1_8//:matches",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-xid-0.2.2.bazel b/third_party/rust/cargo/remote/BUILD.unicode-ident-1.0.6.bazel
similarity index 70%
rename from third_party/rust/cargo/remote/BUILD.unicode-xid-0.2.2.bazel
rename to third_party/rust/cargo/remote/BUILD.unicode-ident-1.0.6.bazel
index e96262e..b2b194d 100644
--- a/third_party/rust/cargo/remote/BUILD.unicode-xid-0.2.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.unicode-ident-1.0.6.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -25,7 +26,7 @@
 ])
 
 licenses([
-    "notice",  # MIT from expression "MIT OR Apache-2.0"
+    "notice",  # MIT from expression "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
 ])
 
 # Generated Targets
@@ -33,26 +34,25 @@
 # Unsupported target "xid" with type "bench" omitted
 
 rust_library(
-    name = "unicode_xid",
+    name = "unicode_ident",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=unicode-ident",
         "manual",
     ],
-    version = "0.2.2",
+    version = "1.0.6",
     # buildifier: leave-alone
     deps = [
     ],
 )
 
-# Unsupported target "exhaustive_tests" with type "test" omitted
+# 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.19.bazel b/third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.22.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.19.bazel
rename to third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.22.bazel
index 173abc8..6e14bbb 100644
--- a/third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.19.bazel
+++ b/third_party/rust/cargo/remote/BUILD.unicode-normalization-0.1.22.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -40,7 +41,6 @@
         "std",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -48,11 +48,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=unicode-normalization",
         "manual",
     ],
-    version = "0.1.19",
+    version = "0.1.22",
     # buildifier: leave-alone
     deps = [
-        "@raze__tinyvec__1_2_0//:tinyvec",
+        "@raze__tinyvec__1_6_0//:tinyvec",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-segmentation-1.8.0.bazel b/third_party/rust/cargo/remote/BUILD.unicode-segmentation-1.8.0.bazel
deleted file mode 100644
index c2f1deb..0000000
--- a/third_party/rust/cargo/remote/BUILD.unicode-segmentation-1.8.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "bench" omitted
-
-# Unsupported target "unicode_words" with type "bench" omitted
-
-# Unsupported target "word_bounds" with type "bench" omitted
-
-rust_library(
-    name = "unicode_segmentation",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.8.0",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.unicode-width-0.1.8.bazel b/third_party/rust/cargo/remote/BUILD.unicode-width-0.1.10.bazel
similarity index 87%
rename from third_party/rust/cargo/remote/BUILD.unicode-width-0.1.8.bazel
rename to third_party/rust/cargo/remote/BUILD.unicode-width-0.1.10.bazel
index 4badc52..7cf40b0 100644
--- a/third_party/rust/cargo/remote/BUILD.unicode-width-0.1.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.unicode-width-0.1.10.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,11 +34,7 @@
 rust_library(
     name = "unicode_width",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -45,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=unicode-width",
         "manual",
     ],
-    version = "0.1.8",
+    version = "0.1.10",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.url-2.2.2.bazel b/third_party/rust/cargo/remote/BUILD.url-2.3.1.bazel
similarity index 75%
rename from third_party/rust/cargo/remote/BUILD.url-2.2.2.bazel
rename to third_party/rust/cargo/remote/BUILD.url-2.3.1.bazel
index 56f2f26..e371f56 100644
--- a/third_party/rust/cargo/remote/BUILD.url-2.2.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.url-2.3.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -36,9 +37,9 @@
     name = "url",
     srcs = glob(["**/*.rs"]),
     crate_features = [
+        "default",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,18 +47,20 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=url",
         "manual",
     ],
-    version = "2.2.2",
+    version = "2.3.1",
     # buildifier: leave-alone
     deps = [
-        "@raze__form_urlencoded__1_0_1//:form_urlencoded",
-        "@raze__idna__0_2_3//:idna",
-        "@raze__matches__0_1_8//:matches",
-        "@raze__percent_encoding__2_1_0//:percent_encoding",
+        "@raze__form_urlencoded__1_1_0//:form_urlencoded",
+        "@raze__idna__0_3_0//:idna",
+        "@raze__percent_encoding__2_2_0//:percent_encoding",
     ],
 )
 
 # Unsupported target "data" with type "test" omitted
 
+# Unsupported target "debugger_visualizer" with type "test" omitted
+
 # Unsupported target "unit" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.urlencoding-1.3.3.bazel b/third_party/rust/cargo/remote/BUILD.urlencoding-1.3.3.bazel
deleted file mode 100644
index 2f3a54e..0000000
--- a/third_party/rust/cargo/remote/BUILD.urlencoding-1.3.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_library(
-    name = "urlencoding",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "1.3.3",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
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
index 8508c5d..6c7b13f 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -44,10 +45,7 @@
 rust_library(
     name = "utf8",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -55,6 +53,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=utf8",
         "manual",
     ],
     version = "0.7.6",
diff --git a/third_party/rust/cargo/remote/BUILD.vec_map-0.8.2.bazel b/third_party/rust/cargo/remote/BUILD.vec_map-0.8.2.bazel
deleted file mode 100644
index c6ccf8b..0000000
--- a/third_party/rust/cargo/remote/BUILD.vec_map-0.8.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 = "vec_map",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2015",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.8.2",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.version_check-0.9.3.bazel b/third_party/rust/cargo/remote/BUILD.version_check-0.9.4.bazel
similarity index 88%
rename from third_party/rust/cargo/remote/BUILD.version_check-0.9.3.bazel
rename to third_party/rust/cargo/remote/BUILD.version_check-0.9.4.bazel
index b73b444..7b1a6f7 100644
--- a/third_party/rust/cargo/remote/BUILD.version_check-0.9.3.bazel
+++ b/third_party/rust/cargo/remote/BUILD.version_check-0.9.4.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "version_check",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=version_check",
         "manual",
     ],
-    version = "0.9.3",
+    version = "0.9.4",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.walkdir-2.3.2.bazel b/third_party/rust/cargo/remote/BUILD.walkdir-2.3.2.bazel
index 3a621f9..a0d044c 100644
--- a/third_party/rust/cargo/remote/BUILD.walkdir-2.3.2.bazel
+++ b/third_party/rust/cargo/remote/BUILD.walkdir-2.3.2.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "walkdir",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=walkdir",
         "manual",
     ],
     version = "2.3.2",
diff --git a/third_party/rust/cargo/remote/BUILD.want-0.3.0.bazel b/third_party/rust/cargo/remote/BUILD.want-0.3.0.bazel
index f9e1669..9a8ef26 100644
--- a/third_party/rust/cargo/remote/BUILD.want-0.3.0.bazel
+++ b/third_party/rust/cargo/remote/BUILD.want-0.3.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -35,10 +36,7 @@
 rust_library(
     name = "want",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,12 +44,13 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=want",
         "manual",
     ],
     version = "0.3.0",
     # buildifier: leave-alone
     deps = [
-        "@raze__log__0_4_14//:log",
-        "@raze__try_lock__0_2_3//:try_lock",
+        "@raze__log__0_4_17//:log",
+        "@raze__try_lock__0_2_4//:try_lock",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.warp-0.2.5.bazel b/third_party/rust/cargo/remote/BUILD.warp-0.3.3.bazel
similarity index 73%
rename from third_party/rust/cargo/remote/BUILD.warp-0.2.5.bazel
rename to third_party/rust/cargo/remote/BUILD.warp-0.3.3.bazel
index d04710f..da57868 100644
--- a/third_party/rust/cargo/remote/BUILD.warp-0.2.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.warp-0.3.3.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -36,6 +37,8 @@
 
 # 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
@@ -84,7 +87,6 @@
         "websocket",
     ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -92,30 +94,34 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=warp",
         "manual",
     ],
-    version = "0.2.5",
+    version = "0.3.3",
     # buildifier: leave-alone
     deps = [
-        "@raze__bytes__0_5_6//:bytes",
-        "@raze__futures__0_3_15//:futures",
-        "@raze__headers__0_3_4//:headers",
-        "@raze__http__0_2_4//:http",
-        "@raze__hyper__0_13_10//:hyper",
-        "@raze__log__0_4_14//:log",
+        "@raze__bytes__1_3_0//:bytes",
+        "@raze__futures_channel__0_3_25//:futures_channel",
+        "@raze__futures_util__0_3_25//:futures_util",
+        "@raze__headers__0_3_8//:headers",
+        "@raze__http__0_2_8//:http",
+        "@raze__hyper__0_14_23//:hyper",
+        "@raze__log__0_4_17//:log",
         "@raze__mime__0_3_16//:mime",
-        "@raze__mime_guess__2_0_3//:mime_guess",
-        "@raze__pin_project__0_4_28//:pin_project",
-        "@raze__scoped_tls__1_0_0//:scoped_tls",
-        "@raze__serde__1_0_126//:serde",
-        "@raze__serde_json__1_0_64//:serde_json",
-        "@raze__serde_urlencoded__0_6_1//:serde_urlencoded",
-        "@raze__tokio__0_2_25//:tokio",
-        "@raze__tokio_tungstenite__0_11_0//:tokio_tungstenite",
-        "@raze__tower_service__0_3_1//:tower_service",
-        "@raze__tracing__0_1_26//:tracing",
-        "@raze__tracing_futures__0_2_5//:tracing_futures",
-        "@raze__urlencoding__1_3_3//:urlencoding",
+        "@raze__mime_guess__2_0_4//:mime_guess",
+        "@raze__percent_encoding__2_2_0//:percent_encoding",
+        "@raze__pin_project__1_0_12//:pin_project",
+        "@raze__rustls_pemfile__0_2_1//:rustls_pemfile",
+        "@raze__scoped_tls__1_0_1//:scoped_tls",
+        "@raze__serde__1_0_152//:serde",
+        "@raze__serde_json__1_0_91//:serde_json",
+        "@raze__serde_urlencoded__0_7_1//:serde_urlencoded",
+        "@raze__tokio__1_24_1//:tokio",
+        "@raze__tokio_stream__0_1_11//:tokio_stream",
+        "@raze__tokio_tungstenite__0_17_2//:tokio_tungstenite",
+        "@raze__tokio_util__0_7_4//:tokio_util",
+        "@raze__tower_service__0_3_2//:tower_service",
+        "@raze__tracing__0_1_37//:tracing",
     ],
 )
 
diff --git a/third_party/rust/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel b/third_party/rust/cargo/remote/BUILD.wasi-0.10.0+wasi-snapshot-preview1.bazel
similarity index 84%
copy from third_party/rust/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel
copy to third_party/rust/cargo/remote/BUILD.wasi-0.10.0+wasi-snapshot-preview1.bazel
index cf376db..05ac2a1 100644
--- a/third_party/rust/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasi-0.10.0+wasi-snapshot-preview1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,12 +34,7 @@
 rust_library(
     name = "wasi",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasi",
         "manual",
     ],
-    version = "0.10.2+wasi-snapshot-preview1",
+    version = "0.10.0+wasi-snapshot-preview1",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel b/third_party/rust/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
similarity index 84%
rename from third_party/rust/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel
rename to third_party/rust/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
index cf376db..08e1dda 100644
--- a/third_party/rust/cargo/remote/BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasi-0.11.0+wasi-snapshot-preview1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,12 +34,7 @@
 rust_library(
     name = "wasi",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasi",
         "manual",
     ],
-    version = "0.10.2+wasi-snapshot-preview1",
+    version = "0.11.0+wasi-snapshot-preview1",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.wasi-0.9.0+wasi-snapshot-preview1.bazel b/third_party/rust/cargo/remote/BUILD.wasi-0.9.0+wasi-snapshot-preview1.bazel
deleted file mode 100644
index c08e476..0000000
--- a/third_party/rust/cargo/remote/BUILD.wasi-0.9.0+wasi-snapshot-preview1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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_features = [
-        "default",
-        "std",
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.9.0+wasi-snapshot-preview1",
-    # buildifier: leave-alone
-    deps = [
-    ],
-)
diff --git a/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-0.2.83.bazel
similarity index 66%
rename from third_party/rust/cargo/remote/BUILD.futures-macro-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.wasm-bindgen-0.2.83.bazel
index c6a3979..42098bd 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-macro-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-0.2.83.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,12 +38,10 @@
 )
 
 cargo_build_script(
-    name = "futures_macro_build_script",
+    name = "wasm_bindgen_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
@@ -53,38 +52,45 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.2.83",
     visibility = ["//visibility:private"],
     deps = [
-        "@raze__autocfg__1_0_1//:autocfg",
     ],
 )
 
 rust_library(
-    name = "futures_macro",
+    name = "wasm_bindgen",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "proc-macro",
     data = [],
     edition = "2018",
     proc_macro_deps = [
-        "@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
+        "@raze__wasm_bindgen_macro__0_2_83//:wasm_bindgen_macro",
     ],
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasm-bindgen",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.2.83",
     # buildifier: leave-alone
     deps = [
-        ":futures_macro_build_script",
-        "@raze__proc_macro2__1_0_27//:proc_macro2",
-        "@raze__quote__1_0_9//:quote",
-        "@raze__syn__1_0_73//:syn",
+        ":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
diff --git a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-backend-0.2.83.bazel
similarity index 65%
copy from third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
copy to third_party/rust/cargo/remote/BUILD.wasm-bindgen-backend-0.2.83.bazel
index 2998d99..862a4e6 100644
--- a/third_party/rust/cargo/remote/BUILD.toml-0.5.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-backend-0.2.83.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,20 +31,10 @@
 
 # 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",
+    name = "wasm_bindgen_backend",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -51,13 +42,18 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasm-bindgen-backend",
         "manual",
     ],
-    version = "0.5.8",
+    version = "0.2.83",
     # buildifier: leave-alone
     deps = [
-        "@raze__serde__1_0_126//:serde",
+        "@raze__bumpalo__3_11_1//:bumpalo",
+        "@raze__log__0_4_17//:log",
+        "@raze__once_cell__1_17_0//:once_cell",
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
+        "@raze__wasm_bindgen_shared__0_2_83//:wasm_bindgen_shared",
     ],
 )
-
-# Unsupported target "enum_external_deserialize" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-0.2.83.bazel
similarity index 71%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-0.2.83.bazel
index f09bed8..7a955d0 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-0.2.83.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -30,15 +31,10 @@
 
 # Generated Targets
 
-rust_library(
-    name = "siphasher",
+rust_proc_macro(
+    name = "wasm_bindgen_macro",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,15 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasm-bindgen-macro",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.2.83",
     # buildifier: leave-alone
     deps = [
+        "@raze__quote__1_0_23//:quote",
+        "@raze__wasm_bindgen_macro_support__0_2_83//:wasm_bindgen_macro_support",
     ],
 )
+
+# Unsupported target "ui" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.83.bazel
similarity index 67%
copy from third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
copy to third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.83.bazel
index f09bed8..7b4dae3 100644
--- a/third_party/rust/cargo/remote/BUILD.siphasher-0.3.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-macro-support-0.2.83.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,14 +32,9 @@
 # Generated Targets
 
 rust_library(
-    name = "siphasher",
+    name = "wasm_bindgen_macro_support",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "default",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -46,10 +42,16 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasm-bindgen-macro-support",
         "manual",
     ],
-    version = "0.3.5",
+    version = "0.2.83",
     # buildifier: leave-alone
     deps = [
+        "@raze__proc_macro2__1_0_49//:proc_macro2",
+        "@raze__quote__1_0_23//:quote",
+        "@raze__syn__1_0_107//:syn",
+        "@raze__wasm_bindgen_backend__0_2_83//:wasm_bindgen_backend",
+        "@raze__wasm_bindgen_shared__0_2_83//:wasm_bindgen_shared",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-shared-0.2.83.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
copy to third_party/rust/cargo/remote/BUILD.wasm-bindgen-shared-0.2.83.bazel
index 750605b..39e4548 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-task-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.wasm-bindgen-shared-0.2.83.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,17 +38,14 @@
 )
 
 cargo_build_script(
-    name = "futures_task_build_script",
+    name = "wasm_bindgen_shared_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "alloc",
-        "std",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2018",
+    links = "wasm_bindgen",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -55,21 +53,16 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.2.83",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "futures_task",
+    name = "wasm_bindgen_shared",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "alloc",
-        "std",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -77,11 +70,12 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=wasm-bindgen-shared",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.2.83",
     # buildifier: leave-alone
     deps = [
-        ":futures_task_build_script",
+        ":wasm_bindgen_shared_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.which-4.1.0.bazel b/third_party/rust/cargo/remote/BUILD.which-4.1.0.bazel
deleted file mode 100644
index 521bab0..0000000
--- a/third_party/rust/cargo/remote/BUILD.which-4.1.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "4.1.0",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__either__1_6_1//:either",
-        "@raze__libc__0_2_97//:libc",
-    ],
-)
-
-# Unsupported target "basic" with type "test" omitted
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-0.2.8.bazel b/third_party/rust/cargo/remote/BUILD.winapi-0.2.8.bazel
index c9e854e..af92314 100644
--- a/third_party/rust/cargo/remote/BUILD.winapi-0.2.8.bazel
+++ b/third_party/rust/cargo/remote/BUILD.winapi-0.2.8.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "winapi",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=winapi",
         "manual",
     ],
     version = "0.2.8",
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
index 90a6e43..c42862a 100644
--- a/third_party/rust/cargo/remote/BUILD.winapi-0.3.9.bazel
+++ b/third_party/rust/cargo/remote/BUILD.winapi-0.3.9.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,31 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-        "consoleapi",
-        "errhandlingapi",
-        "fileapi",
-        "handleapi",
-        "ioapiset",
-        "minwinbase",
-        "minwindef",
-        "ntdef",
-        "processenv",
-        "profileapi",
-        "shellapi",
-        "std",
-        "synchapi",
-        "sysinfoapi",
-        "timezoneapi",
-        "winbase",
-        "wincon",
-        "winerror",
-        "winnt",
-        "winsock2",
-        "ws2def",
-        "ws2ipdef",
-        "ws2tcpip",
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -85,33 +61,7 @@
 rust_library(
     name = "winapi",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-        "consoleapi",
-        "errhandlingapi",
-        "fileapi",
-        "handleapi",
-        "ioapiset",
-        "minwinbase",
-        "minwindef",
-        "ntdef",
-        "processenv",
-        "profileapi",
-        "shellapi",
-        "std",
-        "synchapi",
-        "sysinfoapi",
-        "timezoneapi",
-        "winbase",
-        "wincon",
-        "winerror",
-        "winnt",
-        "winsock2",
-        "ws2def",
-        "ws2ipdef",
-        "ws2tcpip",
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -119,6 +69,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=winapi",
         "manual",
     ],
     version = "0.3.9",
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-build-0.1.1.bazel b/third_party/rust/cargo/remote/BUILD.winapi-build-0.1.1.bazel
index 230fc73..5abf97d 100644
--- a/third_party/rust/cargo/remote/BUILD.winapi-build-0.1.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.winapi-build-0.1.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -42,10 +43,7 @@
 rust_library(
     name = "build",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -53,6 +51,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=build",
         "manual",
     ],
     version = "0.1.1",
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
index 9c13fa4..4333e66 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -62,10 +61,7 @@
 rust_library(
     name = "winapi_i686_pc_windows_gnu",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -73,6 +69,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=winapi-i686-pc-windows-gnu",
         "manual",
     ],
     version = "0.4.0",
diff --git a/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.5.bazel b/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.5.bazel
index 7e32fd3..10e8f69 100644
--- a/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.5.bazel
+++ b/third_party/rust/cargo/remote/BUILD.winapi-util-0.1.5.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -33,10 +34,7 @@
 rust_library(
     name = "winapi_util",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,6 +42,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=winapi-util",
         "manual",
     ],
     version = "0.1.5",
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
index 79b06ac..b22fee5 100644
--- 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
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -62,10 +61,7 @@
 rust_library(
     name = "winapi_x86_64_pc_windows_gnu",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -73,6 +69,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=winapi-x86_64-pc-windows-gnu",
         "manual",
     ],
     version = "0.4.0",
diff --git a/third_party/rust/cargo/remote/BUILD.futures-io-0.3.15.bazel b/third_party/rust/cargo/remote/BUILD.windows-sys-0.42.0.bazel
similarity index 86%
rename from third_party/rust/cargo/remote/BUILD.futures-io-0.3.15.bazel
rename to third_party/rust/cargo/remote/BUILD.windows-sys-0.42.0.bazel
index 3217ac2..03899aa 100644
--- a/third_party/rust/cargo/remote/BUILD.futures-io-0.3.15.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows-sys-0.42.0.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -31,12 +32,9 @@
 # Generated Targets
 
 rust_library(
-    name = "futures_io",
+    name = "windows_sys",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2018",
     rustc_flags = [
@@ -44,9 +42,10 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows-sys",
         "manual",
     ],
-    version = "0.3.15",
+    version = "0.42.0",
     # buildifier: leave-alone
     deps = [
     ],
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_aarch64_gnullvm-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_aarch64_gnullvm-0.42.1.bazel
index ef68494..12f9d77 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_aarch64_gnullvm-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_aarch64_gnullvm_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_aarch64_gnullvm",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_aarch64_gnullvm",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_aarch64_gnullvm_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_aarch64_msvc-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_aarch64_msvc-0.42.1.bazel
index ef68494..bb1c072 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_aarch64_msvc-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_aarch64_msvc_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_aarch64_msvc",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_aarch64_msvc",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_aarch64_msvc_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_i686_gnu-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_i686_gnu-0.42.1.bazel
index ef68494..fe38822 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_i686_gnu-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_i686_gnu_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_i686_gnu",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_i686_gnu",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_i686_gnu_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_i686_msvc-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_i686_msvc-0.42.1.bazel
index ef68494..336169b 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_i686_msvc-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_i686_msvc_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_i686_msvc",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_i686_msvc",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_i686_msvc_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnu-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_x86_64_gnu-0.42.1.bazel
index ef68494..c93586c 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnu-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_x86_64_gnu_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_x86_64_gnu",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_x86_64_gnu",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_x86_64_gnu_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnullvm-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_x86_64_gnullvm-0.42.1.bazel
index ef68494..1749dec 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_x86_64_gnullvm-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_x86_64_gnullvm_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_x86_64_gnullvm",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_x86_64_gnullvm",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_x86_64_gnullvm_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel b/third_party/rust/cargo/remote/BUILD.windows_x86_64_msvc-0.42.1.bazel
similarity index 80%
copy from third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
copy to third_party/rust/cargo/remote/BUILD.windows_x86_64_msvc-0.42.1.bazel
index ef68494..c4abcac 100644
--- a/third_party/rust/cargo/remote/BUILD.proc-macro-nested-0.1.7.bazel
+++ b/third_party/rust/cargo/remote/BUILD.windows_x86_64_msvc-0.42.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -37,15 +38,13 @@
 )
 
 cargo_build_script(
-    name = "proc_macro_nested_build_script",
+    name = "windows_x86_64_msvc_build_script",
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
@@ -53,31 +52,29 @@
         "cargo-raze",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     visibility = ["//visibility:private"],
     deps = [
     ],
 )
 
 rust_library(
-    name = "proc_macro_nested",
+    name = "windows_x86_64_msvc",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
-    edition = "2015",
+    edition = "2018",
     rustc_flags = [
         "--cap-lints=allow",
     ],
     tags = [
         "cargo-raze",
+        "crate-name=windows_x86_64_msvc",
         "manual",
     ],
-    version = "0.1.7",
+    version = "0.42.1",
     # buildifier: leave-alone
     deps = [
-        ":proc_macro_nested_build_script",
+        ":windows_x86_64_msvc_build_script",
     ],
 )
diff --git a/third_party/rust/cargo/remote/BUILD.ws2_32-sys-0.2.1.bazel b/third_party/rust/cargo/remote/BUILD.ws2_32-sys-0.2.1.bazel
index f187c57..bb77bc9 100644
--- a/third_party/rust/cargo/remote/BUILD.ws2_32-sys-0.2.1.bazel
+++ b/third_party/rust/cargo/remote/BUILD.ws2_32-sys-0.2.1.bazel
@@ -10,9 +10,10 @@
 
 # buildifier: disable=load
 load(
-    "@rules_rust//rust:rust.bzl",
+    "@rules_rust//rust:defs.bzl",
     "rust_binary",
     "rust_library",
+    "rust_proc_macro",
     "rust_test",
 )
 
@@ -41,8 +42,6 @@
     srcs = glob(["**/*.rs"]),
     build_script_env = {
     },
-    crate_features = [
-    ],
     crate_root = "build.rs",
     data = glob(["**"]),
     edition = "2015",
@@ -72,10 +71,7 @@
 rust_library(
     name = "ws2_32",
     srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
     crate_root = "src/lib.rs",
-    crate_type = "lib",
     data = [],
     edition = "2015",
     rustc_flags = [
@@ -83,6 +79,7 @@
     ],
     tags = [
         "cargo-raze",
+        "crate-name=ws2_32",
         "manual",
     ],
     version = "0.2.1",
diff --git a/third_party/rust/cargo/remote/BUILD.xml5ever-0.16.1.bazel b/third_party/rust/cargo/remote/BUILD.xml5ever-0.16.1.bazel
deleted file mode 100644
index c5e499c..0000000
--- a/third_party/rust/cargo/remote/BUILD.xml5ever-0.16.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:rust.bzl",
-    "rust_binary",
-    "rust_library",
-    "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 "xml5ever" with type "bench" omitted
-
-# Unsupported target "simple_xml_tokenizer" with type "example" omitted
-
-# Unsupported target "xml_tokenizer" with type "example" omitted
-
-rust_library(
-    name = "xml5ever",
-    srcs = glob(["**/*.rs"]),
-    crate_features = [
-    ],
-    crate_root = "src/lib.rs",
-    crate_type = "lib",
-    data = [],
-    edition = "2018",
-    rustc_flags = [
-        "--cap-lints=allow",
-    ],
-    tags = [
-        "cargo-raze",
-        "manual",
-    ],
-    version = "0.16.1",
-    # buildifier: leave-alone
-    deps = [
-        "@raze__log__0_4_14//:log",
-        "@raze__mac__0_1_1//:mac",
-        "@raze__markup5ever__0_10_1//:markup5ever",
-        "@raze__time__0_1_43//:time",
-    ],
-)