nandi/jolt-nativepublic Fork 0
600f207
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Build both objects under buck2, against the BuildBuddy cache

The graph compiles and links: libvidya.so and libjoltmoq.so come out of
`just buck-build` exporting the same 58 and 27 C symbols as the cargo build,
under the same sonames.

Four things stood between here and there, none of them the hand-written
cxx_library that aws-lc looked like it would need:

  OPT_LEVEL, which cargo sets for every build script and buck2 for none. cc-rs
  and libm's own configure both read it unconditionally, so it is set on all
  78 build scripts that run rather than one crash at a time.

  DEP_AWS_LC_0_43_0_INCLUDE, which cargo derives from aws-lc-sys's `links` and
  buck2 does not carry between build scripts at all.

  The tool paths. The prelude re-execs the compiler from a build script's own
  directory with os.execl, so a project-relative `scripts/zcc` is not found
  and a bare `zcc` on PATH is not either. They are absolute now, written into
  .buckconfig.local by the `buck` recipe. rustc is the exception and goes the
  other way: the prelude hardcodes the bare name with no attribute to
  override, so PATH is the only way to select the pinned one.

  The lockfile, which was resolved fresh and should have been seeded from the
  workspace's. This tree pins pre-release pkcs8 and ed25519 on purpose, and a
  fresh resolve took the released versions, which ed25519-dalek 3.0.0-pre.1
  does not compile against.

Caching is on and cache-only: the toolchain names absolute paths inside this
checkout, so no remote worker could run these actions. A cold buck-out builds
aws-lc-sys in 6.6s at 96% hits. Because the compiler is named rather than
depended on, its identity is not in any action's digest — two compilers
collide on one entry, and the symptom is E0514 a long way from the cause. The
version is in a cfg nothing reads, to keep them apart.

-Copt-level=2 mirrors [profile.release]; buck2 optimises nothing by default,
and without it both objects are debug builds wearing release names.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
nandi committed 2026-08-30T21:12:14-07:00 Browse files
600f207 parent: 460541b
modified .buckconfig +8 -4
@@ -17,13 +17,17 @@
1717 [external_cells]
1818 prelude = bundled
1919
20+# Both of these name the cache-enabled platform, and both are needed. The
21+# second registers it; the first is what actually routes toolchain-owned
22+# actions — every rustc invocation — onto it, because the Rust toolchain is a
23+# target in the prelude cell and takes its configuration from here.
2024 [parser]
21- target_platform_detector_spec = target:root//...->prelude//platforms:default \
22- target:prelude//...->prelude//platforms:default \
23- target:toolchains//...->prelude//platforms:default
25+ target_platform_detector_spec = target:root//...->root//platforms:cache \
26+ target:prelude//...->root//platforms:cache \
27+ target:toolchains//...->root//platforms:cache
2428
2529 [build]
26- execution_platforms = prelude//platforms:default
30+ execution_platforms = root//platforms:cache
2731
2832 [project]
2933 ignore = .git,target
@@ -17,13 +17,17 @@
17 [external_cells]17 [external_cells]
18 prelude = bundled18 prelude = bundled
19 19
20+# Both of these name the cache-enabled platform, and both are needed. The
21+# second registers it; the first is what actually routes toolchain-owned
22+# actions — every rustc invocation — onto it, because the Rust toolchain is a
23+# target in the prelude cell and takes its configuration from here.
20 [parser]24 [parser]
21- target_platform_detector_spec = target:root//...->prelude//platforms:default \25+ target_platform_detector_spec = target:root//...->root//platforms:cache \
22- target:prelude//...->prelude//platforms:default \26+ target:prelude//...->root//platforms:cache \
23- target:toolchains//...->prelude//platforms:default27+ target:toolchains//...->root//platforms:cache
24 28
25 [build]29 [build]
26- execution_platforms = prelude//platforms:default30+ execution_platforms = root//platforms:cache
27 31
28 [project]32 [project]
29 ignore = .git,target33 ignore = .git,target
modified .gitignore +6 -0
@@ -7,3 +7,9 @@
77 # download cache. Regenerated by `reindeer vendor`, not carried in the repo.
88 /third-party/rust/vendor
99 /third-party/rust/.cargo
10+
11+# Written by the `buck` recipe: this checkout own path, not a shared setting.
12+/.buckconfig.local
13+
14+# Staged output of `just buck-build`.
15+/build/
@@ -7,3 +7,9 @@
7 # download cache. Regenerated by `reindeer vendor`, not carried in the repo.7 # download cache. Regenerated by `reindeer vendor`, not carried in the repo.
8 /third-party/rust/vendor8 /third-party/rust/vendor
9 /third-party/rust/.cargo9 /third-party/rust/.cargo
10+
11+# Written by the `buck` recipe: this checkout own path, not a shared setting.
12+/.buckconfig.local
13+
14+# Staged output of `just buck-build`.
15+/build/
modified justfile +26 -5
@@ -18,16 +18,37 @@ default:
1818 build *args:
1919 cargo build --release {{args}}
2020
21-# buck2, with scripts/ on PATH: the prelude's system toolchains resolve their
22-# tools through PATH, and that directory is where the pinned ones live. Only
23-# `dotslash` itself has to be on the host.
21+# buck2, with scripts/ reachable two ways, because two things need it
22+# differently. `rustc` is resolved off PATH: the prelude's
23+# system_rust_toolchain hardcodes the bare name and offers no attribute to
24+# override it, so the pinned compiler is selected by shadowing. The C tools are
25+# named by absolute path in .buckconfig.local, which the toolchain reads —
26+# see the note in toolchains/BUCK for why a bare name will not do for those.
27+#
28+# Without the PATH half the build silently uses the host's rustc, which is a
29+# different compiler than the one the cache was populated with.
2430 buck *args:
31+ printf '[jolt]\n scripts = %s\n rustc_version = %s\n' \
32+ "{{justfile_directory()}}/scripts" \
33+ "$(scripts/rustc --version | tr -d '\n')" > .buckconfig.local
2534 PATH="{{justfile_directory()}}/scripts:$PATH" scripts/buck2 {{args}}
2635
27-# The same two objects under buck2. Not yet the default — see the cpal note in
28-# third-party/rust/Cargo.toml; `build` above is still the one that works.
36+# The same two objects under buck2, staged into one directory a consumer can
37+# put on its loader path — the same shape `build` leaves in target/release.
38+#
39+# Not the default yet, and only for one reason: cpal's `pipewire` feature is
40+# off here, so device *names* in a call are ALSA PCMs rather than the real OS
41+# sources. See the note in third-party/rust/Cargo.toml.
2942 buck-build *args:
3043 @just buck build //:libs {{args}}
44+ mkdir -p build/lib
45+ cp "$(just buck build --show-output //:libvidya | awk '/libvidya.so/{print $2}')" build/lib/libvidya.so
46+ cp "$(just buck build --show-output //:libjoltmoq | awk '/libjoltmoq.so/{print $2}')" build/lib/libjoltmoq.so
47+ @echo "{{justfile_directory()}}/build/lib"
48+
49+# Where a consumer points LD_LIBRARY_PATH for the buck2 build.
50+buck-libdir:
51+ @echo "{{justfile_directory()}}/build/lib"
3152
3253 test *args:
3354 cargo test --workspace {{args}}
@@ -18,16 +18,37 @@ default:
18 build *args:18 build *args:
19 cargo build --release {{args}}19 cargo build --release {{args}}
20 20
21-# buck2, with scripts/ on PATH: the prelude's system toolchains resolve their21+# buck2, with scripts/ reachable two ways, because two things need it
22-# tools through PATH, and that directory is where the pinned ones live. Only22+# differently. `rustc` is resolved off PATH: the prelude's
23-# `dotslash` itself has to be on the host.23+# system_rust_toolchain hardcodes the bare name and offers no attribute to
24+# override it, so the pinned compiler is selected by shadowing. The C tools are
25+# named by absolute path in .buckconfig.local, which the toolchain reads —
26+# see the note in toolchains/BUCK for why a bare name will not do for those.
27+#
28+# Without the PATH half the build silently uses the host's rustc, which is a
29+# different compiler than the one the cache was populated with.
24 buck *args:30 buck *args:
31+ printf '[jolt]\n scripts = %s\n rustc_version = %s\n' \
32+ "{{justfile_directory()}}/scripts" \
33+ "$(scripts/rustc --version | tr -d '\n')" > .buckconfig.local
25 PATH="{{justfile_directory()}}/scripts:$PATH" scripts/buck2 {{args}}34 PATH="{{justfile_directory()}}/scripts:$PATH" scripts/buck2 {{args}}
26 35
27-# The same two objects under buck2. Not yet the default — see the cpal note in36+# The same two objects under buck2, staged into one directory a consumer can
28-# third-party/rust/Cargo.toml; `build` above is still the one that works.37+# put on its loader path — the same shape `build` leaves in target/release.
38+#
39+# Not the default yet, and only for one reason: cpal's `pipewire` feature is
40+# off here, so device *names* in a call are ALSA PCMs rather than the real OS
41+# sources. See the note in third-party/rust/Cargo.toml.
29 buck-build *args:42 buck-build *args:
30 @just buck build //:libs {{args}}43 @just buck build //:libs {{args}}
44+ mkdir -p build/lib
45+ cp "$(just buck build --show-output //:libvidya | awk '/libvidya.so/{print $2}')" build/lib/libvidya.so
46+ cp "$(just buck build --show-output //:libjoltmoq | awk '/libjoltmoq.so/{print $2}')" build/lib/libjoltmoq.so
47+ @echo "{{justfile_directory()}}/build/lib"
48+
49+# Where a consumer points LD_LIBRARY_PATH for the buck2 build.
50+buck-libdir:
51+ @echo "{{justfile_directory()}}/build/lib"
31 52
32 test *args:53 test *args:
33 cargo test --workspace {{args}}54 cargo test --workspace {{args}}
added platforms/BUCK +15 -0
new file mode 100644
@@ -0,0 +1,15 @@
1+load("@prelude//platforms:defs.bzl", "host_configuration")
2+load(":defs.bzl", "execution_platform")
3+
4+# Where every action runs: locally, against the BuildBuddy cache. Registered by
5+# `[build] execution_platforms` in .buckconfig — and, because a toolchain is
6+# itself a target in the prelude cell, by `[parser] target_platform_detector_spec`
7+# there too. Setting only the first leaves every rustc action on the prelude's
8+# uncached default.
9+execution_platform(
10+ name = "cache",
11+ cpu_configuration = host_configuration.cpu,
12+ os_configuration = host_configuration.os,
13+ use_windows_path_separators = host_info().os.is_windows,
14+ visibility = ["PUBLIC"],
15+)
new file mode 100644
@@ -0,0 +1,15 @@
1+load("@prelude//platforms:defs.bzl", "host_configuration")
2+load(":defs.bzl", "execution_platform")
3+
4+# Where every action runs: locally, against the BuildBuddy cache. Registered by
5+# `[build] execution_platforms` in .buckconfig — and, because a toolchain is
6+# itself a target in the prelude cell, by `[parser] target_platform_detector_spec`
7+# there too. Setting only the first leaves every rustc action on the prelude's
8+# uncached default.
9+execution_platform(
10+ name = "cache",
11+ cpu_configuration = host_configuration.cpu,
12+ os_configuration = host_configuration.os,
13+ use_windows_path_separators = host_info().os.is_windows,
14+ visibility = ["PUBLIC"],
15+)
added platforms/defs.bzl +51 -0
new file mode 100644
@@ -0,0 +1,51 @@
1+# The stock prelude//platforms:default with its cache switches flipped on.
2+#
3+# The prelude's own `execution_platform` rule is static Starlark — there is no
4+# buckconfig key that turns caching on for it — so the rule is copied here and
5+# its CommandExecutorConfig changed. Everything else mirrors the original
6+# exactly, so this platform stays configuration-identical to the default.
7+#
8+# Cache only, never remote execution. The toolchain in toolchains/BUCK points
9+# at absolute paths inside this checkout (see the note there about os.execl),
10+# which no RE worker will have. `remote_enabled = False` is the switch that
11+# says so; the cache is read and written over the network regardless, and
12+# every action still runs locally.
13+load("@prelude//cfg/exec_platform:marker.bzl", "get_exec_platform_marker")
14+
15+def _execution_platform_impl(ctx: AnalysisContext) -> list[Provider]:
16+ constraints = dict()
17+ constraints.update(ctx.attrs.cpu_configuration[ConfigurationInfo].constraints)
18+ constraints.update(ctx.attrs.os_configuration[ConfigurationInfo].constraints)
19+ cfg = ConfigurationInfo(constraints = constraints, values = {})
20+
21+ name = ctx.label.raw_target()
22+ platform = ExecutionPlatformInfo(
23+ label = name,
24+ configuration = cfg,
25+ executor_config = CommandExecutorConfig(
26+ local_enabled = True,
27+ remote_enabled = False,
28+ remote_cache_enabled = True,
29+ allow_cache_uploads = True,
30+ use_windows_path_separators = ctx.attrs.use_windows_path_separators,
31+ ),
32+ )
33+
34+ return [
35+ DefaultInfo(),
36+ platform,
37+ PlatformInfo(label = str(name), configuration = cfg),
38+ ExecutionPlatformRegistrationInfo(
39+ platforms = [platform],
40+ exec_marker_constraint = get_exec_platform_marker(),
41+ ),
42+ ]
43+
44+execution_platform = rule(
45+ impl = _execution_platform_impl,
46+ attrs = {
47+ "cpu_configuration": attrs.dep(providers = [ConfigurationInfo]),
48+ "os_configuration": attrs.dep(providers = [ConfigurationInfo]),
49+ "use_windows_path_separators": attrs.bool(),
50+ },
51+)
new file mode 100644
@@ -0,0 +1,51 @@
1+# The stock prelude//platforms:default with its cache switches flipped on.
2+#
3+# The prelude's own `execution_platform` rule is static Starlark — there is no
4+# buckconfig key that turns caching on for it — so the rule is copied here and
5+# its CommandExecutorConfig changed. Everything else mirrors the original
6+# exactly, so this platform stays configuration-identical to the default.
7+#
8+# Cache only, never remote execution. The toolchain in toolchains/BUCK points
9+# at absolute paths inside this checkout (see the note there about os.execl),
10+# which no RE worker will have. `remote_enabled = False` is the switch that
11+# says so; the cache is read and written over the network regardless, and
12+# every action still runs locally.
13+load("@prelude//cfg/exec_platform:marker.bzl", "get_exec_platform_marker")
14+
15+def _execution_platform_impl(ctx: AnalysisContext) -> list[Provider]:
16+ constraints = dict()
17+ constraints.update(ctx.attrs.cpu_configuration[ConfigurationInfo].constraints)
18+ constraints.update(ctx.attrs.os_configuration[ConfigurationInfo].constraints)
19+ cfg = ConfigurationInfo(constraints = constraints, values = {})
20+
21+ name = ctx.label.raw_target()
22+ platform = ExecutionPlatformInfo(
23+ label = name,
24+ configuration = cfg,
25+ executor_config = CommandExecutorConfig(
26+ local_enabled = True,
27+ remote_enabled = False,
28+ remote_cache_enabled = True,
29+ allow_cache_uploads = True,
30+ use_windows_path_separators = ctx.attrs.use_windows_path_separators,
31+ ),
32+ )
33+
34+ return [
35+ DefaultInfo(),
36+ platform,
37+ PlatformInfo(label = str(name), configuration = cfg),
38+ ExecutionPlatformRegistrationInfo(
39+ platforms = [platform],
40+ exec_marker_constraint = get_exec_platform_marker(),
41+ ),
42+ ]
43+
44+execution_platform = rule(
45+ impl = _execution_platform_impl,
46+ attrs = {
47+ "cpu_configuration": attrs.dep(providers = [ConfigurationInfo]),
48+ "os_configuration": attrs.dep(providers = [ConfigurationInfo]),
49+ "use_windows_path_separators": attrs.bool(),
50+ },
51+)
added scripts/zar +5 -0
new file mode 100755
@@ -0,0 +1,5 @@
1+#!/bin/sh
2+# `zig ar` — llvm-ar, from the same pinned zig as scripts/zcc, so archiving is
3+# no more of a system dependency than compiling is. cc-rs invokes AR directly
4+# when a -sys crate builds a static library; aws-lc-sys is the one that does.
5+exec "$(dirname "$0")/zig" ar "$@"
new file mode 100755
@@ -0,0 +1,5 @@
1+#!/bin/sh
2+# `zig ar` — llvm-ar, from the same pinned zig as scripts/zcc, so archiving is
3+# no more of a system dependency than compiling is. cc-rs invokes AR directly
4+# when a -sys crate builds a static library; aws-lc-sys is the one that does.
5+exec "$(dirname "$0")/zig" ar "$@"
modified third-party/rust/BUCK +922 -916
@@ -461,6 +461,7 @@ buildscript_run(
461461 "CARGO_PKG_VERSION_MINOR": "8",
462462 "CARGO_PKG_VERSION_PATCH": "12",
463463 "CARGO_PKG_VERSION_PRE": "",
464+ "OPT_LEVEL": "2",
464465 },
465466 features = [
466467 "no-rng",
@@ -486,23 +487,23 @@ buildscript_run(
486487 )
487488
488489 http_archive(
489- name = "aho-corasick-1.1.5.crate",
490- sha256 = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba",
491- strip_prefix = "aho-corasick-1.1.5",
492- urls = ["https://static.crates.io/crates/aho-corasick/1.1.5/download"],
490+ name = "aho-corasick-1.1.4.crate",
491+ sha256 = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301",
492+ strip_prefix = "aho-corasick-1.1.4",
493+ urls = ["https://static.crates.io/crates/aho-corasick/1.1.4/download"],
493494 visibility = [],
494495 )
495496
496497 cargo.rust_library(
497498 name = "aho-corasick-1",
498- srcs = [":aho-corasick-1.1.5.crate"],
499+ srcs = [":aho-corasick-1.1.4.crate"],
499500 crate = "aho_corasick",
500- crate_root = "aho-corasick-1.1.5.crate/src/lib.rs",
501+ crate_root = "aho-corasick-1.1.4.crate/src/lib.rs",
501502 edition = "2021",
502503 env = {
503504 "CARGO_BIN_NAME": "aho_corasick",
504505 "CARGO_CRATE_NAME": "aho_corasick",
505- "CARGO_MANIFEST_DIR": "aho-corasick-1.1.5.crate",
506+ "CARGO_MANIFEST_DIR": "aho-corasick-1.1.4.crate",
506507 "CARGO_PKG_AUTHORS": "Andrew Gallant <jamslam@gmail.com>",
507508 "CARGO_PKG_DESCRIPTION": "Fast multiple substring searching.",
508509 "CARGO_PKG_HOMEPAGE": "https://github.com/BurntSushi/aho-corasick",
@@ -510,10 +511,10 @@ cargo.rust_library(
510511 "CARGO_PKG_README": "README.md",
511512 "CARGO_PKG_REPOSITORY": "https://github.com/BurntSushi/aho-corasick",
512513 "CARGO_PKG_RUST_VERSION": "1.60.0",
513- "CARGO_PKG_VERSION": "1.1.5",
514+ "CARGO_PKG_VERSION": "1.1.4",
514515 "CARGO_PKG_VERSION_MAJOR": "1",
515516 "CARGO_PKG_VERSION_MINOR": "1",
516- "CARGO_PKG_VERSION_PATCH": "5",
517+ "CARGO_PKG_VERSION_PATCH": "4",
517518 "CARGO_PKG_VERSION_PRE": "",
518519 },
519520 features = [
@@ -689,6 +690,7 @@ buildscript_run(
689690 "CARGO_PKG_VERSION_MINOR": "4",
690691 "CARGO_PKG_VERSION_PATCH": "0",
691692 "CARGO_PKG_VERSION_PRE": "",
693+ "OPT_LEVEL": "2",
692694 },
693695 version = "0.4.0",
694696 )
@@ -1029,6 +1031,7 @@ buildscript_run(
10291031 "CARGO_PKG_VERSION_MINOR": "0",
10301032 "CARGO_PKG_VERSION_PATCH": "104",
10311033 "CARGO_PKG_VERSION_PRE": "",
1034+ "OPT_LEVEL": "2",
10321035 },
10331036 features = [
10341037 "backtrace",
@@ -1122,23 +1125,23 @@ cargo.rust_library(
11221125 )
11231126
11241127 http_archive(
1125- name = "archery-1.2.3.crate",
1126- sha256 = "33ca55ee147b1926dbea904f50fe4902494e97bc742205abbbf10c709e43815f",
1127- strip_prefix = "archery-1.2.3",
1128- urls = ["https://static.crates.io/crates/archery/1.2.3/download"],
1128+ name = "archery-1.2.2.crate",
1129+ sha256 = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d",
1130+ strip_prefix = "archery-1.2.2",
1131+ urls = ["https://static.crates.io/crates/archery/1.2.2/download"],
11291132 visibility = [],
11301133 )
11311134
11321135 cargo.rust_library(
11331136 name = "archery-1",
1134- srcs = [":archery-1.2.3.crate"],
1137+ srcs = [":archery-1.2.2.crate"],
11351138 crate = "archery",
1136- crate_root = "archery-1.2.3.crate/src/lib.rs",
1139+ crate_root = "archery-1.2.2.crate/src/lib.rs",
11371140 edition = "2024",
11381141 env = {
11391142 "CARGO_BIN_NAME": "archery",
11401143 "CARGO_CRATE_NAME": "archery",
1141- "CARGO_MANIFEST_DIR": "archery-1.2.3.crate",
1144+ "CARGO_MANIFEST_DIR": "archery-1.2.2.crate",
11421145 "CARGO_PKG_AUTHORS": "Diogo Sousa <diogogsousa@gmail.com>",
11431146 "CARGO_PKG_DESCRIPTION": "Abstract over the atomicity of reference-counting pointers",
11441147 "CARGO_PKG_HOMEPAGE": "https://github.com/orium/archery",
@@ -1146,10 +1149,10 @@ cargo.rust_library(
11461149 "CARGO_PKG_README": "README.md",
11471150 "CARGO_PKG_REPOSITORY": "https://github.com/orium/archery",
11481151 "CARGO_PKG_RUST_VERSION": "1.85.0",
1149- "CARGO_PKG_VERSION": "1.2.3",
1152+ "CARGO_PKG_VERSION": "1.2.2",
11501153 "CARGO_PKG_VERSION_MAJOR": "1",
11511154 "CARGO_PKG_VERSION_MINOR": "2",
1152- "CARGO_PKG_VERSION_PATCH": "3",
1155+ "CARGO_PKG_VERSION_PATCH": "2",
11531156 "CARGO_PKG_VERSION_PRE": "",
11541157 },
11551158 features = ["triomphe"],
@@ -1268,23 +1271,23 @@ cargo.rust_library(
12681271 )
12691272
12701273 http_archive(
1271- name = "async-trait-0.1.92.crate",
1272- sha256 = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667",
1273- strip_prefix = "async-trait-0.1.92",
1274- urls = ["https://static.crates.io/crates/async-trait/0.1.92/download"],
1274+ name = "async-trait-0.1.91.crate",
1275+ sha256 = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec",
1276+ strip_prefix = "async-trait-0.1.91",
1277+ urls = ["https://static.crates.io/crates/async-trait/0.1.91/download"],
12751278 visibility = [],
12761279 )
12771280
12781281 cargo.rust_library(
12791282 name = "async-trait-0.1",
1280- srcs = [":async-trait-0.1.92.crate"],
1283+ srcs = [":async-trait-0.1.91.crate"],
12811284 crate = "async_trait",
1282- crate_root = "async-trait-0.1.92.crate/src/lib.rs",
1285+ crate_root = "async-trait-0.1.91.crate/src/lib.rs",
12831286 edition = "2021",
12841287 env = {
12851288 "CARGO_BIN_NAME": "async_trait",
12861289 "CARGO_CRATE_NAME": "async_trait",
1287- "CARGO_MANIFEST_DIR": "async-trait-0.1.92.crate",
1290+ "CARGO_MANIFEST_DIR": "async-trait-0.1.91.crate",
12881291 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
12891292 "CARGO_PKG_DESCRIPTION": "Type erasure for async trait methods",
12901293 "CARGO_PKG_HOMEPAGE": "",
@@ -1292,10 +1295,10 @@ cargo.rust_library(
12921295 "CARGO_PKG_README": "README.md",
12931296 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/async-trait",
12941297 "CARGO_PKG_RUST_VERSION": "1.71",
1295- "CARGO_PKG_VERSION": "0.1.92",
1298+ "CARGO_PKG_VERSION": "0.1.91",
12961299 "CARGO_PKG_VERSION_MAJOR": "0",
12971300 "CARGO_PKG_VERSION_MINOR": "1",
1298- "CARGO_PKG_VERSION_PATCH": "92",
1301+ "CARGO_PKG_VERSION_PATCH": "91",
12991302 "CARGO_PKG_VERSION_PRE": "",
13001303 },
13011304 proc_macro = True,
@@ -1584,23 +1587,23 @@ cargo.rust_library(
15841587 )
15851588
15861589 http_archive(
1587- name = "aws-lc-rs-1.18.0.crate",
1588- sha256 = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e",
1589- strip_prefix = "aws-lc-rs-1.18.0",
1590- urls = ["https://static.crates.io/crates/aws-lc-rs/1.18.0/download"],
1590+ name = "aws-lc-rs-1.17.3.crate",
1591+ sha256 = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1",
1592+ strip_prefix = "aws-lc-rs-1.17.3",
1593+ urls = ["https://static.crates.io/crates/aws-lc-rs/1.17.3/download"],
15911594 visibility = [],
15921595 )
15931596
15941597 cargo.rust_library(
15951598 name = "aws-lc-rs-1",
1596- srcs = [":aws-lc-rs-1.18.0.crate"],
1599+ srcs = [":aws-lc-rs-1.17.3.crate"],
15971600 crate = "aws_lc_rs",
1598- crate_root = "aws-lc-rs-1.18.0.crate/src/lib.rs",
1601+ crate_root = "aws-lc-rs-1.17.3.crate/src/lib.rs",
15991602 edition = "2021",
16001603 env = {
16011604 "CARGO_BIN_NAME": "aws_lc_rs",
16021605 "CARGO_CRATE_NAME": "aws_lc_rs",
1603- "CARGO_MANIFEST_DIR": "aws-lc-rs-1.18.0.crate",
1606+ "CARGO_MANIFEST_DIR": "aws-lc-rs-1.17.3.crate",
16041607 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",
16051608 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
16061609 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",
@@ -1608,10 +1611,10 @@ cargo.rust_library(
16081611 "CARGO_PKG_README": "README.md",
16091612 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
16101613 "CARGO_PKG_RUST_VERSION": "1.71.0",
1611- "CARGO_PKG_VERSION": "1.18.0",
1614+ "CARGO_PKG_VERSION": "1.17.3",
16121615 "CARGO_PKG_VERSION_MAJOR": "1",
1613- "CARGO_PKG_VERSION_MINOR": "18",
1614- "CARGO_PKG_VERSION_PATCH": "0",
1616+ "CARGO_PKG_VERSION_MINOR": "17",
1617+ "CARGO_PKG_VERSION_PATCH": "3",
16151618 "CARGO_PKG_VERSION_PRE": "",
16161619 "OUT_DIR": "$(location :aws-lc-rs-1-build-script-run[out_dir])",
16171620 },
@@ -1626,7 +1629,7 @@ cargo.rust_library(
16261629 rustc_flags = ["@$(location :aws-lc-rs-1-build-script-run[rustc_flags])"],
16271630 visibility = [],
16281631 deps = [
1629- ":aws-lc-sys-0.44",
1632+ ":aws-lc-sys-0.43",
16301633 ":untrusted-0.7",
16311634 ":zeroize-1",
16321635 ],
@@ -1634,14 +1637,14 @@ cargo.rust_library(
16341637
16351638 cargo.rust_binary(
16361639 name = "aws-lc-rs-1-build-script-build",
1637- srcs = [":aws-lc-rs-1.18.0.crate"],
1640+ srcs = [":aws-lc-rs-1.17.3.crate"],
16381641 crate = "build_script_build",
1639- crate_root = "aws-lc-rs-1.18.0.crate/build.rs",
1642+ crate_root = "aws-lc-rs-1.17.3.crate/build.rs",
16401643 edition = "2021",
16411644 env = {
16421645 "CARGO_BIN_NAME": "build-script-build",
16431646 "CARGO_CRATE_NAME": "build_script_build",
1644- "CARGO_MANIFEST_DIR": "aws-lc-rs-1.18.0.crate",
1647+ "CARGO_MANIFEST_DIR": "aws-lc-rs-1.17.3.crate",
16451648 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",
16461649 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
16471650 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",
@@ -1649,10 +1652,10 @@ cargo.rust_binary(
16491652 "CARGO_PKG_README": "README.md",
16501653 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
16511654 "CARGO_PKG_RUST_VERSION": "1.71.0",
1652- "CARGO_PKG_VERSION": "1.18.0",
1655+ "CARGO_PKG_VERSION": "1.17.3",
16531656 "CARGO_PKG_VERSION_MAJOR": "1",
1654- "CARGO_PKG_VERSION_MINOR": "18",
1655- "CARGO_PKG_VERSION_PATCH": "0",
1657+ "CARGO_PKG_VERSION_MINOR": "17",
1658+ "CARGO_PKG_VERSION_PATCH": "3",
16561659 "CARGO_PKG_VERSION_PRE": "",
16571660 },
16581661 features = [
@@ -1671,7 +1674,7 @@ buildscript_run(
16711674 package_name = "aws-lc-rs",
16721675 buildscript_rule = ":aws-lc-rs-1-build-script-build",
16731676 env = {
1674- "CARGO_MANIFEST_LINKS": "aws_lc_rs_1_18_0_sys",
1677+ "CARGO_MANIFEST_LINKS": "aws_lc_rs_1_17_3_sys",
16751678 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",
16761679 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
16771680 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",
@@ -1679,9 +1682,11 @@ buildscript_run(
16791682 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
16801683 "CARGO_PKG_RUST_VERSION": "1.71.0",
16811684 "CARGO_PKG_VERSION_MAJOR": "1",
1682- "CARGO_PKG_VERSION_MINOR": "18",
1683- "CARGO_PKG_VERSION_PATCH": "0",
1685+ "CARGO_PKG_VERSION_MINOR": "17",
1686+ "CARGO_PKG_VERSION_PATCH": "3",
16841687 "CARGO_PKG_VERSION_PRE": "",
1688+ "DEP_AWS_LC_0_43_0_INCLUDE": "$(location :aws-lc-sys-0.43.0.crate)/include",
1689+ "OPT_LEVEL": "2",
16851690 },
16861691 features = [
16871692 "alloc",
@@ -1691,27 +1696,27 @@ buildscript_run(
16911696 "ring-io",
16921697 "ring-sig-verify",
16931698 ],
1694- version = "1.18.0",
1699+ version = "1.17.3",
16951700 )
16961701
16971702 http_archive(
1698- name = "aws-lc-sys-0.44.0.crate",
1699- sha256 = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483",
1700- strip_prefix = "aws-lc-sys-0.44.0",
1701- urls = ["https://static.crates.io/crates/aws-lc-sys/0.44.0/download"],
1703+ name = "aws-lc-sys-0.43.0.crate",
1704+ sha256 = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c",
1705+ strip_prefix = "aws-lc-sys-0.43.0",
1706+ urls = ["https://static.crates.io/crates/aws-lc-sys/0.43.0/download"],
17021707 visibility = [],
17031708 )
17041709
17051710 cargo.rust_library(
1706- name = "aws-lc-sys-0.44",
1707- srcs = [":aws-lc-sys-0.44.0.crate"],
1711+ name = "aws-lc-sys-0.43",
1712+ srcs = [":aws-lc-sys-0.43.0.crate"],
17081713 crate = "aws_lc_sys",
1709- crate_root = "aws-lc-sys-0.44.0.crate/src/lib.rs",
1714+ crate_root = "aws-lc-sys-0.43.0.crate/src/lib.rs",
17101715 edition = "2021",
17111716 env = {
17121717 "CARGO_BIN_NAME": "aws_lc_sys",
17131718 "CARGO_CRATE_NAME": "aws_lc_sys",
1714- "CARGO_MANIFEST_DIR": "aws-lc-sys-0.44.0.crate",
1719+ "CARGO_MANIFEST_DIR": "aws-lc-sys-0.43.0.crate",
17151720 "CARGO_PKG_AUTHORS": "AWS-LC",
17161721 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
17171722 "CARGO_PKG_HOMEPAGE": "",
@@ -1719,28 +1724,28 @@ cargo.rust_library(
17191724 "CARGO_PKG_README": "README.md",
17201725 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
17211726 "CARGO_PKG_RUST_VERSION": "1.71.0",
1722- "CARGO_PKG_VERSION": "0.44.0",
1727+ "CARGO_PKG_VERSION": "0.43.0",
17231728 "CARGO_PKG_VERSION_MAJOR": "0",
1724- "CARGO_PKG_VERSION_MINOR": "44",
1729+ "CARGO_PKG_VERSION_MINOR": "43",
17251730 "CARGO_PKG_VERSION_PATCH": "0",
17261731 "CARGO_PKG_VERSION_PRE": "",
1727- "OUT_DIR": "$(location :aws-lc-sys-0.44-build-script-main-run[out_dir])",
1732+ "OUT_DIR": "$(location :aws-lc-sys-0.43-build-script-main-run[out_dir])",
17281733 },
17291734 features = ["prebuilt-nasm"],
1730- rustc_flags = ["@$(location :aws-lc-sys-0.44-build-script-main-run[rustc_flags])"],
1735+ rustc_flags = ["@$(location :aws-lc-sys-0.43-build-script-main-run[rustc_flags])"],
17311736 visibility = [],
17321737 )
17331738
17341739 cargo.rust_binary(
1735- name = "aws-lc-sys-0.44-build-script-main",
1736- srcs = [":aws-lc-sys-0.44.0.crate"],
1740+ name = "aws-lc-sys-0.43-build-script-main",
1741+ srcs = [":aws-lc-sys-0.43.0.crate"],
17371742 crate = "build_script_main",
1738- crate_root = "aws-lc-sys-0.44.0.crate/builder/main.rs",
1743+ crate_root = "aws-lc-sys-0.43.0.crate/builder/main.rs",
17391744 edition = "2021",
17401745 env = {
17411746 "CARGO_BIN_NAME": "build-script-main",
17421747 "CARGO_CRATE_NAME": "build_script_build",
1743- "CARGO_MANIFEST_DIR": "aws-lc-sys-0.44.0.crate",
1748+ "CARGO_MANIFEST_DIR": "aws-lc-sys-0.43.0.crate",
17441749 "CARGO_PKG_AUTHORS": "AWS-LC",
17451750 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
17461751 "CARGO_PKG_HOMEPAGE": "",
@@ -1748,9 +1753,9 @@ cargo.rust_binary(
17481753 "CARGO_PKG_README": "README.md",
17491754 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
17501755 "CARGO_PKG_RUST_VERSION": "1.71.0",
1751- "CARGO_PKG_VERSION": "0.44.0",
1756+ "CARGO_PKG_VERSION": "0.43.0",
17521757 "CARGO_PKG_VERSION_MAJOR": "0",
1753- "CARGO_PKG_VERSION_MINOR": "44",
1758+ "CARGO_PKG_VERSION_MINOR": "43",
17541759 "CARGO_PKG_VERSION_PATCH": "0",
17551760 "CARGO_PKG_VERSION_PRE": "",
17561761 },
@@ -1766,11 +1771,11 @@ cargo.rust_binary(
17661771 )
17671772
17681773 buildscript_run(
1769- name = "aws-lc-sys-0.44-build-script-main-run",
1774+ name = "aws-lc-sys-0.43-build-script-main-run",
17701775 package_name = "aws-lc-sys",
1771- buildscript_rule = ":aws-lc-sys-0.44-build-script-main",
1776+ buildscript_rule = ":aws-lc-sys-0.43-build-script-main",
17721777 env = {
1773- "CARGO_MANIFEST_LINKS": "aws_lc_0_44_0",
1778+ "CARGO_MANIFEST_LINKS": "aws_lc_0_43_0",
17741779 "CARGO_PKG_AUTHORS": "AWS-LC",
17751780 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
17761781 "CARGO_PKG_HOMEPAGE": "",
@@ -1778,12 +1783,13 @@ buildscript_run(
17781783 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
17791784 "CARGO_PKG_RUST_VERSION": "1.71.0",
17801785 "CARGO_PKG_VERSION_MAJOR": "0",
1781- "CARGO_PKG_VERSION_MINOR": "44",
1786+ "CARGO_PKG_VERSION_MINOR": "43",
17821787 "CARGO_PKG_VERSION_PATCH": "0",
17831788 "CARGO_PKG_VERSION_PRE": "",
1789+ "OPT_LEVEL": "2",
17841790 },
17851791 features = ["prebuilt-nasm"],
1786- version = "0.44.0",
1792+ version = "0.43.0",
17871793 )
17881794
17891795 http_archive(
@@ -1878,40 +1884,6 @@ cargo.rust_library(
18781884 ],
18791885 )
18801886
1881-http_archive(
1882- name = "base16ct-1.0.0.crate",
1883- sha256 = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6",
1884- strip_prefix = "base16ct-1.0.0",
1885- urls = ["https://static.crates.io/crates/base16ct/1.0.0/download"],
1886- visibility = [],
1887-)
1888-
1889-cargo.rust_library(
1890- name = "base16ct-1",
1891- srcs = [":base16ct-1.0.0.crate"],
1892- crate = "base16ct",
1893- crate_root = "base16ct-1.0.0.crate/src/lib.rs",
1894- edition = "2024",
1895- env = {
1896- "CARGO_BIN_NAME": "base16ct",
1897- "CARGO_CRATE_NAME": "base16ct",
1898- "CARGO_MANIFEST_DIR": "base16ct-1.0.0.crate",
1899- "CARGO_PKG_AUTHORS": "RustCrypto Developers",
1900- "CARGO_PKG_DESCRIPTION": "Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids\nany usages of data-dependent branches/LUTs and thereby provides portable\n\"best effort\" constant-time operation and embedded-friendly no_std support\n",
1901- "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/base16ct",
1902- "CARGO_PKG_NAME": "base16ct",
1903- "CARGO_PKG_README": "README.md",
1904- "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",
1905- "CARGO_PKG_RUST_VERSION": "1.85",
1906- "CARGO_PKG_VERSION": "1.0.0",
1907- "CARGO_PKG_VERSION_MAJOR": "1",
1908- "CARGO_PKG_VERSION_MINOR": "0",
1909- "CARGO_PKG_VERSION_PATCH": "0",
1910- "CARGO_PKG_VERSION_PRE": "",
1911- },
1912- visibility = [],
1913-)
1914-
19151887 http_archive(
19161888 name = "base32-0.5.1.crate",
19171889 sha256 = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076",
@@ -2123,6 +2095,7 @@ buildscript_run(
21232095 "CARGO_PKG_VERSION_MINOR": "70",
21242096 "CARGO_PKG_VERSION_PATCH": "1",
21252097 "CARGO_PKG_VERSION_PRE": "",
2098+ "OPT_LEVEL": "2",
21262099 },
21272100 features = [
21282101 "default",
@@ -2242,6 +2215,7 @@ buildscript_run(
22422215 "CARGO_PKG_VERSION_MINOR": "72",
22432216 "CARGO_PKG_VERSION_PATCH": "1",
22442217 "CARGO_PKG_VERSION_PRE": "",
2218+ "OPT_LEVEL": "2",
22452219 },
22462220 features = [
22472221 "default",
@@ -2323,23 +2297,23 @@ cargo.rust_library(
23232297 )
23242298
23252299 http_archive(
2326- name = "blake3-1.8.7.crate",
2327- sha256 = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae",
2328- strip_prefix = "blake3-1.8.7",
2329- urls = ["https://static.crates.io/crates/blake3/1.8.7/download"],
2300+ name = "blake3-1.8.5.crate",
2301+ sha256 = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce",
2302+ strip_prefix = "blake3-1.8.5",
2303+ urls = ["https://static.crates.io/crates/blake3/1.8.5/download"],
23302304 visibility = [],
23312305 )
23322306
23332307 cargo.rust_library(
23342308 name = "blake3-1",
2335- srcs = [":blake3-1.8.7.crate"],
2309+ srcs = [":blake3-1.8.5.crate"],
23362310 crate = "blake3",
2337- crate_root = "blake3-1.8.7.crate/src/lib.rs",
2311+ crate_root = "blake3-1.8.5.crate/src/lib.rs",
23382312 edition = "2024",
23392313 env = {
23402314 "CARGO_BIN_NAME": "blake3",
23412315 "CARGO_CRATE_NAME": "blake3",
2342- "CARGO_MANIFEST_DIR": "blake3-1.8.7.crate",
2316+ "CARGO_MANIFEST_DIR": "blake3-1.8.5.crate",
23432317 "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves",
23442318 "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function",
23452319 "CARGO_PKG_HOMEPAGE": "",
@@ -2347,10 +2321,10 @@ cargo.rust_library(
23472321 "CARGO_PKG_README": "README.md",
23482322 "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3",
23492323 "CARGO_PKG_RUST_VERSION": "",
2350- "CARGO_PKG_VERSION": "1.8.7",
2324+ "CARGO_PKG_VERSION": "1.8.5",
23512325 "CARGO_PKG_VERSION_MAJOR": "1",
23522326 "CARGO_PKG_VERSION_MINOR": "8",
2353- "CARGO_PKG_VERSION_PATCH": "7",
2327+ "CARGO_PKG_VERSION_PATCH": "5",
23542328 "CARGO_PKG_VERSION_PRE": "",
23552329 "OUT_DIR": "$(location :blake3-1-build-script-run[out_dir])",
23562330 },
@@ -2369,6 +2343,7 @@ cargo.rust_library(
23692343 rustc_flags = ["@$(location :blake3-1-build-script-run[rustc_flags])"],
23702344 visibility = [],
23712345 deps = [
2346+ ":arrayref-0.3",
23722347 ":arrayvec-0.7",
23732348 ":cfg-if-1",
23742349 ":constant_time_eq-0.4",
@@ -2377,14 +2352,14 @@ cargo.rust_library(
23772352
23782353 cargo.rust_binary(
23792354 name = "blake3-1-build-script-build",
2380- srcs = [":blake3-1.8.7.crate"],
2355+ srcs = [":blake3-1.8.5.crate"],
23812356 crate = "build_script_build",
2382- crate_root = "blake3-1.8.7.crate/build.rs",
2357+ crate_root = "blake3-1.8.5.crate/build.rs",
23832358 edition = "2024",
23842359 env = {
23852360 "CARGO_BIN_NAME": "build-script-build",
23862361 "CARGO_CRATE_NAME": "build_script_build",
2387- "CARGO_MANIFEST_DIR": "blake3-1.8.7.crate",
2362+ "CARGO_MANIFEST_DIR": "blake3-1.8.5.crate",
23882363 "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves",
23892364 "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function",
23902365 "CARGO_PKG_HOMEPAGE": "",
@@ -2392,10 +2367,10 @@ cargo.rust_binary(
23922367 "CARGO_PKG_README": "README.md",
23932368 "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3",
23942369 "CARGO_PKG_RUST_VERSION": "",
2395- "CARGO_PKG_VERSION": "1.8.7",
2370+ "CARGO_PKG_VERSION": "1.8.5",
23962371 "CARGO_PKG_VERSION_MAJOR": "1",
23972372 "CARGO_PKG_VERSION_MINOR": "8",
2398- "CARGO_PKG_VERSION_PATCH": "7",
2373+ "CARGO_PKG_VERSION_PATCH": "5",
23992374 "CARGO_PKG_VERSION_PRE": "",
24002375 },
24012376 features = [
@@ -2419,14 +2394,15 @@ buildscript_run(
24192394 "CARGO_PKG_RUST_VERSION": "",
24202395 "CARGO_PKG_VERSION_MAJOR": "1",
24212396 "CARGO_PKG_VERSION_MINOR": "8",
2422- "CARGO_PKG_VERSION_PATCH": "7",
2397+ "CARGO_PKG_VERSION_PATCH": "5",
24232398 "CARGO_PKG_VERSION_PRE": "",
2399+ "OPT_LEVEL": "2",
24242400 },
24252401 features = [
24262402 "default",
24272403 "std",
24282404 ],
2429- version = "1.8.7",
2405+ version = "1.8.5",
24302406 )
24312407
24322408 http_archive(
@@ -2698,33 +2674,33 @@ cargo.rust_library(
26982674 )
26992675
27002676 http_archive(
2701- name = "bytemuck_derive-1.12.0.crate",
2702- sha256 = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f",
2703- strip_prefix = "bytemuck_derive-1.12.0",
2704- urls = ["https://static.crates.io/crates/bytemuck_derive/1.12.0/download"],
2677+ name = "bytemuck_derive-1.11.0.crate",
2678+ sha256 = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5",
2679+ strip_prefix = "bytemuck_derive-1.11.0",
2680+ urls = ["https://static.crates.io/crates/bytemuck_derive/1.11.0/download"],
27052681 visibility = [],
27062682 )
27072683
27082684 cargo.rust_library(
27092685 name = "bytemuck_derive-1",
2710- srcs = [":bytemuck_derive-1.12.0.crate"],
2686+ srcs = [":bytemuck_derive-1.11.0.crate"],
27112687 crate = "bytemuck_derive",
2712- crate_root = "bytemuck_derive-1.12.0.crate/src/lib.rs",
2688+ crate_root = "bytemuck_derive-1.11.0.crate/src/lib.rs",
27132689 edition = "2018",
27142690 env = {
27152691 "CARGO_BIN_NAME": "bytemuck_derive",
27162692 "CARGO_CRATE_NAME": "bytemuck_derive",
2717- "CARGO_MANIFEST_DIR": "bytemuck_derive-1.12.0.crate",
2693+ "CARGO_MANIFEST_DIR": "bytemuck_derive-1.11.0.crate",
27182694 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",
27192695 "CARGO_PKG_DESCRIPTION": "derive proc-macros for `bytemuck`",
27202696 "CARGO_PKG_HOMEPAGE": "",
27212697 "CARGO_PKG_NAME": "bytemuck_derive",
27222698 "CARGO_PKG_README": "README.md",
27232699 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/bytemuck",
2724- "CARGO_PKG_RUST_VERSION": "1.71",
2725- "CARGO_PKG_VERSION": "1.12.0",
2700+ "CARGO_PKG_RUST_VERSION": "1.68",
2701+ "CARGO_PKG_VERSION": "1.11.0",
27262702 "CARGO_PKG_VERSION_MAJOR": "1",
2727- "CARGO_PKG_VERSION_MINOR": "12",
2703+ "CARGO_PKG_VERSION_MINOR": "11",
27282704 "CARGO_PKG_VERSION_PATCH": "0",
27292705 "CARGO_PKG_VERSION_PRE": "",
27302706 },
@@ -2733,7 +2709,7 @@ cargo.rust_library(
27332709 deps = [
27342710 ":proc-macro2-1",
27352711 ":quote-1",
2736- ":syn-3",
2712+ ":syn-2",
27372713 ],
27382714 )
27392715
@@ -3023,34 +2999,34 @@ alias(
30232999 )
30243000
30253001 http_archive(
3026- name = "cc-1.4.4.crate",
3027- sha256 = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273",
3028- strip_prefix = "cc-1.4.4",
3029- urls = ["https://static.crates.io/crates/cc/1.4.4/download"],
3002+ name = "cc-1.4.0.crate",
3003+ sha256 = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9",
3004+ strip_prefix = "cc-1.4.0",
3005+ urls = ["https://static.crates.io/crates/cc/1.4.0/download"],
30303006 visibility = [],
30313007 )
30323008
30333009 cargo.rust_library(
30343010 name = "cc-1",
3035- srcs = [":cc-1.4.4.crate"],
3011+ srcs = [":cc-1.4.0.crate"],
30363012 crate = "cc",
3037- crate_root = "cc-1.4.4.crate/src/lib.rs",
3038- edition = "2021",
3013+ crate_root = "cc-1.4.0.crate/src/lib.rs",
3014+ edition = "2018",
30393015 env = {
30403016 "CARGO_BIN_NAME": "cc",
30413017 "CARGO_CRATE_NAME": "cc",
3042- "CARGO_MANIFEST_DIR": "cc-1.4.4.crate",
3043- "CARGO_PKG_AUTHORS": "",
3018+ "CARGO_MANIFEST_DIR": "cc-1.4.0.crate",
3019+ "CARGO_PKG_AUTHORS": "Alex Crichton <alex@alexcrichton.com>",
30443020 "CARGO_PKG_DESCRIPTION": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n",
30453021 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/cc-rs",
30463022 "CARGO_PKG_NAME": "cc",
30473023 "CARGO_PKG_README": "README.md",
30483024 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/cc-rs",
3049- "CARGO_PKG_RUST_VERSION": "1.65.0",
3050- "CARGO_PKG_VERSION": "1.4.4",
3025+ "CARGO_PKG_RUST_VERSION": "1.63",
3026+ "CARGO_PKG_VERSION": "1.4.0",
30513027 "CARGO_PKG_VERSION_MAJOR": "1",
30523028 "CARGO_PKG_VERSION_MINOR": "4",
3053- "CARGO_PKG_VERSION_PATCH": "4",
3029+ "CARGO_PKG_VERSION_PATCH": "0",
30543030 "CARGO_PKG_VERSION_PRE": "",
30553031 },
30563032 features = ["parallel"],
@@ -3236,23 +3212,23 @@ cargo.rust_library(
32363212 )
32373213
32383214 http_archive(
3239- name = "chacha20-0.10.2.crate",
3240- sha256 = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06",
3241- strip_prefix = "chacha20-0.10.2",
3242- urls = ["https://static.crates.io/crates/chacha20/0.10.2/download"],
3215+ name = "chacha20-0.10.1.crate",
3216+ sha256 = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81",
3217+ strip_prefix = "chacha20-0.10.1",
3218+ urls = ["https://static.crates.io/crates/chacha20/0.10.1/download"],
32433219 visibility = [],
32443220 )
32453221
32463222 cargo.rust_library(
32473223 name = "chacha20-0.10",
3248- srcs = [":chacha20-0.10.2.crate"],
3224+ srcs = [":chacha20-0.10.1.crate"],
32493225 crate = "chacha20",
3250- crate_root = "chacha20-0.10.2.crate/src/lib.rs",
3226+ crate_root = "chacha20-0.10.1.crate/src/lib.rs",
32513227 edition = "2024",
32523228 env = {
32533229 "CARGO_BIN_NAME": "chacha20",
32543230 "CARGO_CRATE_NAME": "chacha20",
3255- "CARGO_MANIFEST_DIR": "chacha20-0.10.2.crate",
3231+ "CARGO_MANIFEST_DIR": "chacha20-0.10.1.crate",
32563232 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
32573233 "CARGO_PKG_DESCRIPTION": "The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits\nfrom the RustCrypto `cipher` crate, with optional architecture-specific\nhardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12,\nXChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional\nrand_core-compatible RNGs based on those ciphers.\n",
32583234 "CARGO_PKG_HOMEPAGE": "",
@@ -3260,10 +3236,10 @@ cargo.rust_library(
32603236 "CARGO_PKG_README": "README.md",
32613237 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/stream-ciphers",
32623238 "CARGO_PKG_RUST_VERSION": "1.85",
3263- "CARGO_PKG_VERSION": "0.10.2",
3239+ "CARGO_PKG_VERSION": "0.10.1",
32643240 "CARGO_PKG_VERSION_MAJOR": "0",
32653241 "CARGO_PKG_VERSION_MINOR": "10",
3266- "CARGO_PKG_VERSION_PATCH": "2",
3242+ "CARGO_PKG_VERSION_PATCH": "1",
32673243 "CARGO_PKG_VERSION_PRE": "",
32683244 },
32693245 features = ["rng"],
@@ -3438,6 +3414,7 @@ buildscript_run(
34383414 "CARGO_PKG_VERSION_MINOR": "9",
34393415 "CARGO_PKG_VERSION_PATCH": "1",
34403416 "CARGO_PKG_VERSION_PRE": "",
3417+ "OPT_LEVEL": "2",
34413418 },
34423419 features = [
34433420 "clang_10_0",
@@ -4326,23 +4303,23 @@ cargo.rust_library(
43264303 )
43274304
43284305 http_archive(
4329- name = "cpufeatures-0.3.1.crate",
4330- sha256 = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566",
4331- strip_prefix = "cpufeatures-0.3.1",
4332- urls = ["https://static.crates.io/crates/cpufeatures/0.3.1/download"],
4306+ name = "cpufeatures-0.3.0.crate",
4307+ sha256 = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201",
4308+ strip_prefix = "cpufeatures-0.3.0",
4309+ urls = ["https://static.crates.io/crates/cpufeatures/0.3.0/download"],
43334310 visibility = [],
43344311 )
43354312
43364313 cargo.rust_library(
43374314 name = "cpufeatures-0.3",
4338- srcs = [":cpufeatures-0.3.1.crate"],
4315+ srcs = [":cpufeatures-0.3.0.crate"],
43394316 crate = "cpufeatures",
4340- crate_root = "cpufeatures-0.3.1.crate/src/lib.rs",
4317+ crate_root = "cpufeatures-0.3.0.crate/src/lib.rs",
43414318 edition = "2024",
43424319 env = {
43434320 "CARGO_BIN_NAME": "cpufeatures",
43444321 "CARGO_CRATE_NAME": "cpufeatures",
4345- "CARGO_MANIFEST_DIR": "cpufeatures-0.3.1.crate",
4322+ "CARGO_MANIFEST_DIR": "cpufeatures-0.3.0.crate",
43464323 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
43474324 "CARGO_PKG_DESCRIPTION": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,\nwith no_std support and support for mobile targets including Android and iOS\n",
43484325 "CARGO_PKG_HOMEPAGE": "",
@@ -4350,10 +4327,10 @@ cargo.rust_library(
43504327 "CARGO_PKG_README": "README.md",
43514328 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/utils",
43524329 "CARGO_PKG_RUST_VERSION": "1.85",
4353- "CARGO_PKG_VERSION": "0.3.1",
4330+ "CARGO_PKG_VERSION": "0.3.0",
43544331 "CARGO_PKG_VERSION_MAJOR": "0",
43554332 "CARGO_PKG_VERSION_MINOR": "3",
4356- "CARGO_PKG_VERSION_PATCH": "1",
4333+ "CARGO_PKG_VERSION_PATCH": "0",
43574334 "CARGO_PKG_VERSION_PRE": "",
43584335 },
43594336 platform = {
@@ -4453,6 +4430,7 @@ buildscript_run(
44534430 "CARGO_PKG_VERSION_MINOR": "5",
44544431 "CARGO_PKG_VERSION_PATCH": "1",
44554432 "CARGO_PKG_VERSION_PRE": "",
4433+ "OPT_LEVEL": "2",
44564434 },
44574435 features = [
44584436 "default",
@@ -4623,6 +4601,7 @@ buildscript_run(
46234601 "CARGO_PKG_VERSION_MINOR": "8",
46244602 "CARGO_PKG_VERSION_PATCH": "7",
46254603 "CARGO_PKG_VERSION_PRE": "",
4604+ "OPT_LEVEL": "2",
46264605 },
46274606 features = [
46284607 "default",
@@ -4719,6 +4698,7 @@ buildscript_run(
47194698 "CARGO_PKG_VERSION_MINOR": "9",
47204699 "CARGO_PKG_VERSION_PATCH": "20",
47214700 "CARGO_PKG_VERSION_PRE": "",
4701+ "OPT_LEVEL": "2",
47224702 },
47234703 features = [
47244704 "alloc",
@@ -4813,6 +4793,7 @@ buildscript_run(
48134793 "CARGO_PKG_VERSION_MINOR": "8",
48144794 "CARGO_PKG_VERSION_PATCH": "22",
48154795 "CARGO_PKG_VERSION_PRE": "",
4796+ "OPT_LEVEL": "2",
48164797 },
48174798 features = [
48184799 "default",
@@ -4822,23 +4803,23 @@ buildscript_run(
48224803 )
48234804
48244805 http_archive(
4825- name = "crypto-common-0.1.7.crate",
4826- sha256 = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a",
4827- strip_prefix = "crypto-common-0.1.7",
4828- urls = ["https://static.crates.io/crates/crypto-common/0.1.7/download"],
4806+ name = "crypto-common-0.1.6.crate",
4807+ sha256 = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3",
4808+ strip_prefix = "crypto-common-0.1.6",
4809+ urls = ["https://static.crates.io/crates/crypto-common/0.1.6/download"],
48294810 visibility = [],
48304811 )
48314812
48324813 cargo.rust_library(
48334814 name = "crypto-common-0.1",
4834- srcs = [":crypto-common-0.1.7.crate"],
4815+ srcs = [":crypto-common-0.1.6.crate"],
48354816 crate = "crypto_common",
4836- crate_root = "crypto-common-0.1.7.crate/src/lib.rs",
4817+ crate_root = "crypto-common-0.1.6.crate/src/lib.rs",
48374818 edition = "2018",
48384819 env = {
48394820 "CARGO_BIN_NAME": "crypto_common",
48404821 "CARGO_CRATE_NAME": "crypto_common",
4841- "CARGO_MANIFEST_DIR": "crypto-common-0.1.7.crate",
4822+ "CARGO_MANIFEST_DIR": "crypto-common-0.1.6.crate",
48424823 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
48434824 "CARGO_PKG_DESCRIPTION": "Common cryptographic traits",
48444825 "CARGO_PKG_HOMEPAGE": "",
@@ -4846,10 +4827,10 @@ cargo.rust_library(
48464827 "CARGO_PKG_README": "README.md",
48474828 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits",
48484829 "CARGO_PKG_RUST_VERSION": "",
4849- "CARGO_PKG_VERSION": "0.1.7",
4830+ "CARGO_PKG_VERSION": "0.1.6",
48504831 "CARGO_PKG_VERSION_MAJOR": "0",
48514832 "CARGO_PKG_VERSION_MINOR": "1",
4852- "CARGO_PKG_VERSION_PATCH": "7",
4833+ "CARGO_PKG_VERSION_PATCH": "6",
48534834 "CARGO_PKG_VERSION_PRE": "",
48544835 },
48554836 features = ["std"],
@@ -5122,6 +5103,7 @@ buildscript_run(
51225103 "CARGO_PKG_VERSION_MINOR": "0",
51235104 "CARGO_PKG_VERSION_PATCH": "0",
51245105 "CARGO_PKG_VERSION_PRE": "pre.1",
5106+ "OPT_LEVEL": "2",
51255107 },
51265108 features = [
51275109 "alloc",
@@ -5475,34 +5457,34 @@ cargo.rust_library(
54755457 )
54765458
54775459 http_archive(
5478- name = "data-encoding-2.11.1.crate",
5479- sha256 = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06",
5480- strip_prefix = "data-encoding-2.11.1",
5481- urls = ["https://static.crates.io/crates/data-encoding/2.11.1/download"],
5460+ name = "data-encoding-2.11.0.crate",
5461+ sha256 = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8",
5462+ strip_prefix = "data-encoding-2.11.0",
5463+ urls = ["https://static.crates.io/crates/data-encoding/2.11.0/download"],
54825464 visibility = [],
54835465 )
54845466
54855467 cargo.rust_library(
54865468 name = "data-encoding-2",
5487- srcs = [":data-encoding-2.11.1.crate"],
5469+ srcs = [":data-encoding-2.11.0.crate"],
54885470 crate = "data_encoding",
5489- crate_root = "data-encoding-2.11.1.crate/src/lib.rs",
5471+ crate_root = "data-encoding-2.11.0.crate/src/lib.rs",
54905472 edition = "2018",
54915473 env = {
54925474 "CARGO_BIN_NAME": "data_encoding",
54935475 "CARGO_CRATE_NAME": "data_encoding",
5494- "CARGO_MANIFEST_DIR": "data-encoding-2.11.1.crate",
5495- "CARGO_PKG_AUTHORS": "",
5476+ "CARGO_MANIFEST_DIR": "data-encoding-2.11.0.crate",
5477+ "CARGO_PKG_AUTHORS": "Julien Cretin <git@ia0.eu>",
54965478 "CARGO_PKG_DESCRIPTION": "Efficient and customizable data-encoding functions like base64, base32, and hex",
54975479 "CARGO_PKG_HOMEPAGE": "",
54985480 "CARGO_PKG_NAME": "data-encoding",
54995481 "CARGO_PKG_README": "README.md",
55005482 "CARGO_PKG_REPOSITORY": "https://github.com/ia0/data-encoding",
55015483 "CARGO_PKG_RUST_VERSION": "1.48",
5502- "CARGO_PKG_VERSION": "2.11.1",
5484+ "CARGO_PKG_VERSION": "2.11.0",
55035485 "CARGO_PKG_VERSION_MAJOR": "2",
55045486 "CARGO_PKG_VERSION_MINOR": "11",
5505- "CARGO_PKG_VERSION_PATCH": "1",
5487+ "CARGO_PKG_VERSION_PATCH": "0",
55065488 "CARGO_PKG_VERSION_PRE": "",
55075489 },
55085490 features = [
@@ -6301,23 +6283,23 @@ cargo.rust_library(
63016283 )
63026284
63036285 http_archive(
6304- name = "ed25519-3.0.0.crate",
6305- sha256 = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a",
6306- strip_prefix = "ed25519-3.0.0",
6307- urls = ["https://static.crates.io/crates/ed25519/3.0.0/download"],
6286+ name = "ed25519-3.0.0-rc.4.crate",
6287+ sha256 = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890",
6288+ strip_prefix = "ed25519-3.0.0-rc.4",
6289+ urls = ["https://static.crates.io/crates/ed25519/3.0.0-rc.4/download"],
63086290 visibility = [],
63096291 )
63106292
63116293 cargo.rust_library(
63126294 name = "ed25519-3",
6313- srcs = [":ed25519-3.0.0.crate"],
6295+ srcs = [":ed25519-3.0.0-rc.4.crate"],
63146296 crate = "ed25519",
6315- crate_root = "ed25519-3.0.0.crate/src/lib.rs",
6297+ crate_root = "ed25519-3.0.0-rc.4.crate/src/lib.rs",
63166298 edition = "2024",
63176299 env = {
63186300 "CARGO_BIN_NAME": "ed25519",
63196301 "CARGO_CRATE_NAME": "ed25519",
6320- "CARGO_MANIFEST_DIR": "ed25519-3.0.0.crate",
6302+ "CARGO_MANIFEST_DIR": "ed25519-3.0.0-rc.4.crate",
63216303 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
63226304 "CARGO_PKG_DESCRIPTION": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n",
63236305 "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/signatures/tree/master/ed25519",
@@ -6325,11 +6307,11 @@ cargo.rust_library(
63256307 "CARGO_PKG_README": "README.md",
63266308 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/signatures",
63276309 "CARGO_PKG_RUST_VERSION": "1.85",
6328- "CARGO_PKG_VERSION": "3.0.0",
6310+ "CARGO_PKG_VERSION": "3.0.0-rc.4",
63296311 "CARGO_PKG_VERSION_MAJOR": "3",
63306312 "CARGO_PKG_VERSION_MINOR": "0",
63316313 "CARGO_PKG_VERSION_PATCH": "0",
6332- "CARGO_PKG_VERSION_PRE": "",
6314+ "CARGO_PKG_VERSION_PRE": "rc.4",
63336315 },
63346316 features = [
63356317 "alloc",
@@ -6340,7 +6322,7 @@ cargo.rust_library(
63406322 visibility = [],
63416323 deps = [
63426324 ":pkcs8-0.11",
6343- ":serdect-0.4",
6325+ ":serde-1",
63446326 ":signature-3",
63456327 ],
63466328 )
@@ -6577,33 +6559,33 @@ cargo.rust_library(
65776559 )
65786560
65796561 http_archive(
6580- name = "either-1.18.0.crate",
6581- sha256 = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34",
6582- strip_prefix = "either-1.18.0",
6583- urls = ["https://static.crates.io/crates/either/1.18.0/download"],
6562+ name = "either-1.17.0.crate",
6563+ sha256 = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d",
6564+ strip_prefix = "either-1.17.0",
6565+ urls = ["https://static.crates.io/crates/either/1.17.0/download"],
65846566 visibility = [],
65856567 )
65866568
65876569 cargo.rust_library(
65886570 name = "either-1",
6589- srcs = [":either-1.18.0.crate"],
6571+ srcs = [":either-1.17.0.crate"],
65906572 crate = "either",
6591- crate_root = "either-1.18.0.crate/src/lib.rs",
6573+ crate_root = "either-1.17.0.crate/src/lib.rs",
65926574 edition = "2021",
65936575 env = {
65946576 "CARGO_BIN_NAME": "either",
65956577 "CARGO_CRATE_NAME": "either",
6596- "CARGO_MANIFEST_DIR": "either-1.18.0.crate",
6578+ "CARGO_MANIFEST_DIR": "either-1.17.0.crate",
65976579 "CARGO_PKG_AUTHORS": "",
65986580 "CARGO_PKG_DESCRIPTION": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n",
65996581 "CARGO_PKG_HOMEPAGE": "",
66006582 "CARGO_PKG_NAME": "either",
6601- "CARGO_PKG_README": "README.md",
6583+ "CARGO_PKG_README": "README-crates.io.md",
66026584 "CARGO_PKG_REPOSITORY": "https://github.com/rayon-rs/either",
66036585 "CARGO_PKG_RUST_VERSION": "1.63.0",
6604- "CARGO_PKG_VERSION": "1.18.0",
6586+ "CARGO_PKG_VERSION": "1.17.0",
66056587 "CARGO_PKG_VERSION_MAJOR": "1",
6606- "CARGO_PKG_VERSION_MINOR": "18",
6588+ "CARGO_PKG_VERSION_MINOR": "17",
66076589 "CARGO_PKG_VERSION_PATCH": "0",
66086590 "CARGO_PKG_VERSION_PRE": "",
66096591 },
@@ -6727,34 +6709,34 @@ cargo.rust_library(
67276709 )
67286710
67296711 http_archive(
6730- name = "enum-assoc-1.4.1.crate",
6731- sha256 = "0590c4a94da3372e83493b956755a6e2266830b6e4e3b101afe66e3f39477b91",
6732- strip_prefix = "enum-assoc-1.4.1",
6733- urls = ["https://static.crates.io/crates/enum-assoc/1.4.1/download"],
6712+ name = "enum-assoc-1.3.0.crate",
6713+ sha256 = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7",
6714+ strip_prefix = "enum-assoc-1.3.0",
6715+ urls = ["https://static.crates.io/crates/enum-assoc/1.3.0/download"],
67346716 visibility = [],
67356717 )
67366718
67376719 cargo.rust_library(
67386720 name = "enum-assoc-1",
6739- srcs = [":enum-assoc-1.4.1.crate"],
6721+ srcs = [":enum-assoc-1.3.0.crate"],
67406722 crate = "enum_assoc",
6741- crate_root = "enum-assoc-1.4.1.crate/src/lib.rs",
6742- edition = "2024",
6723+ crate_root = "enum-assoc-1.3.0.crate/src/lib.rs",
6724+ edition = "2021",
67436725 env = {
67446726 "CARGO_BIN_NAME": "enum_assoc",
67456727 "CARGO_CRATE_NAME": "enum_assoc",
6746- "CARGO_MANIFEST_DIR": "enum-assoc-1.4.1.crate",
6728+ "CARGO_MANIFEST_DIR": "enum-assoc-1.3.0.crate",
67476729 "CARGO_PKG_AUTHORS": "Griffin O'Neill <gsoneill1003@gmail.com>",
6748- "CARGO_PKG_DESCRIPTION": "Procedural macro to associate constants with enum variants.\r\n",
6730+ "CARGO_PKG_DESCRIPTION": "Procedural macro to associate constants with enum variants.\n",
67496731 "CARGO_PKG_HOMEPAGE": "https://github.com/Eolu/enum-assoc",
67506732 "CARGO_PKG_NAME": "enum-assoc",
67516733 "CARGO_PKG_README": "README.md",
67526734 "CARGO_PKG_REPOSITORY": "https://github.com/Eolu/enum-assoc",
67536735 "CARGO_PKG_RUST_VERSION": "",
6754- "CARGO_PKG_VERSION": "1.4.1",
6736+ "CARGO_PKG_VERSION": "1.3.0",
67556737 "CARGO_PKG_VERSION_MAJOR": "1",
6756- "CARGO_PKG_VERSION_MINOR": "4",
6757- "CARGO_PKG_VERSION_PATCH": "1",
6738+ "CARGO_PKG_VERSION_MINOR": "3",
6739+ "CARGO_PKG_VERSION_PATCH": "0",
67586740 "CARGO_PKG_VERSION_PRE": "",
67596741 },
67606742 proc_macro = True,
@@ -6762,7 +6744,7 @@ cargo.rust_library(
67626744 deps = [
67636745 ":proc-macro2-1",
67646746 ":quote-1",
6765- ":syn-3",
6747+ ":syn-2",
67666748 ],
67676749 )
67686750
@@ -7318,34 +7300,34 @@ cargo.rust_library(
73187300 )
73197301
73207302 http_archive(
7321- name = "find-msvc-tools-0.1.11.crate",
7322- sha256 = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890",
7323- strip_prefix = "find-msvc-tools-0.1.11",
7324- urls = ["https://static.crates.io/crates/find-msvc-tools/0.1.11/download"],
7303+ name = "find-msvc-tools-0.1.9.crate",
7304+ sha256 = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582",
7305+ strip_prefix = "find-msvc-tools-0.1.9",
7306+ urls = ["https://static.crates.io/crates/find-msvc-tools/0.1.9/download"],
73257307 visibility = [],
73267308 )
73277309
73287310 cargo.rust_library(
73297311 name = "find-msvc-tools-0.1",
7330- srcs = [":find-msvc-tools-0.1.11.crate"],
7312+ srcs = [":find-msvc-tools-0.1.9.crate"],
73317313 crate = "find_msvc_tools",
7332- crate_root = "find-msvc-tools-0.1.11.crate/src/lib.rs",
7333- edition = "2021",
7314+ crate_root = "find-msvc-tools-0.1.9.crate/src/lib.rs",
7315+ edition = "2018",
73347316 env = {
73357317 "CARGO_BIN_NAME": "find_msvc_tools",
73367318 "CARGO_CRATE_NAME": "find_msvc_tools",
7337- "CARGO_MANIFEST_DIR": "find-msvc-tools-0.1.11.crate",
7319+ "CARGO_MANIFEST_DIR": "find-msvc-tools-0.1.9.crate",
73387320 "CARGO_PKG_AUTHORS": "",
73397321 "CARGO_PKG_DESCRIPTION": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces",
73407322 "CARGO_PKG_HOMEPAGE": "",
73417323 "CARGO_PKG_NAME": "find-msvc-tools",
73427324 "CARGO_PKG_README": "README.md",
73437325 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/cc-rs",
7344- "CARGO_PKG_RUST_VERSION": "1.65.0",
7345- "CARGO_PKG_VERSION": "0.1.11",
7326+ "CARGO_PKG_RUST_VERSION": "1.63",
7327+ "CARGO_PKG_VERSION": "0.1.9",
73467328 "CARGO_PKG_VERSION_MAJOR": "0",
73477329 "CARGO_PKG_VERSION_MINOR": "1",
7348- "CARGO_PKG_VERSION_PATCH": "11",
7330+ "CARGO_PKG_VERSION_PATCH": "9",
73497331 "CARGO_PKG_VERSION_PRE": "",
73507332 },
73517333 visibility = [],
@@ -7780,23 +7762,23 @@ alias(
77807762 )
77817763
77827764 http_archive(
7783- name = "futures-0.3.34.crate",
7784- sha256 = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3",
7785- strip_prefix = "futures-0.3.34",
7786- urls = ["https://static.crates.io/crates/futures/0.3.34/download"],
7765+ name = "futures-0.3.33.crate",
7766+ sha256 = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218",
7767+ strip_prefix = "futures-0.3.33",
7768+ urls = ["https://static.crates.io/crates/futures/0.3.33/download"],
77877769 visibility = [],
77887770 )
77897771
77907772 cargo.rust_library(
77917773 name = "futures-0.3",
7792- srcs = [":futures-0.3.34.crate"],
7774+ srcs = [":futures-0.3.33.crate"],
77937775 crate = "futures",
7794- crate_root = "futures-0.3.34.crate/src/lib.rs",
7776+ crate_root = "futures-0.3.33.crate/src/lib.rs",
77957777 edition = "2018",
77967778 env = {
77977779 "CARGO_BIN_NAME": "futures",
77987780 "CARGO_CRATE_NAME": "futures",
7799- "CARGO_MANIFEST_DIR": "futures-0.3.34.crate",
7781+ "CARGO_MANIFEST_DIR": "futures-0.3.33.crate",
78007782 "CARGO_PKG_AUTHORS": "",
78017783 "CARGO_PKG_DESCRIPTION": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n",
78027784 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -7804,10 +7786,10 @@ cargo.rust_library(
78047786 "CARGO_PKG_README": "README.md",
78057787 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
78067788 "CARGO_PKG_RUST_VERSION": "1.71",
7807- "CARGO_PKG_VERSION": "0.3.34",
7789+ "CARGO_PKG_VERSION": "0.3.33",
78087790 "CARGO_PKG_VERSION_MAJOR": "0",
78097791 "CARGO_PKG_VERSION_MINOR": "3",
7810- "CARGO_PKG_VERSION_PATCH": "34",
7792+ "CARGO_PKG_VERSION_PATCH": "33",
78117793 "CARGO_PKG_VERSION_PRE": "",
78127794 },
78137795 features = [
@@ -7873,23 +7855,23 @@ cargo.rust_library(
78737855 )
78747856
78757857 http_archive(
7876- name = "futures-channel-0.3.34.crate",
7877- sha256 = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4",
7878- strip_prefix = "futures-channel-0.3.34",
7879- urls = ["https://static.crates.io/crates/futures-channel/0.3.34/download"],
7858+ name = "futures-channel-0.3.33.crate",
7859+ sha256 = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae",
7860+ strip_prefix = "futures-channel-0.3.33",
7861+ urls = ["https://static.crates.io/crates/futures-channel/0.3.33/download"],
78807862 visibility = [],
78817863 )
78827864
78837865 cargo.rust_library(
78847866 name = "futures-channel-0.3",
7885- srcs = [":futures-channel-0.3.34.crate"],
7867+ srcs = [":futures-channel-0.3.33.crate"],
78867868 crate = "futures_channel",
7887- crate_root = "futures-channel-0.3.34.crate/src/lib.rs",
7869+ crate_root = "futures-channel-0.3.33.crate/src/lib.rs",
78887870 edition = "2018",
78897871 env = {
78907872 "CARGO_BIN_NAME": "futures_channel",
78917873 "CARGO_CRATE_NAME": "futures_channel",
7892- "CARGO_MANIFEST_DIR": "futures-channel-0.3.34.crate",
7874+ "CARGO_MANIFEST_DIR": "futures-channel-0.3.33.crate",
78937875 "CARGO_PKG_AUTHORS": "",
78947876 "CARGO_PKG_DESCRIPTION": "Channels for asynchronous communication using futures-rs.\n",
78957877 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -7897,10 +7879,10 @@ cargo.rust_library(
78977879 "CARGO_PKG_README": "README.md",
78987880 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
78997881 "CARGO_PKG_RUST_VERSION": "1.71",
7900- "CARGO_PKG_VERSION": "0.3.34",
7882+ "CARGO_PKG_VERSION": "0.3.33",
79017883 "CARGO_PKG_VERSION_MAJOR": "0",
79027884 "CARGO_PKG_VERSION_MINOR": "3",
7903- "CARGO_PKG_VERSION_PATCH": "34",
7885+ "CARGO_PKG_VERSION_PATCH": "33",
79047886 "CARGO_PKG_VERSION_PRE": "",
79057887 },
79067888 features = [
@@ -7964,23 +7946,23 @@ cargo.rust_library(
79647946 )
79657947
79667948 http_archive(
7967- name = "futures-core-0.3.34.crate",
7968- sha256 = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e",
7969- strip_prefix = "futures-core-0.3.34",
7970- urls = ["https://static.crates.io/crates/futures-core/0.3.34/download"],
7949+ name = "futures-core-0.3.33.crate",
7950+ sha256 = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7",
7951+ strip_prefix = "futures-core-0.3.33",
7952+ urls = ["https://static.crates.io/crates/futures-core/0.3.33/download"],
79717953 visibility = [],
79727954 )
79737955
79747956 cargo.rust_library(
79757957 name = "futures-core-0.3",
7976- srcs = [":futures-core-0.3.34.crate"],
7958+ srcs = [":futures-core-0.3.33.crate"],
79777959 crate = "futures_core",
7978- crate_root = "futures-core-0.3.34.crate/src/lib.rs",
7960+ crate_root = "futures-core-0.3.33.crate/src/lib.rs",
79797961 edition = "2018",
79807962 env = {
79817963 "CARGO_BIN_NAME": "futures_core",
79827964 "CARGO_CRATE_NAME": "futures_core",
7983- "CARGO_MANIFEST_DIR": "futures-core-0.3.34.crate",
7965+ "CARGO_MANIFEST_DIR": "futures-core-0.3.33.crate",
79847966 "CARGO_PKG_AUTHORS": "",
79857967 "CARGO_PKG_DESCRIPTION": "The core traits and types in for the `futures` library.\n",
79867968 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -7988,10 +7970,10 @@ cargo.rust_library(
79887970 "CARGO_PKG_README": "README.md",
79897971 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
79907972 "CARGO_PKG_RUST_VERSION": "1.36",
7991- "CARGO_PKG_VERSION": "0.3.34",
7973+ "CARGO_PKG_VERSION": "0.3.33",
79927974 "CARGO_PKG_VERSION_MAJOR": "0",
79937975 "CARGO_PKG_VERSION_MINOR": "3",
7994- "CARGO_PKG_VERSION_PATCH": "34",
7976+ "CARGO_PKG_VERSION_PATCH": "33",
79957977 "CARGO_PKG_VERSION_PRE": "",
79967978 },
79977979 features = [
@@ -8003,23 +7985,23 @@ cargo.rust_library(
80037985 )
80047986
80057987 http_archive(
8006- name = "futures-executor-0.3.34.crate",
8007- sha256 = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432",
8008- strip_prefix = "futures-executor-0.3.34",
8009- urls = ["https://static.crates.io/crates/futures-executor/0.3.34/download"],
7988+ name = "futures-executor-0.3.33.crate",
7989+ sha256 = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458",
7990+ strip_prefix = "futures-executor-0.3.33",
7991+ urls = ["https://static.crates.io/crates/futures-executor/0.3.33/download"],
80107992 visibility = [],
80117993 )
80127994
80137995 cargo.rust_library(
80147996 name = "futures-executor-0.3",
8015- srcs = [":futures-executor-0.3.34.crate"],
7997+ srcs = [":futures-executor-0.3.33.crate"],
80167998 crate = "futures_executor",
8017- crate_root = "futures-executor-0.3.34.crate/src/lib.rs",
7999+ crate_root = "futures-executor-0.3.33.crate/src/lib.rs",
80188000 edition = "2018",
80198001 env = {
80208002 "CARGO_BIN_NAME": "futures_executor",
80218003 "CARGO_CRATE_NAME": "futures_executor",
8022- "CARGO_MANIFEST_DIR": "futures-executor-0.3.34.crate",
8004+ "CARGO_MANIFEST_DIR": "futures-executor-0.3.33.crate",
80238005 "CARGO_PKG_AUTHORS": "",
80248006 "CARGO_PKG_DESCRIPTION": "Executors for asynchronous tasks based on the futures-rs library.\n",
80258007 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8027,10 +8009,10 @@ cargo.rust_library(
80278009 "CARGO_PKG_README": "README.md",
80288010 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
80298011 "CARGO_PKG_RUST_VERSION": "1.71",
8030- "CARGO_PKG_VERSION": "0.3.34",
8012+ "CARGO_PKG_VERSION": "0.3.33",
80318013 "CARGO_PKG_VERSION_MAJOR": "0",
80328014 "CARGO_PKG_VERSION_MINOR": "3",
8033- "CARGO_PKG_VERSION_PATCH": "34",
8015+ "CARGO_PKG_VERSION_PATCH": "33",
80348016 "CARGO_PKG_VERSION_PRE": "",
80358017 },
80368018 features = ["std"],
@@ -8043,23 +8025,23 @@ cargo.rust_library(
80438025 )
80448026
80458027 http_archive(
8046- name = "futures-io-0.3.34.crate",
8047- sha256 = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed",
8048- strip_prefix = "futures-io-0.3.34",
8049- urls = ["https://static.crates.io/crates/futures-io/0.3.34/download"],
8028+ name = "futures-io-0.3.33.crate",
8029+ sha256 = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a",
8030+ strip_prefix = "futures-io-0.3.33",
8031+ urls = ["https://static.crates.io/crates/futures-io/0.3.33/download"],
80508032 visibility = [],
80518033 )
80528034
80538035 cargo.rust_library(
80548036 name = "futures-io-0.3",
8055- srcs = [":futures-io-0.3.34.crate"],
8037+ srcs = [":futures-io-0.3.33.crate"],
80568038 crate = "futures_io",
8057- crate_root = "futures-io-0.3.34.crate/src/lib.rs",
8039+ crate_root = "futures-io-0.3.33.crate/src/lib.rs",
80588040 edition = "2018",
80598041 env = {
80608042 "CARGO_BIN_NAME": "futures_io",
80618043 "CARGO_CRATE_NAME": "futures_io",
8062- "CARGO_MANIFEST_DIR": "futures-io-0.3.34.crate",
8044+ "CARGO_MANIFEST_DIR": "futures-io-0.3.33.crate",
80638045 "CARGO_PKG_AUTHORS": "",
80648046 "CARGO_PKG_DESCRIPTION": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n",
80658047 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8067,10 +8049,10 @@ cargo.rust_library(
80678049 "CARGO_PKG_README": "README.md",
80688050 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
80698051 "CARGO_PKG_RUST_VERSION": "1.36",
8070- "CARGO_PKG_VERSION": "0.3.34",
8052+ "CARGO_PKG_VERSION": "0.3.33",
80718053 "CARGO_PKG_VERSION_MAJOR": "0",
80728054 "CARGO_PKG_VERSION_MINOR": "3",
8073- "CARGO_PKG_VERSION_PATCH": "34",
8055+ "CARGO_PKG_VERSION_PATCH": "33",
80748056 "CARGO_PKG_VERSION_PRE": "",
80758057 },
80768058 features = [
@@ -8131,23 +8113,23 @@ cargo.rust_library(
81318113 )
81328114
81338115 http_archive(
8134- name = "futures-macro-0.3.34.crate",
8135- sha256 = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44",
8136- strip_prefix = "futures-macro-0.3.34",
8137- urls = ["https://static.crates.io/crates/futures-macro/0.3.34/download"],
8116+ name = "futures-macro-0.3.33.crate",
8117+ sha256 = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b",
8118+ strip_prefix = "futures-macro-0.3.33",
8119+ urls = ["https://static.crates.io/crates/futures-macro/0.3.33/download"],
81388120 visibility = [],
81398121 )
81408122
81418123 cargo.rust_library(
81428124 name = "futures-macro-0.3",
8143- srcs = [":futures-macro-0.3.34.crate"],
8125+ srcs = [":futures-macro-0.3.33.crate"],
81448126 crate = "futures_macro",
8145- crate_root = "futures-macro-0.3.34.crate/src/lib.rs",
8127+ crate_root = "futures-macro-0.3.33.crate/src/lib.rs",
81468128 edition = "2018",
81478129 env = {
81488130 "CARGO_BIN_NAME": "futures_macro",
81498131 "CARGO_CRATE_NAME": "futures_macro",
8150- "CARGO_MANIFEST_DIR": "futures-macro-0.3.34.crate",
8132+ "CARGO_MANIFEST_DIR": "futures-macro-0.3.33.crate",
81518133 "CARGO_PKG_AUTHORS": "",
81528134 "CARGO_PKG_DESCRIPTION": "The futures-rs procedural macro implementations.\n",
81538135 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8155,10 +8137,10 @@ cargo.rust_library(
81558137 "CARGO_PKG_README": "",
81568138 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
81578139 "CARGO_PKG_RUST_VERSION": "1.71",
8158- "CARGO_PKG_VERSION": "0.3.34",
8140+ "CARGO_PKG_VERSION": "0.3.33",
81598141 "CARGO_PKG_VERSION_MAJOR": "0",
81608142 "CARGO_PKG_VERSION_MINOR": "3",
8161- "CARGO_PKG_VERSION_PATCH": "34",
8143+ "CARGO_PKG_VERSION_PATCH": "33",
81628144 "CARGO_PKG_VERSION_PRE": "",
81638145 },
81648146 proc_macro = True,
@@ -8166,28 +8148,28 @@ cargo.rust_library(
81668148 deps = [
81678149 ":proc-macro2-1",
81688150 ":quote-1",
8169- ":syn-3",
8151+ ":syn-2",
81708152 ],
81718153 )
81728154
81738155 http_archive(
8174- name = "futures-sink-0.3.34.crate",
8175- sha256 = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d",
8176- strip_prefix = "futures-sink-0.3.34",
8177- urls = ["https://static.crates.io/crates/futures-sink/0.3.34/download"],
8156+ name = "futures-sink-0.3.33.crate",
8157+ sha256 = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307",
8158+ strip_prefix = "futures-sink-0.3.33",
8159+ urls = ["https://static.crates.io/crates/futures-sink/0.3.33/download"],
81788160 visibility = [],
81798161 )
81808162
81818163 cargo.rust_library(
81828164 name = "futures-sink-0.3",
8183- srcs = [":futures-sink-0.3.34.crate"],
8165+ srcs = [":futures-sink-0.3.33.crate"],
81848166 crate = "futures_sink",
8185- crate_root = "futures-sink-0.3.34.crate/src/lib.rs",
8167+ crate_root = "futures-sink-0.3.33.crate/src/lib.rs",
81868168 edition = "2018",
81878169 env = {
81888170 "CARGO_BIN_NAME": "futures_sink",
81898171 "CARGO_CRATE_NAME": "futures_sink",
8190- "CARGO_MANIFEST_DIR": "futures-sink-0.3.34.crate",
8172+ "CARGO_MANIFEST_DIR": "futures-sink-0.3.33.crate",
81918173 "CARGO_PKG_AUTHORS": "",
81928174 "CARGO_PKG_DESCRIPTION": "The asynchronous `Sink` trait for the futures-rs library.\n",
81938175 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8195,10 +8177,10 @@ cargo.rust_library(
81958177 "CARGO_PKG_README": "README.md",
81968178 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
81978179 "CARGO_PKG_RUST_VERSION": "1.36",
8198- "CARGO_PKG_VERSION": "0.3.34",
8180+ "CARGO_PKG_VERSION": "0.3.33",
81998181 "CARGO_PKG_VERSION_MAJOR": "0",
82008182 "CARGO_PKG_VERSION_MINOR": "3",
8201- "CARGO_PKG_VERSION_PATCH": "34",
8183+ "CARGO_PKG_VERSION_PATCH": "33",
82028184 "CARGO_PKG_VERSION_PRE": "",
82038185 },
82048186 features = [
@@ -8210,23 +8192,23 @@ cargo.rust_library(
82108192 )
82118193
82128194 http_archive(
8213- name = "futures-task-0.3.34.crate",
8214- sha256 = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd",
8215- strip_prefix = "futures-task-0.3.34",
8216- urls = ["https://static.crates.io/crates/futures-task/0.3.34/download"],
8195+ name = "futures-task-0.3.33.crate",
8196+ sha256 = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109",
8197+ strip_prefix = "futures-task-0.3.33",
8198+ urls = ["https://static.crates.io/crates/futures-task/0.3.33/download"],
82178199 visibility = [],
82188200 )
82198201
82208202 cargo.rust_library(
82218203 name = "futures-task-0.3",
8222- srcs = [":futures-task-0.3.34.crate"],
8204+ srcs = [":futures-task-0.3.33.crate"],
82238205 crate = "futures_task",
8224- crate_root = "futures-task-0.3.34.crate/src/lib.rs",
8206+ crate_root = "futures-task-0.3.33.crate/src/lib.rs",
82258207 edition = "2018",
82268208 env = {
82278209 "CARGO_BIN_NAME": "futures_task",
82288210 "CARGO_CRATE_NAME": "futures_task",
8229- "CARGO_MANIFEST_DIR": "futures-task-0.3.34.crate",
8211+ "CARGO_MANIFEST_DIR": "futures-task-0.3.33.crate",
82308212 "CARGO_PKG_AUTHORS": "",
82318213 "CARGO_PKG_DESCRIPTION": "Tools for working with tasks.\n",
82328214 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8234,10 +8216,10 @@ cargo.rust_library(
82348216 "CARGO_PKG_README": "README.md",
82358217 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
82368218 "CARGO_PKG_RUST_VERSION": "1.71",
8237- "CARGO_PKG_VERSION": "0.3.34",
8219+ "CARGO_PKG_VERSION": "0.3.33",
82388220 "CARGO_PKG_VERSION_MAJOR": "0",
82398221 "CARGO_PKG_VERSION_MINOR": "3",
8240- "CARGO_PKG_VERSION_PATCH": "34",
8222+ "CARGO_PKG_VERSION_PATCH": "33",
82418223 "CARGO_PKG_VERSION_PRE": "",
82428224 },
82438225 features = [
@@ -8248,23 +8230,23 @@ cargo.rust_library(
82488230 )
82498231
82508232 http_archive(
8251- name = "futures-util-0.3.34.crate",
8252- sha256 = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc",
8253- strip_prefix = "futures-util-0.3.34",
8254- urls = ["https://static.crates.io/crates/futures-util/0.3.34/download"],
8233+ name = "futures-util-0.3.33.crate",
8234+ sha256 = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa",
8235+ strip_prefix = "futures-util-0.3.33",
8236+ urls = ["https://static.crates.io/crates/futures-util/0.3.33/download"],
82558237 visibility = [],
82568238 )
82578239
82588240 cargo.rust_library(
82598241 name = "futures-util-0.3",
8260- srcs = [":futures-util-0.3.34.crate"],
8242+ srcs = [":futures-util-0.3.33.crate"],
82618243 crate = "futures_util",
8262- crate_root = "futures-util-0.3.34.crate/src/lib.rs",
8244+ crate_root = "futures-util-0.3.33.crate/src/lib.rs",
82638245 edition = "2018",
82648246 env = {
82658247 "CARGO_BIN_NAME": "futures_util",
82668248 "CARGO_CRATE_NAME": "futures_util",
8267- "CARGO_MANIFEST_DIR": "futures-util-0.3.34.crate",
8249+ "CARGO_MANIFEST_DIR": "futures-util-0.3.33.crate",
82688250 "CARGO_PKG_AUTHORS": "",
82698251 "CARGO_PKG_DESCRIPTION": "Common utilities and extension traits for the futures-rs library.\n",
82708252 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8272,10 +8254,10 @@ cargo.rust_library(
82728254 "CARGO_PKG_README": "README.md",
82738255 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
82748256 "CARGO_PKG_RUST_VERSION": "1.71",
8275- "CARGO_PKG_VERSION": "0.3.34",
8257+ "CARGO_PKG_VERSION": "0.3.33",
82768258 "CARGO_PKG_VERSION_MAJOR": "0",
82778259 "CARGO_PKG_VERSION_MINOR": "3",
8278- "CARGO_PKG_VERSION_PATCH": "34",
8260+ "CARGO_PKG_VERSION_PATCH": "33",
82798261 "CARGO_PKG_VERSION_PRE": "",
82808262 },
82818263 features = [
@@ -8309,23 +8291,23 @@ cargo.rust_library(
83098291 )
83108292
83118293 http_archive(
8312- name = "generic-array-0.14.7.crate",
8313- sha256 = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a",
8314- strip_prefix = "generic-array-0.14.7",
8315- urls = ["https://static.crates.io/crates/generic-array/0.14.7/download"],
8294+ name = "generic-array-0.14.9.crate",
8295+ sha256 = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2",
8296+ strip_prefix = "generic-array-0.14.9",
8297+ urls = ["https://static.crates.io/crates/generic-array/0.14.9/download"],
83168298 visibility = [],
83178299 )
83188300
83198301 cargo.rust_library(
83208302 name = "generic-array-0.14",
8321- srcs = [":generic-array-0.14.7.crate"],
8303+ srcs = [":generic-array-0.14.9.crate"],
83228304 crate = "generic_array",
8323- crate_root = "generic-array-0.14.7.crate/src/lib.rs",
8305+ crate_root = "generic-array-0.14.9.crate/src/lib.rs",
83248306 edition = "2015",
83258307 env = {
83268308 "CARGO_BIN_NAME": "generic_array",
83278309 "CARGO_CRATE_NAME": "generic_array",
8328- "CARGO_MANIFEST_DIR": "generic-array-0.14.7.crate",
8310+ "CARGO_MANIFEST_DIR": "generic-array-0.14.9.crate",
83298311 "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>",
83308312 "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays",
83318313 "CARGO_PKG_HOMEPAGE": "",
@@ -8333,10 +8315,10 @@ cargo.rust_library(
83338315 "CARGO_PKG_README": "README.md",
83348316 "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git",
83358317 "CARGO_PKG_RUST_VERSION": "",
8336- "CARGO_PKG_VERSION": "0.14.7",
8318+ "CARGO_PKG_VERSION": "0.14.9",
83378319 "CARGO_PKG_VERSION_MAJOR": "0",
83388320 "CARGO_PKG_VERSION_MINOR": "14",
8339- "CARGO_PKG_VERSION_PATCH": "7",
8321+ "CARGO_PKG_VERSION_PATCH": "9",
83408322 "CARGO_PKG_VERSION_PRE": "",
83418323 "OUT_DIR": "$(location :generic-array-0.14-build-script-run[out_dir])",
83428324 },
@@ -8348,14 +8330,14 @@ cargo.rust_library(
83488330
83498331 cargo.rust_binary(
83508332 name = "generic-array-0.14-build-script-build",
8351- srcs = [":generic-array-0.14.7.crate"],
8333+ srcs = [":generic-array-0.14.9.crate"],
83528334 crate = "build_script_build",
8353- crate_root = "generic-array-0.14.7.crate/build.rs",
8335+ crate_root = "generic-array-0.14.9.crate/build.rs",
83548336 edition = "2015",
83558337 env = {
83568338 "CARGO_BIN_NAME": "build-script-build",
83578339 "CARGO_CRATE_NAME": "build_script_build",
8358- "CARGO_MANIFEST_DIR": "generic-array-0.14.7.crate",
8340+ "CARGO_MANIFEST_DIR": "generic-array-0.14.9.crate",
83598341 "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>",
83608342 "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays",
83618343 "CARGO_PKG_HOMEPAGE": "",
@@ -8363,10 +8345,10 @@ cargo.rust_binary(
83638345 "CARGO_PKG_README": "README.md",
83648346 "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git",
83658347 "CARGO_PKG_RUST_VERSION": "",
8366- "CARGO_PKG_VERSION": "0.14.7",
8348+ "CARGO_PKG_VERSION": "0.14.9",
83678349 "CARGO_PKG_VERSION_MAJOR": "0",
83688350 "CARGO_PKG_VERSION_MINOR": "14",
8369- "CARGO_PKG_VERSION_PATCH": "7",
8351+ "CARGO_PKG_VERSION_PATCH": "9",
83708352 "CARGO_PKG_VERSION_PRE": "",
83718353 },
83728354 features = ["more_lengths"],
@@ -8387,11 +8369,12 @@ buildscript_run(
83878369 "CARGO_PKG_RUST_VERSION": "",
83888370 "CARGO_PKG_VERSION_MAJOR": "0",
83898371 "CARGO_PKG_VERSION_MINOR": "14",
8390- "CARGO_PKG_VERSION_PATCH": "7",
8372+ "CARGO_PKG_VERSION_PATCH": "9",
83918373 "CARGO_PKG_VERSION_PRE": "",
8374+ "OPT_LEVEL": "2",
83928375 },
83938376 features = ["more_lengths"],
8394- version = "0.14.7",
8377+ version = "0.14.9",
83958378 )
83968379
83978380 http_archive(
@@ -8551,6 +8534,7 @@ buildscript_run(
85518534 "CARGO_PKG_VERSION_MINOR": "3",
85528535 "CARGO_PKG_VERSION_PATCH": "4",
85538536 "CARGO_PKG_VERSION_PRE": "",
8537+ "OPT_LEVEL": "2",
85548538 },
85558539 features = ["std"],
85568540 version = "0.3.4",
@@ -8646,6 +8630,7 @@ buildscript_run(
86468630 "CARGO_PKG_VERSION_MINOR": "4",
86478631 "CARGO_PKG_VERSION_PATCH": "3",
86488632 "CARGO_PKG_VERSION_PRE": "",
8633+ "OPT_LEVEL": "2",
86498634 },
86508635 features = [
86518636 "std",
@@ -9001,6 +8986,7 @@ buildscript_run(
90018986 "CARGO_PKG_VERSION_MINOR": "32",
90028987 "CARGO_PKG_VERSION_PATCH": "3",
90038988 "CARGO_PKG_VERSION_PRE": "",
8989+ "OPT_LEVEL": "2",
90048990 },
90058991 features = [
90068992 "default",
@@ -9125,6 +9111,7 @@ buildscript_run(
91259111 "CARGO_PKG_VERSION_MINOR": "5",
91269112 "CARGO_PKG_VERSION_PATCH": "0",
91279113 "CARGO_PKG_VERSION_PRE": "",
9114+ "OPT_LEVEL": "2",
91289115 },
91299116 features = [
91309117 "default",
@@ -9215,6 +9202,7 @@ buildscript_run(
92159202 "CARGO_PKG_VERSION_MINOR": "7",
92169203 "CARGO_PKG_VERSION_PATCH": "1",
92179204 "CARGO_PKG_VERSION_PRE": "",
9205+ "OPT_LEVEL": "2",
92189206 },
92199207 version = "0.7.1",
92209208 )
@@ -9298,28 +9286,29 @@ buildscript_run(
92989286 "CARGO_PKG_VERSION_MINOR": "6",
92999287 "CARGO_PKG_VERSION_PATCH": "1",
93009288 "CARGO_PKG_VERSION_PRE": "",
9289+ "OPT_LEVEL": "2",
93019290 },
93029291 version = "0.6.1",
93039292 )
93049293
93059294 http_archive(
9306- name = "h2-0.4.19.crate",
9307- sha256 = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16",
9308- strip_prefix = "h2-0.4.19",
9309- urls = ["https://static.crates.io/crates/h2/0.4.19/download"],
9295+ name = "h2-0.4.15.crate",
9296+ sha256 = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155",
9297+ strip_prefix = "h2-0.4.15",
9298+ urls = ["https://static.crates.io/crates/h2/0.4.15/download"],
93109299 visibility = [],
93119300 )
93129301
93139302 cargo.rust_library(
93149303 name = "h2-0.4",
9315- srcs = [":h2-0.4.19.crate"],
9304+ srcs = [":h2-0.4.15.crate"],
93169305 crate = "h2",
9317- crate_root = "h2-0.4.19.crate/src/lib.rs",
9306+ crate_root = "h2-0.4.15.crate/src/lib.rs",
93189307 edition = "2021",
93199308 env = {
93209309 "CARGO_BIN_NAME": "h2",
93219310 "CARGO_CRATE_NAME": "h2",
9322- "CARGO_MANIFEST_DIR": "h2-0.4.19.crate",
9311+ "CARGO_MANIFEST_DIR": "h2-0.4.15.crate",
93239312 "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>",
93249313 "CARGO_PKG_DESCRIPTION": "An HTTP/2 client and server",
93259314 "CARGO_PKG_HOMEPAGE": "",
@@ -9327,10 +9316,10 @@ cargo.rust_library(
93279316 "CARGO_PKG_README": "README.md",
93289317 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/h2",
93299318 "CARGO_PKG_RUST_VERSION": "1.63",
9330- "CARGO_PKG_VERSION": "0.4.19",
9319+ "CARGO_PKG_VERSION": "0.4.15",
93319320 "CARGO_PKG_VERSION_MAJOR": "0",
93329321 "CARGO_PKG_VERSION_MINOR": "4",
9333- "CARGO_PKG_VERSION_PATCH": "19",
9322+ "CARGO_PKG_VERSION_PATCH": "15",
93349323 "CARGO_PKG_VERSION_PRE": "",
93359324 },
93369325 features = ["stream"],
@@ -9653,6 +9642,7 @@ buildscript_run(
96539642 "CARGO_PKG_VERSION_MINOR": "7",
96549643 "CARGO_PKG_VERSION_PATCH": "17",
96559644 "CARGO_PKG_VERSION_PRE": "",
9645+ "OPT_LEVEL": "2",
96569646 },
96579647 features = [
96589648 "atomic-polyfill",
@@ -9940,23 +9930,23 @@ cargo.rust_library(
99409930 )
99419931
99429932 http_archive(
9943- name = "http-body-util-0.1.5.crate",
9944- sha256 = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c",
9945- strip_prefix = "http-body-util-0.1.5",
9946- urls = ["https://static.crates.io/crates/http-body-util/0.1.5/download"],
9933+ name = "http-body-util-0.1.4.crate",
9934+ sha256 = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2",
9935+ strip_prefix = "http-body-util-0.1.4",
9936+ urls = ["https://static.crates.io/crates/http-body-util/0.1.4/download"],
99479937 visibility = [],
99489938 )
99499939
99509940 cargo.rust_library(
99519941 name = "http-body-util-0.1",
9952- srcs = [":http-body-util-0.1.5.crate"],
9942+ srcs = [":http-body-util-0.1.4.crate"],
99539943 crate = "http_body_util",
9954- crate_root = "http-body-util-0.1.5.crate/src/lib.rs",
9944+ crate_root = "http-body-util-0.1.4.crate/src/lib.rs",
99559945 edition = "2018",
99569946 env = {
99579947 "CARGO_BIN_NAME": "http_body_util",
99589948 "CARGO_CRATE_NAME": "http_body_util",
9959- "CARGO_MANIFEST_DIR": "http-body-util-0.1.5.crate",
9949+ "CARGO_MANIFEST_DIR": "http-body-util-0.1.4.crate",
99609950 "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Lucio Franco <luciofranco14@gmail.com>:Sean McArthur <sean@seanmonstar.com>",
99619951 "CARGO_PKG_DESCRIPTION": "Combinators and adapters for HTTP request or response bodies.\n",
99629952 "CARGO_PKG_HOMEPAGE": "",
@@ -9964,10 +9954,10 @@ cargo.rust_library(
99649954 "CARGO_PKG_README": "README.md",
99659955 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/http-body",
99669956 "CARGO_PKG_RUST_VERSION": "1.61",
9967- "CARGO_PKG_VERSION": "0.1.5",
9957+ "CARGO_PKG_VERSION": "0.1.4",
99689958 "CARGO_PKG_VERSION_MAJOR": "0",
99699959 "CARGO_PKG_VERSION_MINOR": "1",
9970- "CARGO_PKG_VERSION_PATCH": "5",
9960+ "CARGO_PKG_VERSION_PATCH": "4",
99719961 "CARGO_PKG_VERSION_PRE": "",
99729962 },
99739963 features = ["default"],
@@ -10066,6 +10056,7 @@ buildscript_run(
1006610056 "CARGO_PKG_VERSION_MINOR": "10",
1006710057 "CARGO_PKG_VERSION_PATCH": "1",
1006810058 "CARGO_PKG_VERSION_PRE": "",
10059+ "OPT_LEVEL": "2",
1006910060 },
1007010061 features = [
1007110062 "default",
@@ -10181,23 +10172,23 @@ cargo.rust_library(
1018110172 )
1018210173
1018310174 http_archive(
10184- name = "hybrid-array-0.4.14.crate",
10185- sha256 = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b",
10186- strip_prefix = "hybrid-array-0.4.14",
10187- urls = ["https://static.crates.io/crates/hybrid-array/0.4.14/download"],
10175+ name = "hybrid-array-0.4.13.crate",
10176+ sha256 = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c",
10177+ strip_prefix = "hybrid-array-0.4.13",
10178+ urls = ["https://static.crates.io/crates/hybrid-array/0.4.13/download"],
1018810179 visibility = [],
1018910180 )
1019010181
1019110182 cargo.rust_library(
1019210183 name = "hybrid-array-0.4",
10193- srcs = [":hybrid-array-0.4.14.crate"],
10184+ srcs = [":hybrid-array-0.4.13.crate"],
1019410185 crate = "hybrid_array",
10195- crate_root = "hybrid-array-0.4.14.crate/src/lib.rs",
10186+ crate_root = "hybrid-array-0.4.13.crate/src/lib.rs",
1019610187 edition = "2024",
1019710188 env = {
1019810189 "CARGO_BIN_NAME": "hybrid_array",
1019910190 "CARGO_CRATE_NAME": "hybrid_array",
10200- "CARGO_MANIFEST_DIR": "hybrid-array-0.4.14.crate",
10191+ "CARGO_MANIFEST_DIR": "hybrid-array-0.4.13.crate",
1020110192 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
1020210193 "CARGO_PKG_DESCRIPTION": "Hybrid typenum-based and const generic array types designed to provide the\nflexibility of typenum-based expressions while also allowing interoperability\nand a transition path to const generics\n",
1020310194 "CARGO_PKG_HOMEPAGE": "",
@@ -10205,10 +10196,10 @@ cargo.rust_library(
1020510196 "CARGO_PKG_README": "README.md",
1020610197 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/hybrid-array",
1020710198 "CARGO_PKG_RUST_VERSION": "1.85",
10208- "CARGO_PKG_VERSION": "0.4.14",
10199+ "CARGO_PKG_VERSION": "0.4.13",
1020910200 "CARGO_PKG_VERSION_MAJOR": "0",
1021010201 "CARGO_PKG_VERSION_MINOR": "4",
10211- "CARGO_PKG_VERSION_PATCH": "14",
10202+ "CARGO_PKG_VERSION_PATCH": "13",
1021210203 "CARGO_PKG_VERSION_PRE": "",
1021310204 },
1021410205 visibility = [],
@@ -10216,23 +10207,23 @@ cargo.rust_library(
1021610207 )
1021710208
1021810209 http_archive(
10219- name = "hyper-1.11.1.crate",
10220- sha256 = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43",
10221- strip_prefix = "hyper-1.11.1",
10222- urls = ["https://static.crates.io/crates/hyper/1.11.1/download"],
10210+ name = "hyper-1.11.0.crate",
10211+ sha256 = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72",
10212+ strip_prefix = "hyper-1.11.0",
10213+ urls = ["https://static.crates.io/crates/hyper/1.11.0/download"],
1022310214 visibility = [],
1022410215 )
1022510216
1022610217 cargo.rust_library(
1022710218 name = "hyper-1",
10228- srcs = [":hyper-1.11.1.crate"],
10219+ srcs = [":hyper-1.11.0.crate"],
1022910220 crate = "hyper",
10230- crate_root = "hyper-1.11.1.crate/src/lib.rs",
10221+ crate_root = "hyper-1.11.0.crate/src/lib.rs",
1023110222 edition = "2021",
1023210223 env = {
1023310224 "CARGO_BIN_NAME": "hyper",
1023410225 "CARGO_CRATE_NAME": "hyper",
10235- "CARGO_MANIFEST_DIR": "hyper-1.11.1.crate",
10226+ "CARGO_MANIFEST_DIR": "hyper-1.11.0.crate",
1023610227 "CARGO_PKG_AUTHORS": "Sean McArthur <sean@seanmonstar.com>",
1023710228 "CARGO_PKG_DESCRIPTION": "A protective and efficient HTTP library for all.",
1023810229 "CARGO_PKG_HOMEPAGE": "https://hyper.rs",
@@ -10240,10 +10231,10 @@ cargo.rust_library(
1024010231 "CARGO_PKG_README": "README.md",
1024110232 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/hyper",
1024210233 "CARGO_PKG_RUST_VERSION": "1.63",
10243- "CARGO_PKG_VERSION": "1.11.1",
10234+ "CARGO_PKG_VERSION": "1.11.0",
1024410235 "CARGO_PKG_VERSION_MAJOR": "1",
1024510236 "CARGO_PKG_VERSION_MINOR": "11",
10246- "CARGO_PKG_VERSION_PATCH": "1",
10237+ "CARGO_PKG_VERSION_PATCH": "0",
1024710238 "CARGO_PKG_VERSION_PRE": "",
1024810239 },
1024910240 features = [
@@ -10380,33 +10371,33 @@ cargo.rust_library(
1038010371 )
1038110372
1038210373 http_archive(
10383- name = "icu_collections-2.3.0.crate",
10384- sha256 = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513",
10385- strip_prefix = "icu_collections-2.3.0",
10386- urls = ["https://static.crates.io/crates/icu_collections/2.3.0/download"],
10374+ name = "icu_collections-2.2.0.crate",
10375+ sha256 = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c",
10376+ strip_prefix = "icu_collections-2.2.0",
10377+ urls = ["https://static.crates.io/crates/icu_collections/2.2.0/download"],
1038710378 visibility = [],
1038810379 )
1038910380
1039010381 cargo.rust_library(
1039110382 name = "icu_collections-2",
10392- srcs = [":icu_collections-2.3.0.crate"],
10383+ srcs = [":icu_collections-2.2.0.crate"],
1039310384 crate = "icu_collections",
10394- crate_root = "icu_collections-2.3.0.crate/src/lib.rs",
10395- edition = "2024",
10385+ crate_root = "icu_collections-2.2.0.crate/src/lib.rs",
10386+ edition = "2021",
1039610387 env = {
1039710388 "CARGO_BIN_NAME": "icu_collections",
1039810389 "CARGO_CRATE_NAME": "icu_collections",
10399- "CARGO_MANIFEST_DIR": "icu_collections-2.3.0.crate",
10390+ "CARGO_MANIFEST_DIR": "icu_collections-2.2.0.crate",
1040010391 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1040110392 "CARGO_PKG_DESCRIPTION": "Collection of API for use in ICU libraries.",
1040210393 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1040310394 "CARGO_PKG_NAME": "icu_collections",
1040410395 "CARGO_PKG_README": "README.md",
1040510396 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10406- "CARGO_PKG_RUST_VERSION": "1.88",
10407- "CARGO_PKG_VERSION": "2.3.0",
10397+ "CARGO_PKG_RUST_VERSION": "1.86",
10398+ "CARGO_PKG_VERSION": "2.2.0",
1040810399 "CARGO_PKG_VERSION_MAJOR": "2",
10409- "CARGO_PKG_VERSION_MINOR": "3",
10400+ "CARGO_PKG_VERSION_MINOR": "2",
1041010401 "CARGO_PKG_VERSION_PATCH": "0",
1041110402 "CARGO_PKG_VERSION_PRE": "",
1041210403 },
@@ -10422,33 +10413,33 @@ cargo.rust_library(
1042210413 )
1042310414
1042410415 http_archive(
10425- name = "icu_locale_core-2.3.0.crate",
10426- sha256 = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb",
10427- strip_prefix = "icu_locale_core-2.3.0",
10428- urls = ["https://static.crates.io/crates/icu_locale_core/2.3.0/download"],
10416+ name = "icu_locale_core-2.2.0.crate",
10417+ sha256 = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29",
10418+ strip_prefix = "icu_locale_core-2.2.0",
10419+ urls = ["https://static.crates.io/crates/icu_locale_core/2.2.0/download"],
1042910420 visibility = [],
1043010421 )
1043110422
1043210423 cargo.rust_library(
1043310424 name = "icu_locale_core-2",
10434- srcs = [":icu_locale_core-2.3.0.crate"],
10425+ srcs = [":icu_locale_core-2.2.0.crate"],
1043510426 crate = "icu_locale_core",
10436- crate_root = "icu_locale_core-2.3.0.crate/src/lib.rs",
10437- edition = "2024",
10427+ crate_root = "icu_locale_core-2.2.0.crate/src/lib.rs",
10428+ edition = "2021",
1043810429 env = {
1043910430 "CARGO_BIN_NAME": "icu_locale_core",
1044010431 "CARGO_CRATE_NAME": "icu_locale_core",
10441- "CARGO_MANIFEST_DIR": "icu_locale_core-2.3.0.crate",
10432+ "CARGO_MANIFEST_DIR": "icu_locale_core-2.2.0.crate",
1044210433 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1044310434 "CARGO_PKG_DESCRIPTION": "API for managing Unicode Language and Locale Identifiers",
1044410435 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1044510436 "CARGO_PKG_NAME": "icu_locale_core",
1044610437 "CARGO_PKG_README": "README.md",
1044710438 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10448- "CARGO_PKG_RUST_VERSION": "1.88",
10449- "CARGO_PKG_VERSION": "2.3.0",
10439+ "CARGO_PKG_RUST_VERSION": "1.86",
10440+ "CARGO_PKG_VERSION": "2.2.0",
1045010441 "CARGO_PKG_VERSION_MAJOR": "2",
10451- "CARGO_PKG_VERSION_MINOR": "3",
10442+ "CARGO_PKG_VERSION_MINOR": "2",
1045210443 "CARGO_PKG_VERSION_PATCH": "0",
1045310444 "CARGO_PKG_VERSION_PRE": "",
1045410445 },
@@ -10464,33 +10455,33 @@ cargo.rust_library(
1046410455 )
1046510456
1046610457 http_archive(
10467- name = "icu_normalizer-2.3.0.crate",
10468- sha256 = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f",
10469- strip_prefix = "icu_normalizer-2.3.0",
10470- urls = ["https://static.crates.io/crates/icu_normalizer/2.3.0/download"],
10458+ name = "icu_normalizer-2.2.0.crate",
10459+ sha256 = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4",
10460+ strip_prefix = "icu_normalizer-2.2.0",
10461+ urls = ["https://static.crates.io/crates/icu_normalizer/2.2.0/download"],
1047110462 visibility = [],
1047210463 )
1047310464
1047410465 cargo.rust_library(
1047510466 name = "icu_normalizer-2",
10476- srcs = [":icu_normalizer-2.3.0.crate"],
10467+ srcs = [":icu_normalizer-2.2.0.crate"],
1047710468 crate = "icu_normalizer",
10478- crate_root = "icu_normalizer-2.3.0.crate/src/lib.rs",
10479- edition = "2024",
10469+ crate_root = "icu_normalizer-2.2.0.crate/src/lib.rs",
10470+ edition = "2021",
1048010471 env = {
1048110472 "CARGO_BIN_NAME": "icu_normalizer",
1048210473 "CARGO_CRATE_NAME": "icu_normalizer",
10483- "CARGO_MANIFEST_DIR": "icu_normalizer-2.3.0.crate",
10474+ "CARGO_MANIFEST_DIR": "icu_normalizer-2.2.0.crate",
1048410475 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1048510476 "CARGO_PKG_DESCRIPTION": "API for normalizing text into Unicode Normalization Forms",
1048610477 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1048710478 "CARGO_PKG_NAME": "icu_normalizer",
1048810479 "CARGO_PKG_README": "README.md",
1048910480 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10490- "CARGO_PKG_RUST_VERSION": "1.88",
10491- "CARGO_PKG_VERSION": "2.3.0",
10481+ "CARGO_PKG_RUST_VERSION": "1.86",
10482+ "CARGO_PKG_VERSION": "2.2.0",
1049210483 "CARGO_PKG_VERSION_MAJOR": "2",
10493- "CARGO_PKG_VERSION_MINOR": "3",
10484+ "CARGO_PKG_VERSION_MINOR": "2",
1049410485 "CARGO_PKG_VERSION_PATCH": "0",
1049510486 "CARGO_PKG_VERSION_PRE": "",
1049610487 },
@@ -10506,33 +10497,33 @@ cargo.rust_library(
1050610497 )
1050710498
1050810499 http_archive(
10509- name = "icu_normalizer_data-2.3.0.crate",
10510- sha256 = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0",
10511- strip_prefix = "icu_normalizer_data-2.3.0",
10512- urls = ["https://static.crates.io/crates/icu_normalizer_data/2.3.0/download"],
10500+ name = "icu_normalizer_data-2.2.0.crate",
10501+ sha256 = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38",
10502+ strip_prefix = "icu_normalizer_data-2.2.0",
10503+ urls = ["https://static.crates.io/crates/icu_normalizer_data/2.2.0/download"],
1051310504 visibility = [],
1051410505 )
1051510506
1051610507 cargo.rust_library(
1051710508 name = "icu_normalizer_data-2",
10518- srcs = [":icu_normalizer_data-2.3.0.crate"],
10509+ srcs = [":icu_normalizer_data-2.2.0.crate"],
1051910510 crate = "icu_normalizer_data",
10520- crate_root = "icu_normalizer_data-2.3.0.crate/src/lib.rs",
10521- edition = "2024",
10511+ crate_root = "icu_normalizer_data-2.2.0.crate/src/lib.rs",
10512+ edition = "2021",
1052210513 env = {
1052310514 "CARGO_BIN_NAME": "icu_normalizer_data",
1052410515 "CARGO_CRATE_NAME": "icu_normalizer_data",
10525- "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.3.0.crate",
10516+ "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.2.0.crate",
1052610517 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1052710518 "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate",
1052810519 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1052910520 "CARGO_PKG_NAME": "icu_normalizer_data",
1053010521 "CARGO_PKG_README": "README.md",
1053110522 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10532- "CARGO_PKG_RUST_VERSION": "1.88",
10533- "CARGO_PKG_VERSION": "2.3.0",
10523+ "CARGO_PKG_RUST_VERSION": "1.86",
10524+ "CARGO_PKG_VERSION": "2.2.0",
1053410525 "CARGO_PKG_VERSION_MAJOR": "2",
10535- "CARGO_PKG_VERSION_MINOR": "3",
10526+ "CARGO_PKG_VERSION_MINOR": "2",
1053610527 "CARGO_PKG_VERSION_PATCH": "0",
1053710528 "CARGO_PKG_VERSION_PRE": "",
1053810529 "OUT_DIR": "$(location :icu_normalizer_data-2-build-script-run[out_dir])",
@@ -10543,24 +10534,24 @@ cargo.rust_library(
1054310534
1054410535 cargo.rust_binary(
1054510536 name = "icu_normalizer_data-2-build-script-build",
10546- srcs = [":icu_normalizer_data-2.3.0.crate"],
10537+ srcs = [":icu_normalizer_data-2.2.0.crate"],
1054710538 crate = "build_script_build",
10548- crate_root = "icu_normalizer_data-2.3.0.crate/build.rs",
10549- edition = "2024",
10539+ crate_root = "icu_normalizer_data-2.2.0.crate/build.rs",
10540+ edition = "2021",
1055010541 env = {
1055110542 "CARGO_BIN_NAME": "build-script-build",
1055210543 "CARGO_CRATE_NAME": "build_script_build",
10553- "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.3.0.crate",
10544+ "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.2.0.crate",
1055410545 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1055510546 "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate",
1055610547 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1055710548 "CARGO_PKG_NAME": "icu_normalizer_data",
1055810549 "CARGO_PKG_README": "README.md",
1055910550 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10560- "CARGO_PKG_RUST_VERSION": "1.88",
10561- "CARGO_PKG_VERSION": "2.3.0",
10551+ "CARGO_PKG_RUST_VERSION": "1.86",
10552+ "CARGO_PKG_VERSION": "2.2.0",
1056210553 "CARGO_PKG_VERSION_MAJOR": "2",
10563- "CARGO_PKG_VERSION_MINOR": "3",
10554+ "CARGO_PKG_VERSION_MINOR": "2",
1056410555 "CARGO_PKG_VERSION_PATCH": "0",
1056510556 "CARGO_PKG_VERSION_PRE": "",
1056610557 },
@@ -10577,50 +10568,50 @@ buildscript_run(
1057710568 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1057810569 "CARGO_PKG_README": "README.md",
1057910570 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10580- "CARGO_PKG_RUST_VERSION": "1.88",
10571+ "CARGO_PKG_RUST_VERSION": "1.86",
1058110572 "CARGO_PKG_VERSION_MAJOR": "2",
10582- "CARGO_PKG_VERSION_MINOR": "3",
10573+ "CARGO_PKG_VERSION_MINOR": "2",
1058310574 "CARGO_PKG_VERSION_PATCH": "0",
1058410575 "CARGO_PKG_VERSION_PRE": "",
10576+ "OPT_LEVEL": "2",
1058510577 },
10586- version = "2.3.0",
10578+ version = "2.2.0",
1058710579 )
1058810580
1058910581 http_archive(
10590- name = "icu_properties-2.3.0.crate",
10591- sha256 = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148",
10592- strip_prefix = "icu_properties-2.3.0",
10593- urls = ["https://static.crates.io/crates/icu_properties/2.3.0/download"],
10582+ name = "icu_properties-2.2.0.crate",
10583+ sha256 = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de",
10584+ strip_prefix = "icu_properties-2.2.0",
10585+ urls = ["https://static.crates.io/crates/icu_properties/2.2.0/download"],
1059410586 visibility = [],
1059510587 )
1059610588
1059710589 cargo.rust_library(
1059810590 name = "icu_properties-2",
10599- srcs = [":icu_properties-2.3.0.crate"],
10591+ srcs = [":icu_properties-2.2.0.crate"],
1060010592 crate = "icu_properties",
10601- crate_root = "icu_properties-2.3.0.crate/src/lib.rs",
10602- edition = "2024",
10593+ crate_root = "icu_properties-2.2.0.crate/src/lib.rs",
10594+ edition = "2021",
1060310595 env = {
1060410596 "CARGO_BIN_NAME": "icu_properties",
1060510597 "CARGO_CRATE_NAME": "icu_properties",
10606- "CARGO_MANIFEST_DIR": "icu_properties-2.3.0.crate",
10598+ "CARGO_MANIFEST_DIR": "icu_properties-2.2.0.crate",
1060710599 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1060810600 "CARGO_PKG_DESCRIPTION": "Definitions for Unicode properties",
1060910601 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1061010602 "CARGO_PKG_NAME": "icu_properties",
1061110603 "CARGO_PKG_README": "README.md",
1061210604 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10613- "CARGO_PKG_RUST_VERSION": "1.88",
10614- "CARGO_PKG_VERSION": "2.3.0",
10605+ "CARGO_PKG_RUST_VERSION": "1.86",
10606+ "CARGO_PKG_VERSION": "2.2.0",
1061510607 "CARGO_PKG_VERSION_MAJOR": "2",
10616- "CARGO_PKG_VERSION_MINOR": "3",
10608+ "CARGO_PKG_VERSION_MINOR": "2",
1061710609 "CARGO_PKG_VERSION_PATCH": "0",
1061810610 "CARGO_PKG_VERSION_PRE": "",
1061910611 },
1062010612 features = ["compiled_data"],
1062110613 visibility = [],
1062210614 deps = [
10623- ":displaydoc-0.2",
1062410615 ":icu_collections-2",
1062510616 ":icu_locale_core-2",
1062610617 ":icu_properties_data-2",
@@ -10631,33 +10622,33 @@ cargo.rust_library(
1063110622 )
1063210623
1063310624 http_archive(
10634- name = "icu_properties_data-2.3.0.crate",
10635- sha256 = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa",
10636- strip_prefix = "icu_properties_data-2.3.0",
10637- urls = ["https://static.crates.io/crates/icu_properties_data/2.3.0/download"],
10625+ name = "icu_properties_data-2.2.0.crate",
10626+ sha256 = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14",
10627+ strip_prefix = "icu_properties_data-2.2.0",
10628+ urls = ["https://static.crates.io/crates/icu_properties_data/2.2.0/download"],
1063810629 visibility = [],
1063910630 )
1064010631
1064110632 cargo.rust_library(
1064210633 name = "icu_properties_data-2",
10643- srcs = [":icu_properties_data-2.3.0.crate"],
10634+ srcs = [":icu_properties_data-2.2.0.crate"],
1064410635 crate = "icu_properties_data",
10645- crate_root = "icu_properties_data-2.3.0.crate/src/lib.rs",
10646- edition = "2024",
10636+ crate_root = "icu_properties_data-2.2.0.crate/src/lib.rs",
10637+ edition = "2021",
1064710638 env = {
1064810639 "CARGO_BIN_NAME": "icu_properties_data",
1064910640 "CARGO_CRATE_NAME": "icu_properties_data",
10650- "CARGO_MANIFEST_DIR": "icu_properties_data-2.3.0.crate",
10641+ "CARGO_MANIFEST_DIR": "icu_properties_data-2.2.0.crate",
1065110642 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1065210643 "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate",
1065310644 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1065410645 "CARGO_PKG_NAME": "icu_properties_data",
1065510646 "CARGO_PKG_README": "README.md",
1065610647 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10657- "CARGO_PKG_RUST_VERSION": "1.88",
10658- "CARGO_PKG_VERSION": "2.3.0",
10648+ "CARGO_PKG_RUST_VERSION": "1.86",
10649+ "CARGO_PKG_VERSION": "2.2.0",
1065910650 "CARGO_PKG_VERSION_MAJOR": "2",
10660- "CARGO_PKG_VERSION_MINOR": "3",
10651+ "CARGO_PKG_VERSION_MINOR": "2",
1066110652 "CARGO_PKG_VERSION_PATCH": "0",
1066210653 "CARGO_PKG_VERSION_PRE": "",
1066310654 "OUT_DIR": "$(location :icu_properties_data-2-build-script-run[out_dir])",
@@ -10668,24 +10659,24 @@ cargo.rust_library(
1066810659
1066910660 cargo.rust_binary(
1067010661 name = "icu_properties_data-2-build-script-build",
10671- srcs = [":icu_properties_data-2.3.0.crate"],
10662+ srcs = [":icu_properties_data-2.2.0.crate"],
1067210663 crate = "build_script_build",
10673- crate_root = "icu_properties_data-2.3.0.crate/build.rs",
10674- edition = "2024",
10664+ crate_root = "icu_properties_data-2.2.0.crate/build.rs",
10665+ edition = "2021",
1067510666 env = {
1067610667 "CARGO_BIN_NAME": "build-script-build",
1067710668 "CARGO_CRATE_NAME": "build_script_build",
10678- "CARGO_MANIFEST_DIR": "icu_properties_data-2.3.0.crate",
10669+ "CARGO_MANIFEST_DIR": "icu_properties_data-2.2.0.crate",
1067910670 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1068010671 "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate",
1068110672 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1068210673 "CARGO_PKG_NAME": "icu_properties_data",
1068310674 "CARGO_PKG_README": "README.md",
1068410675 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10685- "CARGO_PKG_RUST_VERSION": "1.88",
10686- "CARGO_PKG_VERSION": "2.3.0",
10676+ "CARGO_PKG_RUST_VERSION": "1.86",
10677+ "CARGO_PKG_VERSION": "2.2.0",
1068710678 "CARGO_PKG_VERSION_MAJOR": "2",
10688- "CARGO_PKG_VERSION_MINOR": "3",
10679+ "CARGO_PKG_VERSION_MINOR": "2",
1068910680 "CARGO_PKG_VERSION_PATCH": "0",
1069010681 "CARGO_PKG_VERSION_PRE": "",
1069110682 },
@@ -10702,44 +10693,45 @@ buildscript_run(
1070210693 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1070310694 "CARGO_PKG_README": "README.md",
1070410695 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10705- "CARGO_PKG_RUST_VERSION": "1.88",
10696+ "CARGO_PKG_RUST_VERSION": "1.86",
1070610697 "CARGO_PKG_VERSION_MAJOR": "2",
10707- "CARGO_PKG_VERSION_MINOR": "3",
10698+ "CARGO_PKG_VERSION_MINOR": "2",
1070810699 "CARGO_PKG_VERSION_PATCH": "0",
1070910700 "CARGO_PKG_VERSION_PRE": "",
10701+ "OPT_LEVEL": "2",
1071010702 },
10711- version = "2.3.0",
10703+ version = "2.2.0",
1071210704 )
1071310705
1071410706 http_archive(
10715- name = "icu_provider-2.3.1.crate",
10716- sha256 = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73",
10717- strip_prefix = "icu_provider-2.3.1",
10718- urls = ["https://static.crates.io/crates/icu_provider/2.3.1/download"],
10707+ name = "icu_provider-2.2.0.crate",
10708+ sha256 = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421",
10709+ strip_prefix = "icu_provider-2.2.0",
10710+ urls = ["https://static.crates.io/crates/icu_provider/2.2.0/download"],
1071910711 visibility = [],
1072010712 )
1072110713
1072210714 cargo.rust_library(
1072310715 name = "icu_provider-2",
10724- srcs = [":icu_provider-2.3.1.crate"],
10716+ srcs = [":icu_provider-2.2.0.crate"],
1072510717 crate = "icu_provider",
10726- crate_root = "icu_provider-2.3.1.crate/src/lib.rs",
10727- edition = "2024",
10718+ crate_root = "icu_provider-2.2.0.crate/src/lib.rs",
10719+ edition = "2021",
1072810720 env = {
1072910721 "CARGO_BIN_NAME": "icu_provider",
1073010722 "CARGO_CRATE_NAME": "icu_provider",
10731- "CARGO_MANIFEST_DIR": "icu_provider-2.3.1.crate",
10723+ "CARGO_MANIFEST_DIR": "icu_provider-2.2.0.crate",
1073210724 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1073310725 "CARGO_PKG_DESCRIPTION": "Trait and struct definitions for the ICU data provider",
1073410726 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
1073510727 "CARGO_PKG_NAME": "icu_provider",
1073610728 "CARGO_PKG_README": "README.md",
1073710729 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10738- "CARGO_PKG_RUST_VERSION": "1.88",
10739- "CARGO_PKG_VERSION": "2.3.1",
10730+ "CARGO_PKG_RUST_VERSION": "1.86",
10731+ "CARGO_PKG_VERSION": "2.2.0",
1074010732 "CARGO_PKG_VERSION_MAJOR": "2",
10741- "CARGO_PKG_VERSION_MINOR": "3",
10742- "CARGO_PKG_VERSION_PATCH": "1",
10733+ "CARGO_PKG_VERSION_MINOR": "2",
10734+ "CARGO_PKG_VERSION_PATCH": "0",
1074310735 "CARGO_PKG_VERSION_PRE": "",
1074410736 },
1074510737 features = ["baked"],
@@ -11039,23 +11031,23 @@ cargo.rust_library(
1103911031 )
1104011032
1104111033 http_archive(
11042- name = "indexmap-2.14.1.crate",
11043- sha256 = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb",
11044- strip_prefix = "indexmap-2.14.1",
11045- urls = ["https://static.crates.io/crates/indexmap/2.14.1/download"],
11034+ name = "indexmap-2.14.0.crate",
11035+ sha256 = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9",
11036+ strip_prefix = "indexmap-2.14.0",
11037+ urls = ["https://static.crates.io/crates/indexmap/2.14.0/download"],
1104611038 visibility = [],
1104711039 )
1104811040
1104911041 cargo.rust_library(
1105011042 name = "indexmap-2",
11051- srcs = [":indexmap-2.14.1.crate"],
11043+ srcs = [":indexmap-2.14.0.crate"],
1105211044 crate = "indexmap",
11053- crate_root = "indexmap-2.14.1.crate/src/lib.rs",
11045+ crate_root = "indexmap-2.14.0.crate/src/lib.rs",
1105411046 edition = "2024",
1105511047 env = {
1105611048 "CARGO_BIN_NAME": "indexmap",
1105711049 "CARGO_CRATE_NAME": "indexmap",
11058- "CARGO_MANIFEST_DIR": "indexmap-2.14.1.crate",
11050+ "CARGO_MANIFEST_DIR": "indexmap-2.14.0.crate",
1105911051 "CARGO_PKG_AUTHORS": "",
1106011052 "CARGO_PKG_DESCRIPTION": "A hash table with consistent order and fast iteration.",
1106111053 "CARGO_PKG_HOMEPAGE": "",
@@ -11063,10 +11055,10 @@ cargo.rust_library(
1106311055 "CARGO_PKG_README": "README.md",
1106411056 "CARGO_PKG_REPOSITORY": "https://github.com/indexmap-rs/indexmap",
1106511057 "CARGO_PKG_RUST_VERSION": "1.85",
11066- "CARGO_PKG_VERSION": "2.14.1",
11058+ "CARGO_PKG_VERSION": "2.14.0",
1106711059 "CARGO_PKG_VERSION_MAJOR": "2",
1106811060 "CARGO_PKG_VERSION_MINOR": "14",
11069- "CARGO_PKG_VERSION_PATCH": "1",
11061+ "CARGO_PKG_VERSION_PATCH": "0",
1107011062 "CARGO_PKG_VERSION_PRE": "",
1107111063 },
1107211064 features = [
@@ -11116,23 +11108,23 @@ cargo.rust_library(
1111611108 )
1111711109
1111811110 http_archive(
11119- name = "ipnet-2.12.1.crate",
11120- sha256 = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78",
11121- strip_prefix = "ipnet-2.12.1",
11122- urls = ["https://static.crates.io/crates/ipnet/2.12.1/download"],
11111+ name = "ipnet-2.12.0.crate",
11112+ sha256 = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2",
11113+ strip_prefix = "ipnet-2.12.0",
11114+ urls = ["https://static.crates.io/crates/ipnet/2.12.0/download"],
1112311115 visibility = [],
1112411116 )
1112511117
1112611118 cargo.rust_library(
1112711119 name = "ipnet-2",
11128- srcs = [":ipnet-2.12.1.crate"],
11120+ srcs = [":ipnet-2.12.0.crate"],
1112911121 crate = "ipnet",
11130- crate_root = "ipnet-2.12.1.crate/src/lib.rs",
11122+ crate_root = "ipnet-2.12.0.crate/src/lib.rs",
1113111123 edition = "2018",
1113211124 env = {
1113311125 "CARGO_BIN_NAME": "ipnet",
1113411126 "CARGO_CRATE_NAME": "ipnet",
11135- "CARGO_MANIFEST_DIR": "ipnet-2.12.1.crate",
11127+ "CARGO_MANIFEST_DIR": "ipnet-2.12.0.crate",
1113611128 "CARGO_PKG_AUTHORS": "Kris Price <kris@krisprice.nz>",
1113711129 "CARGO_PKG_DESCRIPTION": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.",
1113811130 "CARGO_PKG_HOMEPAGE": "",
@@ -11140,10 +11132,10 @@ cargo.rust_library(
1114011132 "CARGO_PKG_README": "README.md",
1114111133 "CARGO_PKG_REPOSITORY": "https://github.com/krisprice/ipnet",
1114211134 "CARGO_PKG_RUST_VERSION": "",
11143- "CARGO_PKG_VERSION": "2.12.1",
11135+ "CARGO_PKG_VERSION": "2.12.0",
1114411136 "CARGO_PKG_VERSION_MAJOR": "2",
1114511137 "CARGO_PKG_VERSION_MINOR": "12",
11146- "CARGO_PKG_VERSION_PATCH": "1",
11138+ "CARGO_PKG_VERSION_PATCH": "0",
1114711139 "CARGO_PKG_VERSION_PRE": "",
1114811140 },
1114911141 features = [
@@ -11283,6 +11275,7 @@ buildscript_run(
1128311275 "CARGO_PKG_VERSION_MINOR": "97",
1128411276 "CARGO_PKG_VERSION_PATCH": "0",
1128511277 "CARGO_PKG_VERSION_PRE": "",
11278+ "OPT_LEVEL": "2",
1128611279 },
1128711280 features = [
1128811281 "fast-apple-datapath",
@@ -11701,6 +11694,7 @@ buildscript_run(
1170111694 "CARGO_PKG_VERSION_MINOR": "97",
1170211695 "CARGO_PKG_VERSION_PATCH": "0",
1170311696 "CARGO_PKG_VERSION_PRE": "",
11697+ "OPT_LEVEL": "2",
1170411698 },
1170511699 features = [
1170611700 "metrics",
@@ -12029,10 +12023,6 @@ cargo.rust_library(
1202912023 features = [
1203012024 "alloc",
1203112025 "std",
12032- "tz-system",
12033- "tzdb-bundle-platform",
12034- "tzdb-concatenated",
12035- "tzdb-zoneinfo",
1203612026 ],
1203712027 named_deps = {
1203812028 "jcore": ":jiff-core-0.1",
@@ -12190,6 +12180,7 @@ buildscript_run(
1219012180 "CARGO_PKG_VERSION_MINOR": "1",
1219112181 "CARGO_PKG_VERSION_PATCH": "0",
1219212182 "CARGO_PKG_VERSION_PRE": "",
12183+ "OPT_LEVEL": "2",
1219312184 },
1219412185 version = "3.1.0",
1219512186 )
@@ -12321,6 +12312,7 @@ buildscript_run(
1232112312 "CARGO_PKG_VERSION_MINOR": "2",
1232212313 "CARGO_PKG_VERSION_PATCH": "189",
1232312314 "CARGO_PKG_VERSION_PRE": "",
12315+ "OPT_LEVEL": "2",
1232412316 },
1232512317 features = [
1232612318 "default",
@@ -12450,6 +12442,7 @@ buildscript_run(
1245012442 "CARGO_PKG_VERSION_MINOR": "2",
1245112443 "CARGO_PKG_VERSION_PATCH": "16",
1245212444 "CARGO_PKG_VERSION_PRE": "",
12445+ "OPT_LEVEL": "2",
1245312446 },
1245412447 features = [
1245512448 "arch",
@@ -12550,23 +12543,23 @@ cargo.rust_library(
1255012543 )
1255112544
1255212545 http_archive(
12553- name = "litemap-0.8.3.crate",
12554- sha256 = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae",
12555- strip_prefix = "litemap-0.8.3",
12556- urls = ["https://static.crates.io/crates/litemap/0.8.3/download"],
12546+ name = "litemap-0.8.2.crate",
12547+ sha256 = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0",
12548+ strip_prefix = "litemap-0.8.2",
12549+ urls = ["https://static.crates.io/crates/litemap/0.8.2/download"],
1255712550 visibility = [],
1255812551 )
1255912552
1256012553 cargo.rust_library(
1256112554 name = "litemap-0.8",
12562- srcs = [":litemap-0.8.3.crate"],
12555+ srcs = [":litemap-0.8.2.crate"],
1256312556 crate = "litemap",
12564- crate_root = "litemap-0.8.3.crate/src/lib.rs",
12557+ crate_root = "litemap-0.8.2.crate/src/lib.rs",
1256512558 edition = "2021",
1256612559 env = {
1256712560 "CARGO_BIN_NAME": "litemap",
1256812561 "CARGO_CRATE_NAME": "litemap",
12569- "CARGO_MANIFEST_DIR": "litemap-0.8.3.crate",
12562+ "CARGO_MANIFEST_DIR": "litemap-0.8.2.crate",
1257012563 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1257112564 "CARGO_PKG_DESCRIPTION": "A key-value Map implementation based on a flat, sorted Vec.",
1257212565 "CARGO_PKG_HOMEPAGE": "",
@@ -12574,10 +12567,10 @@ cargo.rust_library(
1257412567 "CARGO_PKG_README": "README.md",
1257512568 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
1257612569 "CARGO_PKG_RUST_VERSION": "1.82",
12577- "CARGO_PKG_VERSION": "0.8.3",
12570+ "CARGO_PKG_VERSION": "0.8.2",
1257812571 "CARGO_PKG_VERSION_MAJOR": "0",
1257912572 "CARGO_PKG_VERSION_MINOR": "8",
12580- "CARGO_PKG_VERSION_PATCH": "3",
12573+ "CARGO_PKG_VERSION_PATCH": "2",
1258112574 "CARGO_PKG_VERSION_PRE": "",
1258212575 },
1258312576 visibility = [],
@@ -12663,23 +12656,23 @@ alias(
1266312656 )
1266412657
1266512658 http_archive(
12666- name = "log-0.4.34.crate",
12667- sha256 = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6",
12668- strip_prefix = "log-0.4.34",
12669- urls = ["https://static.crates.io/crates/log/0.4.34/download"],
12659+ name = "log-0.4.33.crate",
12660+ sha256 = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad",
12661+ strip_prefix = "log-0.4.33",
12662+ urls = ["https://static.crates.io/crates/log/0.4.33/download"],
1267012663 visibility = [],
1267112664 )
1267212665
1267312666 cargo.rust_library(
1267412667 name = "log-0.4",
12675- srcs = [":log-0.4.34.crate"],
12668+ srcs = [":log-0.4.33.crate"],
1267612669 crate = "log",
12677- crate_root = "log-0.4.34.crate/src/lib.rs",
12670+ crate_root = "log-0.4.33.crate/src/lib.rs",
1267812671 edition = "2021",
1267912672 env = {
1268012673 "CARGO_BIN_NAME": "log",
1268112674 "CARGO_CRATE_NAME": "log",
12682- "CARGO_MANIFEST_DIR": "log-0.4.34.crate",
12675+ "CARGO_MANIFEST_DIR": "log-0.4.33.crate",
1268312676 "CARGO_PKG_AUTHORS": "The Rust Project Developers",
1268412677 "CARGO_PKG_DESCRIPTION": "A lightweight logging facade for Rust\n",
1268512678 "CARGO_PKG_HOMEPAGE": "",
@@ -12687,16 +12680,13 @@ cargo.rust_library(
1268712680 "CARGO_PKG_README": "README.md",
1268812681 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/log",
1268912682 "CARGO_PKG_RUST_VERSION": "1.71.0",
12690- "CARGO_PKG_VERSION": "0.4.34",
12683+ "CARGO_PKG_VERSION": "0.4.33",
1269112684 "CARGO_PKG_VERSION_MAJOR": "0",
1269212685 "CARGO_PKG_VERSION_MINOR": "4",
12693- "CARGO_PKG_VERSION_PATCH": "34",
12686+ "CARGO_PKG_VERSION_PATCH": "33",
1269412687 "CARGO_PKG_VERSION_PRE": "",
1269512688 },
12696- features = [
12697- "alloc",
12698- "std",
12699- ],
12689+ features = ["std"],
1270012690 visibility = [],
1270112691 )
1270212692
@@ -13042,6 +13032,7 @@ buildscript_run(
1304213032 "CARGO_PKG_VERSION_MINOR": "9",
1304313033 "CARGO_PKG_VERSION_PATCH": "1",
1304413034 "CARGO_PKG_VERSION_PRE": "",
13035+ "OPT_LEVEL": "2",
1304513036 },
1304613037 features = ["default"],
1304713038 version = "0.9.1",
@@ -13211,23 +13202,23 @@ cargo.rust_library(
1321113202 )
1321213203
1321313204 http_archive(
13214- name = "moka-0.12.16.crate",
13215- sha256 = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9",
13216- strip_prefix = "moka-0.12.16",
13217- urls = ["https://static.crates.io/crates/moka/0.12.16/download"],
13205+ name = "moka-0.12.15.crate",
13206+ sha256 = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046",
13207+ strip_prefix = "moka-0.12.15",
13208+ urls = ["https://static.crates.io/crates/moka/0.12.15/download"],
1321813209 visibility = [],
1321913210 )
1322013211
1322113212 cargo.rust_library(
1322213213 name = "moka-0.12",
13223- srcs = [":moka-0.12.16.crate"],
13214+ srcs = [":moka-0.12.15.crate"],
1322413215 crate = "moka",
13225- crate_root = "moka-0.12.16.crate/src/lib.rs",
13216+ crate_root = "moka-0.12.15.crate/src/lib.rs",
1322613217 edition = "2021",
1322713218 env = {
1322813219 "CARGO_BIN_NAME": "moka",
1322913220 "CARGO_CRATE_NAME": "moka",
13230- "CARGO_MANIFEST_DIR": "moka-0.12.16.crate",
13221+ "CARGO_MANIFEST_DIR": "moka-0.12.15.crate",
1323113222 "CARGO_PKG_AUTHORS": "",
1323213223 "CARGO_PKG_DESCRIPTION": "A fast and concurrent cache library inspired by Java Caffeine",
1323313224 "CARGO_PKG_HOMEPAGE": "",
@@ -13235,10 +13226,10 @@ cargo.rust_library(
1323513226 "CARGO_PKG_README": "README.md",
1323613227 "CARGO_PKG_REPOSITORY": "https://github.com/moka-rs/moka",
1323713228 "CARGO_PKG_RUST_VERSION": "1.71.1",
13238- "CARGO_PKG_VERSION": "0.12.16",
13229+ "CARGO_PKG_VERSION": "0.12.15",
1323913230 "CARGO_PKG_VERSION_MAJOR": "0",
1324013231 "CARGO_PKG_VERSION_MINOR": "12",
13241- "CARGO_PKG_VERSION_PATCH": "16",
13232+ "CARGO_PKG_VERSION_PATCH": "15",
1324213233 "CARGO_PKG_VERSION_PRE": "",
1324313234 },
1324413235 features = [
@@ -13409,6 +13400,7 @@ buildscript_run(
1340913400 "CARGO_PKG_VERSION_MINOR": "1",
1341013401 "CARGO_PKG_VERSION_PATCH": "0",
1341113402 "CARGO_PKG_VERSION_PRE": "",
13403+ "OPT_LEVEL": "2",
1341213404 },
1341313405 features = [
1341413406 "capture-camera",
@@ -13760,6 +13752,7 @@ buildscript_run(
1376013752 "CARGO_PKG_VERSION_MINOR": "3",
1376113753 "CARGO_PKG_VERSION_PATCH": "2",
1376213754 "CARGO_PKG_VERSION_PRE": "",
13755+ "OPT_LEVEL": "2",
1376313756 },
1376413757 version = "0.3.2",
1376513758 )
@@ -13912,23 +13905,23 @@ cargo.rust_library(
1391213905 )
1391313906
1391413907 http_archive(
13915- name = "netlink-packet-core-0.8.2.crate",
13916- sha256 = "b897d7bd4f0af82e68d40d0344cf37e97f9c97ddf74a098de3e4da05e96ca395",
13917- strip_prefix = "netlink-packet-core-0.8.2",
13918- urls = ["https://static.crates.io/crates/netlink-packet-core/0.8.2/download"],
13908+ name = "netlink-packet-core-0.8.1.crate",
13909+ sha256 = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4",
13910+ strip_prefix = "netlink-packet-core-0.8.1",
13911+ urls = ["https://static.crates.io/crates/netlink-packet-core/0.8.1/download"],
1391913912 visibility = [],
1392013913 )
1392113914
1392213915 cargo.rust_library(
1392313916 name = "netlink-packet-core-0.8",
13924- srcs = [":netlink-packet-core-0.8.2.crate"],
13917+ srcs = [":netlink-packet-core-0.8.1.crate"],
1392513918 crate = "netlink_packet_core",
13926- crate_root = "netlink-packet-core-0.8.2.crate/src/lib.rs",
13919+ crate_root = "netlink-packet-core-0.8.1.crate/src/lib.rs",
1392713920 edition = "2021",
1392813921 env = {
1392913922 "CARGO_BIN_NAME": "netlink_packet_core",
1393013923 "CARGO_CRATE_NAME": "netlink_packet_core",
13931- "CARGO_MANIFEST_DIR": "netlink-packet-core-0.8.2.crate",
13924+ "CARGO_MANIFEST_DIR": "netlink-packet-core-0.8.1.crate",
1393213925 "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>",
1393313926 "CARGO_PKG_DESCRIPTION": "netlink packet types",
1393413927 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-packet-core",
@@ -13936,10 +13929,10 @@ cargo.rust_library(
1393613929 "CARGO_PKG_README": "README.md",
1393713930 "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-packet-core",
1393813931 "CARGO_PKG_RUST_VERSION": "",
13939- "CARGO_PKG_VERSION": "0.8.2",
13932+ "CARGO_PKG_VERSION": "0.8.1",
1394013933 "CARGO_PKG_VERSION_MAJOR": "0",
1394113934 "CARGO_PKG_VERSION_MINOR": "8",
13942- "CARGO_PKG_VERSION_PATCH": "2",
13935+ "CARGO_PKG_VERSION_PATCH": "1",
1394313936 "CARGO_PKG_VERSION_PRE": "",
1394413937 },
1394513938 visibility = [],
@@ -13987,23 +13980,23 @@ cargo.rust_library(
1398713980 )
1398813981
1398913982 http_archive(
13990- name = "netlink-proto-0.12.2.crate",
13991- sha256 = "93af8261786086024cd5e96e0a991dd65ced07bbf7c233a487bbc96b971d5539",
13992- strip_prefix = "netlink-proto-0.12.2",
13993- urls = ["https://static.crates.io/crates/netlink-proto/0.12.2/download"],
13983+ name = "netlink-proto-0.12.1.crate",
13984+ sha256 = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6",
13985+ strip_prefix = "netlink-proto-0.12.1",
13986+ urls = ["https://static.crates.io/crates/netlink-proto/0.12.1/download"],
1399413987 visibility = [],
1399513988 )
1399613989
1399713990 cargo.rust_library(
1399813991 name = "netlink-proto-0.12",
13999- srcs = [":netlink-proto-0.12.2.crate"],
13992+ srcs = [":netlink-proto-0.12.1.crate"],
1400013993 crate = "netlink_proto",
14001- crate_root = "netlink-proto-0.12.2.crate/src/lib.rs",
13994+ crate_root = "netlink-proto-0.12.1.crate/src/lib.rs",
1400213995 edition = "2021",
1400313996 env = {
1400413997 "CARGO_BIN_NAME": "netlink_proto",
1400513998 "CARGO_CRATE_NAME": "netlink_proto",
14006- "CARGO_MANIFEST_DIR": "netlink-proto-0.12.2.crate",
13999+ "CARGO_MANIFEST_DIR": "netlink-proto-0.12.1.crate",
1400714000 "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>",
1400814001 "CARGO_PKG_DESCRIPTION": "async netlink protocol",
1400914002 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-proto",
@@ -14011,10 +14004,10 @@ cargo.rust_library(
1401114004 "CARGO_PKG_README": "README.md",
1401214005 "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-proto",
1401314006 "CARGO_PKG_RUST_VERSION": "1.75",
14014- "CARGO_PKG_VERSION": "0.12.2",
14007+ "CARGO_PKG_VERSION": "0.12.1",
1401514008 "CARGO_PKG_VERSION_MAJOR": "0",
1401614009 "CARGO_PKG_VERSION_MINOR": "12",
14017- "CARGO_PKG_VERSION_PATCH": "2",
14010+ "CARGO_PKG_VERSION_PATCH": "1",
1401814011 "CARGO_PKG_VERSION_PRE": "",
1401914012 },
1402014013 features = [
@@ -14204,6 +14197,7 @@ buildscript_run(
1420414197 "CARGO_PKG_VERSION_MINOR": "15",
1420514198 "CARGO_PKG_VERSION_PATCH": "0",
1420614199 "CARGO_PKG_VERSION_PRE": "",
14200+ "OPT_LEVEL": "2",
1420714201 },
1420814202 version = "0.15.0",
1420914203 )
@@ -14307,6 +14301,7 @@ buildscript_run(
1430714301 "CARGO_PKG_VERSION_MINOR": "28",
1430814302 "CARGO_PKG_VERSION_PATCH": "0",
1430914303 "CARGO_PKG_VERSION_PRE": "",
14304+ "OPT_LEVEL": "2",
1431014305 },
1431114306 features = [
1431214307 "default",
@@ -14412,6 +14407,7 @@ buildscript_run(
1441214407 "CARGO_PKG_VERSION_MINOR": "30",
1441314408 "CARGO_PKG_VERSION_PATCH": "1",
1441414409 "CARGO_PKG_VERSION_PRE": "",
14410+ "OPT_LEVEL": "2",
1441514411 },
1441614412 features = [
1441714413 "fs",
@@ -14606,6 +14602,7 @@ buildscript_run(
1460614602 "CARGO_PKG_VERSION_MINOR": "17",
1460714603 "CARGO_PKG_VERSION_PATCH": "0",
1460814604 "CARGO_PKG_VERSION_PRE": "",
14605+ "OPT_LEVEL": "2",
1460914606 },
1461014607 features = [
1461114608 "aws-lc-rs",
@@ -14759,6 +14756,7 @@ buildscript_run(
1475914756 "CARGO_PKG_VERSION_MINOR": "9",
1476014757 "CARGO_PKG_VERSION_PATCH": "0",
1476114758 "CARGO_PKG_VERSION_PRE": "",
14759+ "OPT_LEVEL": "2",
1476214760 },
1476314761 features = [
1476414762 "default",
@@ -15050,23 +15048,23 @@ cargo.rust_library(
1505015048 )
1505115049
1505215050 http_archive(
15053- name = "num-integer-0.1.47.crate",
15054- sha256 = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b",
15055- strip_prefix = "num-integer-0.1.47",
15056- urls = ["https://static.crates.io/crates/num-integer/0.1.47/download"],
15051+ name = "num-integer-0.1.46.crate",
15052+ sha256 = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f",
15053+ strip_prefix = "num-integer-0.1.46",
15054+ urls = ["https://static.crates.io/crates/num-integer/0.1.46/download"],
1505715055 visibility = [],
1505815056 )
1505915057
1506015058 cargo.rust_library(
1506115059 name = "num-integer-0.1",
15062- srcs = [":num-integer-0.1.47.crate"],
15060+ srcs = [":num-integer-0.1.46.crate"],
1506315061 crate = "num_integer",
15064- crate_root = "num-integer-0.1.47.crate/src/lib.rs",
15062+ crate_root = "num-integer-0.1.46.crate/src/lib.rs",
1506515063 edition = "2018",
1506615064 env = {
1506715065 "CARGO_BIN_NAME": "num_integer",
1506815066 "CARGO_CRATE_NAME": "num_integer",
15069- "CARGO_MANIFEST_DIR": "num-integer-0.1.47.crate",
15067+ "CARGO_MANIFEST_DIR": "num-integer-0.1.46.crate",
1507015068 "CARGO_PKG_AUTHORS": "The Rust Project Developers",
1507115069 "CARGO_PKG_DESCRIPTION": "Integer traits and functions",
1507215070 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-num/num-integer",
@@ -15074,10 +15072,10 @@ cargo.rust_library(
1507415072 "CARGO_PKG_README": "README.md",
1507515073 "CARGO_PKG_REPOSITORY": "https://github.com/rust-num/num-integer",
1507615074 "CARGO_PKG_RUST_VERSION": "1.31",
15077- "CARGO_PKG_VERSION": "0.1.47",
15075+ "CARGO_PKG_VERSION": "0.1.46",
1507815076 "CARGO_PKG_VERSION_MAJOR": "0",
1507915077 "CARGO_PKG_VERSION_MINOR": "1",
15080- "CARGO_PKG_VERSION_PATCH": "47",
15078+ "CARGO_PKG_VERSION_PATCH": "46",
1508115079 "CARGO_PKG_VERSION_PRE": "",
1508215080 },
1508315081 features = [
@@ -15229,6 +15227,7 @@ buildscript_run(
1522915227 "CARGO_PKG_VERSION_MINOR": "2",
1523015228 "CARGO_PKG_VERSION_PATCH": "19",
1523115229 "CARGO_PKG_VERSION_PRE": "",
15230+ "OPT_LEVEL": "2",
1523215231 },
1523315232 features = [
1523415233 "default",
@@ -15488,6 +15487,7 @@ buildscript_run(
1548815487 "CARGO_PKG_VERSION_MINOR": "3",
1548915488 "CARGO_PKG_VERSION_PATCH": "5",
1549015489 "CARGO_PKG_VERSION_PRE": "",
15490+ "OPT_LEVEL": "2",
1549115491 },
1549215492 features = [
1549315493 "alloc",
@@ -15634,6 +15634,7 @@ buildscript_run(
1563415634 "CARGO_PKG_VERSION_MINOR": "6",
1563515635 "CARGO_PKG_VERSION_PATCH": "4",
1563615636 "CARGO_PKG_VERSION_PRE": "",
15637+ "OPT_LEVEL": "2",
1563715638 },
1563815639 features = [
1563915640 "alloc",
@@ -17289,6 +17290,7 @@ buildscript_run(
1728917290 "CARGO_PKG_VERSION_MINOR": "37",
1729017291 "CARGO_PKG_VERSION_PATCH": "3",
1729117292 "CARGO_PKG_VERSION_PRE": "",
17293+ "OPT_LEVEL": "2",
1729217294 },
1729317295 features = [
1729417296 "archive",
@@ -17390,23 +17392,23 @@ alias(
1739017392 )
1739117393
1739217394 http_archive(
17393- name = "openh264-0.9.8.crate",
17394- sha256 = "fcc9071a0b5f9c501ddd01066c2600d922cc799dc450a52975222bcda7755a08",
17395- strip_prefix = "openh264-0.9.8",
17396- urls = ["https://static.crates.io/crates/openh264/0.9.8/download"],
17395+ name = "openh264-0.9.7.crate",
17396+ sha256 = "e6b2b561d2103303e233779545da757ecd35bad82188d619a6d8901f3007e1ff",
17397+ strip_prefix = "openh264-0.9.7",
17398+ urls = ["https://static.crates.io/crates/openh264/0.9.7/download"],
1739717399 visibility = [],
1739817400 )
1739917401
1740017402 cargo.rust_library(
1740117403 name = "openh264-0.9",
17402- srcs = [":openh264-0.9.8.crate"],
17404+ srcs = [":openh264-0.9.7.crate"],
1740317405 crate = "openh264",
17404- crate_root = "openh264-0.9.8.crate/src/lib.rs",
17406+ crate_root = "openh264-0.9.7.crate/src/lib.rs",
1740517407 edition = "2024",
1740617408 env = {
1740717409 "CARGO_BIN_NAME": "openh264",
1740817410 "CARGO_CRATE_NAME": "openh264",
17409- "CARGO_MANIFEST_DIR": "openh264-0.9.8.crate",
17411+ "CARGO_MANIFEST_DIR": "openh264-0.9.7.crate",
1741017412 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",
1741117413 "CARGO_PKG_DESCRIPTION": "Idiomatic bindings for OpenH264.",
1741217414 "CARGO_PKG_HOMEPAGE": "",
@@ -17414,10 +17416,10 @@ cargo.rust_library(
1741417416 "CARGO_PKG_README": "README.md",
1741517417 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",
1741617418 "CARGO_PKG_RUST_VERSION": "1.85",
17417- "CARGO_PKG_VERSION": "0.9.8",
17419+ "CARGO_PKG_VERSION": "0.9.7",
1741817420 "CARGO_PKG_VERSION_MAJOR": "0",
1741917421 "CARGO_PKG_VERSION_MINOR": "9",
17420- "CARGO_PKG_VERSION_PATCH": "8",
17422+ "CARGO_PKG_VERSION_PATCH": "7",
1742117423 "CARGO_PKG_VERSION_PRE": "",
1742217424 },
1742317425 features = [
@@ -17432,23 +17434,23 @@ cargo.rust_library(
1743217434 )
1743317435
1743417436 http_archive(
17435- name = "openh264-sys2-0.9.8.crate",
17436- sha256 = "6ada29a4cadc13d4d326737af87c13e224210d7d99fe47594e9f3f9b0102fd70",
17437- strip_prefix = "openh264-sys2-0.9.8",
17438- urls = ["https://static.crates.io/crates/openh264-sys2/0.9.8/download"],
17437+ name = "openh264-sys2-0.9.7.crate",
17438+ sha256 = "75a8867e48183bbd9147380227448c065fe456eb30b0ebc68929809c36c30985",
17439+ strip_prefix = "openh264-sys2-0.9.7",
17440+ urls = ["https://static.crates.io/crates/openh264-sys2/0.9.7/download"],
1743917441 visibility = [],
1744017442 )
1744117443
1744217444 cargo.rust_library(
1744317445 name = "openh264-sys2-0.9",
17444- srcs = [":openh264-sys2-0.9.8.crate"],
17446+ srcs = [":openh264-sys2-0.9.7.crate"],
1744517447 crate = "openh264_sys2",
17446- crate_root = "openh264-sys2-0.9.8.crate/src/lib.rs",
17448+ crate_root = "openh264-sys2-0.9.7.crate/src/lib.rs",
1744717449 edition = "2024",
1744817450 env = {
1744917451 "CARGO_BIN_NAME": "openh264_sys2",
1745017452 "CARGO_CRATE_NAME": "openh264_sys2",
17451- "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.8.crate",
17453+ "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.7.crate",
1745217454 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",
1745317455 "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.",
1745417456 "CARGO_PKG_HOMEPAGE": "",
@@ -17456,10 +17458,10 @@ cargo.rust_library(
1745617458 "CARGO_PKG_README": "README.md",
1745717459 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",
1745817460 "CARGO_PKG_RUST_VERSION": "1.85",
17459- "CARGO_PKG_VERSION": "0.9.8",
17461+ "CARGO_PKG_VERSION": "0.9.7",
1746017462 "CARGO_PKG_VERSION_MAJOR": "0",
1746117463 "CARGO_PKG_VERSION_MINOR": "9",
17462- "CARGO_PKG_VERSION_PATCH": "8",
17464+ "CARGO_PKG_VERSION_PATCH": "7",
1746317465 "CARGO_PKG_VERSION_PRE": "",
1746417466 "OUT_DIR": "$(location :openh264-sys2-0.9-build-script-run[out_dir])",
1746517467 },
@@ -17470,14 +17472,14 @@ cargo.rust_library(
1747017472
1747117473 cargo.rust_binary(
1747217474 name = "openh264-sys2-0.9-build-script-build",
17473- srcs = [":openh264-sys2-0.9.8.crate"],
17475+ srcs = [":openh264-sys2-0.9.7.crate"],
1747417476 crate = "build_script_build",
17475- crate_root = "openh264-sys2-0.9.8.crate/build.rs",
17477+ crate_root = "openh264-sys2-0.9.7.crate/build.rs",
1747617478 edition = "2024",
1747717479 env = {
1747817480 "CARGO_BIN_NAME": "build-script-build",
1747917481 "CARGO_CRATE_NAME": "build_script_build",
17480- "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.8.crate",
17482+ "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.7.crate",
1748117483 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",
1748217484 "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.",
1748317485 "CARGO_PKG_HOMEPAGE": "",
@@ -17485,10 +17487,10 @@ cargo.rust_binary(
1748517487 "CARGO_PKG_README": "README.md",
1748617488 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",
1748717489 "CARGO_PKG_RUST_VERSION": "1.85",
17488- "CARGO_PKG_VERSION": "0.9.8",
17490+ "CARGO_PKG_VERSION": "0.9.7",
1748917491 "CARGO_PKG_VERSION_MAJOR": "0",
1749017492 "CARGO_PKG_VERSION_MINOR": "9",
17491- "CARGO_PKG_VERSION_PATCH": "8",
17493+ "CARGO_PKG_VERSION_PATCH": "7",
1749217494 "CARGO_PKG_VERSION_PRE": "",
1749317495 },
1749417496 features = ["source"],
@@ -17513,11 +17515,12 @@ buildscript_run(
1751317515 "CARGO_PKG_RUST_VERSION": "1.85",
1751417516 "CARGO_PKG_VERSION_MAJOR": "0",
1751517517 "CARGO_PKG_VERSION_MINOR": "9",
17516- "CARGO_PKG_VERSION_PATCH": "8",
17518+ "CARGO_PKG_VERSION_PATCH": "7",
1751717519 "CARGO_PKG_VERSION_PRE": "",
17520+ "OPT_LEVEL": "2",
1751817521 },
1751917522 features = ["source"],
17520- version = "0.9.8",
17523+ version = "0.9.7",
1752117524 )
1752217525
1752317526 http_archive(
@@ -17599,23 +17602,23 @@ cargo.rust_library(
1759917602 )
1760017603
1760117604 http_archive(
17602- name = "papaya-0.2.5.crate",
17603- sha256 = "da2442474a9404698c42509b8967f437249dbc7b50493e83020333d3943ec0ae",
17604- strip_prefix = "papaya-0.2.5",
17605- urls = ["https://static.crates.io/crates/papaya/0.2.5/download"],
17605+ name = "papaya-0.2.4.crate",
17606+ sha256 = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7",
17607+ strip_prefix = "papaya-0.2.4",
17608+ urls = ["https://static.crates.io/crates/papaya/0.2.4/download"],
1760617609 visibility = [],
1760717610 )
1760817611
1760917612 cargo.rust_library(
1761017613 name = "papaya-0.2",
17611- srcs = [":papaya-0.2.5.crate"],
17614+ srcs = [":papaya-0.2.4.crate"],
1761217615 crate = "papaya",
17613- crate_root = "papaya-0.2.5.crate/src/lib.rs",
17616+ crate_root = "papaya-0.2.4.crate/src/lib.rs",
1761417617 edition = "2021",
1761517618 env = {
1761617619 "CARGO_BIN_NAME": "papaya",
1761717620 "CARGO_CRATE_NAME": "papaya",
17618- "CARGO_MANIFEST_DIR": "papaya-0.2.5.crate",
17621+ "CARGO_MANIFEST_DIR": "papaya-0.2.4.crate",
1761917622 "CARGO_PKG_AUTHORS": "Ibraheem Ahmed <ibraheem@ibraheem.ca>",
1762017623 "CARGO_PKG_DESCRIPTION": "A fast and ergonomic concurrent hash-table for read-heavy workloads.",
1762117624 "CARGO_PKG_HOMEPAGE": "",
@@ -17623,10 +17626,10 @@ cargo.rust_library(
1762317626 "CARGO_PKG_README": "README.md",
1762417627 "CARGO_PKG_REPOSITORY": "https://github.com/ibraheemdev/papaya",
1762517628 "CARGO_PKG_RUST_VERSION": "1.72.0",
17626- "CARGO_PKG_VERSION": "0.2.5",
17629+ "CARGO_PKG_VERSION": "0.2.4",
1762717630 "CARGO_PKG_VERSION_MAJOR": "0",
1762817631 "CARGO_PKG_VERSION_MINOR": "2",
17629- "CARGO_PKG_VERSION_PATCH": "5",
17632+ "CARGO_PKG_VERSION_PATCH": "4",
1763017633 "CARGO_PKG_VERSION_PRE": "",
1763117634 },
1763217635 visibility = [],
@@ -17806,6 +17809,7 @@ buildscript_run(
1780617809 "CARGO_PKG_VERSION_MINOR": "9",
1780717810 "CARGO_PKG_VERSION_PATCH": "12",
1780817811 "CARGO_PKG_VERSION_PRE": "",
17812+ "OPT_LEVEL": "2",
1780917813 },
1781017814 features = [
1781117815 "backtrace",
@@ -17934,6 +17938,7 @@ buildscript_run(
1793417938 "CARGO_PKG_VERSION_MINOR": "0",
1793517939 "CARGO_PKG_VERSION_PATCH": "15",
1793617940 "CARGO_PKG_VERSION_PRE": "",
17941+ "OPT_LEVEL": "2",
1793717942 },
1793817943 version = "1.0.15",
1793917944 )
@@ -18312,6 +18317,7 @@ buildscript_run(
1831218317 "CARGO_PKG_VERSION_MINOR": "0",
1831318318 "CARGO_PKG_VERSION_PATCH": "3",
1831418319 "CARGO_PKG_VERSION_PRE": "",
18320+ "OPT_LEVEL": "2",
1831518321 },
1831618322 features = [
1831718323 "keys",
@@ -18321,23 +18327,23 @@ buildscript_run(
1832118327 )
1832218328
1832318329 http_archive(
18324- name = "pkcs8-0.11.0.crate",
18325- sha256 = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7",
18326- strip_prefix = "pkcs8-0.11.0",
18327- urls = ["https://static.crates.io/crates/pkcs8/0.11.0/download"],
18330+ name = "pkcs8-0.11.0-rc.11.crate",
18331+ sha256 = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577",
18332+ strip_prefix = "pkcs8-0.11.0-rc.11",
18333+ urls = ["https://static.crates.io/crates/pkcs8/0.11.0-rc.11/download"],
1832818334 visibility = [],
1832918335 )
1833018336
1833118337 cargo.rust_library(
1833218338 name = "pkcs8-0.11",
18333- srcs = [":pkcs8-0.11.0.crate"],
18339+ srcs = [":pkcs8-0.11.0-rc.11.crate"],
1833418340 crate = "pkcs8",
18335- crate_root = "pkcs8-0.11.0.crate/src/lib.rs",
18341+ crate_root = "pkcs8-0.11.0-rc.11.crate/src/lib.rs",
1833618342 edition = "2024",
1833718343 env = {
1833818344 "CARGO_BIN_NAME": "pkcs8",
1833918345 "CARGO_CRATE_NAME": "pkcs8",
18340- "CARGO_MANIFEST_DIR": "pkcs8-0.11.0.crate",
18346+ "CARGO_MANIFEST_DIR": "pkcs8-0.11.0-rc.11.crate",
1834118347 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
1834218348 "CARGO_PKG_DESCRIPTION": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n",
1834318349 "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/pkcs8",
@@ -18345,11 +18351,11 @@ cargo.rust_library(
1834518351 "CARGO_PKG_README": "README.md",
1834618352 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",
1834718353 "CARGO_PKG_RUST_VERSION": "1.85",
18348- "CARGO_PKG_VERSION": "0.11.0",
18354+ "CARGO_PKG_VERSION": "0.11.0-rc.11",
1834918355 "CARGO_PKG_VERSION_MAJOR": "0",
1835018356 "CARGO_PKG_VERSION_MINOR": "11",
1835118357 "CARGO_PKG_VERSION_PATCH": "0",
18352- "CARGO_PKG_VERSION_PRE": "",
18358+ "CARGO_PKG_VERSION_PRE": "rc.11",
1835318359 },
1835418360 features = [
1835518361 "alloc",
@@ -18363,34 +18369,34 @@ cargo.rust_library(
1836318369 )
1836418370
1836518371 http_archive(
18366- name = "pkg-config-0.3.34.crate",
18367- sha256 = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548",
18368- strip_prefix = "pkg-config-0.3.34",
18369- urls = ["https://static.crates.io/crates/pkg-config/0.3.34/download"],
18372+ name = "pkg-config-0.3.33.crate",
18373+ sha256 = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e",
18374+ strip_prefix = "pkg-config-0.3.33",
18375+ urls = ["https://static.crates.io/crates/pkg-config/0.3.33/download"],
1837018376 visibility = [],
1837118377 )
1837218378
1837318379 cargo.rust_library(
1837418380 name = "pkg-config-0.3",
18375- srcs = [":pkg-config-0.3.34.crate"],
18381+ srcs = [":pkg-config-0.3.33.crate"],
1837618382 crate = "pkg_config",
18377- crate_root = "pkg-config-0.3.34.crate/src/lib.rs",
18378- edition = "2021",
18383+ crate_root = "pkg-config-0.3.33.crate/src/lib.rs",
18384+ edition = "2018",
1837918385 env = {
1838018386 "CARGO_BIN_NAME": "pkg_config",
1838118387 "CARGO_CRATE_NAME": "pkg_config",
18382- "CARGO_MANIFEST_DIR": "pkg-config-0.3.34.crate",
18388+ "CARGO_MANIFEST_DIR": "pkg-config-0.3.33.crate",
1838318389 "CARGO_PKG_AUTHORS": "Alex Crichton <alex@alexcrichton.com>",
1838418390 "CARGO_PKG_DESCRIPTION": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n",
1838518391 "CARGO_PKG_HOMEPAGE": "",
1838618392 "CARGO_PKG_NAME": "pkg-config",
1838718393 "CARGO_PKG_README": "README.md",
1838818394 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/pkg-config-rs",
18389- "CARGO_PKG_RUST_VERSION": "1.63",
18390- "CARGO_PKG_VERSION": "0.3.34",
18395+ "CARGO_PKG_RUST_VERSION": "1.31",
18396+ "CARGO_PKG_VERSION": "0.3.33",
1839118397 "CARGO_PKG_VERSION_MAJOR": "0",
1839218398 "CARGO_PKG_VERSION_MINOR": "3",
18393- "CARGO_PKG_VERSION_PATCH": "34",
18399+ "CARGO_PKG_VERSION_PATCH": "33",
1839418400 "CARGO_PKG_VERSION_PRE": "",
1839518401 },
1839618402 visibility = [],
@@ -18608,23 +18614,23 @@ cargo.rust_library(
1860818614 )
1860918615
1861018616 http_archive(
18611- name = "portable-atomic-1.15.0.crate",
18612- sha256 = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85",
18613- strip_prefix = "portable-atomic-1.15.0",
18614- urls = ["https://static.crates.io/crates/portable-atomic/1.15.0/download"],
18617+ name = "portable-atomic-1.14.0.crate",
18618+ sha256 = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3",
18619+ strip_prefix = "portable-atomic-1.14.0",
18620+ urls = ["https://static.crates.io/crates/portable-atomic/1.14.0/download"],
1861518621 visibility = [],
1861618622 )
1861718623
1861818624 cargo.rust_library(
1861918625 name = "portable-atomic-1",
18620- srcs = [":portable-atomic-1.15.0.crate"],
18626+ srcs = [":portable-atomic-1.14.0.crate"],
1862118627 crate = "portable_atomic",
18622- crate_root = "portable-atomic-1.15.0.crate/src/lib.rs",
18628+ crate_root = "portable-atomic-1.14.0.crate/src/lib.rs",
1862318629 edition = "2018",
1862418630 env = {
1862518631 "CARGO_BIN_NAME": "portable_atomic",
1862618632 "CARGO_CRATE_NAME": "portable_atomic",
18627- "CARGO_MANIFEST_DIR": "portable-atomic-1.15.0.crate",
18633+ "CARGO_MANIFEST_DIR": "portable-atomic-1.14.0.crate",
1862818634 "CARGO_PKG_AUTHORS": "",
1862918635 "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n",
1863018636 "CARGO_PKG_HOMEPAGE": "",
@@ -18632,9 +18638,9 @@ cargo.rust_library(
1863218638 "CARGO_PKG_README": "README.md",
1863318639 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",
1863418640 "CARGO_PKG_RUST_VERSION": "1.34",
18635- "CARGO_PKG_VERSION": "1.15.0",
18641+ "CARGO_PKG_VERSION": "1.14.0",
1863618642 "CARGO_PKG_VERSION_MAJOR": "1",
18637- "CARGO_PKG_VERSION_MINOR": "15",
18643+ "CARGO_PKG_VERSION_MINOR": "14",
1863818644 "CARGO_PKG_VERSION_PATCH": "0",
1863918645 "CARGO_PKG_VERSION_PRE": "",
1864018646 "OUT_DIR": "$(location :portable-atomic-1-build-script-run[out_dir])",
@@ -18652,14 +18658,14 @@ cargo.rust_library(
1865218658
1865318659 cargo.rust_binary(
1865418660 name = "portable-atomic-1-build-script-build",
18655- srcs = [":portable-atomic-1.15.0.crate"],
18661+ srcs = [":portable-atomic-1.14.0.crate"],
1865618662 crate = "build_script_build",
18657- crate_root = "portable-atomic-1.15.0.crate/build.rs",
18663+ crate_root = "portable-atomic-1.14.0.crate/build.rs",
1865818664 edition = "2018",
1865918665 env = {
1866018666 "CARGO_BIN_NAME": "build-script-build",
1866118667 "CARGO_CRATE_NAME": "build_script_build",
18662- "CARGO_MANIFEST_DIR": "portable-atomic-1.15.0.crate",
18668+ "CARGO_MANIFEST_DIR": "portable-atomic-1.14.0.crate",
1866318669 "CARGO_PKG_AUTHORS": "",
1866418670 "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n",
1866518671 "CARGO_PKG_HOMEPAGE": "",
@@ -18667,9 +18673,9 @@ cargo.rust_binary(
1866718673 "CARGO_PKG_README": "README.md",
1866818674 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",
1866918675 "CARGO_PKG_RUST_VERSION": "1.34",
18670- "CARGO_PKG_VERSION": "1.15.0",
18676+ "CARGO_PKG_VERSION": "1.14.0",
1867118677 "CARGO_PKG_VERSION_MAJOR": "1",
18672- "CARGO_PKG_VERSION_MINOR": "15",
18678+ "CARGO_PKG_VERSION_MINOR": "14",
1867318679 "CARGO_PKG_VERSION_PATCH": "0",
1867418680 "CARGO_PKG_VERSION_PRE": "",
1867518681 },
@@ -18694,9 +18700,10 @@ buildscript_run(
1869418700 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",
1869518701 "CARGO_PKG_RUST_VERSION": "1.34",
1869618702 "CARGO_PKG_VERSION_MAJOR": "1",
18697- "CARGO_PKG_VERSION_MINOR": "15",
18703+ "CARGO_PKG_VERSION_MINOR": "14",
1869818704 "CARGO_PKG_VERSION_PATCH": "0",
1869918705 "CARGO_PKG_VERSION_PRE": "",
18706+ "OPT_LEVEL": "2",
1870018707 },
1870118708 features = [
1870218709 "default",
@@ -18704,7 +18711,7 @@ buildscript_run(
1870418711 "serde",
1870518712 "std",
1870618713 ],
18707- version = "1.15.0",
18714+ version = "1.14.0",
1870818715 )
1870918716
1871018717 http_archive(
@@ -18856,23 +18863,23 @@ cargo.rust_library(
1885618863 )
1885718864
1885818865 http_archive(
18859- name = "potential_utf-0.1.6.crate",
18860- sha256 = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661",
18861- strip_prefix = "potential_utf-0.1.6",
18862- urls = ["https://static.crates.io/crates/potential_utf/0.1.6/download"],
18866+ name = "potential_utf-0.1.5.crate",
18867+ sha256 = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564",
18868+ strip_prefix = "potential_utf-0.1.5",
18869+ urls = ["https://static.crates.io/crates/potential_utf/0.1.5/download"],
1886318870 visibility = [],
1886418871 )
1886518872
1886618873 cargo.rust_library(
1886718874 name = "potential_utf-0.1",
18868- srcs = [":potential_utf-0.1.6.crate"],
18875+ srcs = [":potential_utf-0.1.5.crate"],
1886918876 crate = "potential_utf",
18870- crate_root = "potential_utf-0.1.6.crate/src/lib.rs",
18877+ crate_root = "potential_utf-0.1.5.crate/src/lib.rs",
1887118878 edition = "2021",
1887218879 env = {
1887318880 "CARGO_BIN_NAME": "potential_utf",
1887418881 "CARGO_CRATE_NAME": "potential_utf",
18875- "CARGO_MANIFEST_DIR": "potential_utf-0.1.6.crate",
18882+ "CARGO_MANIFEST_DIR": "potential_utf-0.1.5.crate",
1887618883 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
1887718884 "CARGO_PKG_DESCRIPTION": "Unvalidated string and character types",
1887818885 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
@@ -18880,10 +18887,10 @@ cargo.rust_library(
1888018887 "CARGO_PKG_README": "README.md",
1888118888 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
1888218889 "CARGO_PKG_RUST_VERSION": "1.82",
18883- "CARGO_PKG_VERSION": "0.1.6",
18890+ "CARGO_PKG_VERSION": "0.1.5",
1888418891 "CARGO_PKG_VERSION_MAJOR": "0",
1888518892 "CARGO_PKG_VERSION_MINOR": "1",
18886- "CARGO_PKG_VERSION_PATCH": "6",
18893+ "CARGO_PKG_VERSION_PATCH": "5",
1888718894 "CARGO_PKG_VERSION_PRE": "",
1888818895 },
1888918896 features = ["zerovec"],
@@ -19048,6 +19055,7 @@ buildscript_run(
1904819055 "CARGO_PKG_VERSION_MINOR": "2",
1904919056 "CARGO_PKG_VERSION_PATCH": "37",
1905019057 "CARGO_PKG_VERSION_PRE": "",
19058+ "OPT_LEVEL": "2",
1905119059 },
1905219060 features = ["verbatim"],
1905319061 version = "0.2.37",
@@ -19209,6 +19217,7 @@ buildscript_run(
1920919217 "CARGO_PKG_VERSION_MINOR": "0",
1921019218 "CARGO_PKG_VERSION_PATCH": "107",
1921119219 "CARGO_PKG_VERSION_PRE": "",
19220+ "OPT_LEVEL": "2",
1921219221 },
1921319222 features = [
1921419223 "default",
@@ -19493,6 +19502,7 @@ buildscript_run(
1949319502 "CARGO_PKG_VERSION_MINOR": "0",
1949419503 "CARGO_PKG_VERSION_PATCH": "47",
1949519504 "CARGO_PKG_VERSION_PRE": "",
19505+ "OPT_LEVEL": "2",
1949619506 },
1949719507 features = [
1949819508 "default",
@@ -19508,23 +19518,23 @@ alias(
1950819518 )
1950919519
1951019520 http_archive(
19511- name = "rand-0.8.8.crate",
19512- sha256 = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c",
19513- strip_prefix = "rand-0.8.8",
19514- urls = ["https://static.crates.io/crates/rand/0.8.8/download"],
19521+ name = "rand-0.8.7.crate",
19522+ sha256 = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a",
19523+ strip_prefix = "rand-0.8.7",
19524+ urls = ["https://static.crates.io/crates/rand/0.8.7/download"],
1951519525 visibility = [],
1951619526 )
1951719527
1951819528 cargo.rust_library(
1951919529 name = "rand-0.8",
19520- srcs = [":rand-0.8.8.crate"],
19530+ srcs = [":rand-0.8.7.crate"],
1952119531 crate = "rand",
19522- crate_root = "rand-0.8.8.crate/src/lib.rs",
19532+ crate_root = "rand-0.8.7.crate/src/lib.rs",
1952319533 edition = "2018",
1952419534 env = {
1952519535 "CARGO_BIN_NAME": "rand",
1952619536 "CARGO_CRATE_NAME": "rand",
19527- "CARGO_MANIFEST_DIR": "rand-0.8.8.crate",
19537+ "CARGO_MANIFEST_DIR": "rand-0.8.7.crate",
1952819538 "CARGO_PKG_AUTHORS": "The Rand Project Developers:The Rust Project Developers",
1952919539 "CARGO_PKG_DESCRIPTION": "Random number generators and other randomness functionality.\n",
1953019540 "CARGO_PKG_HOMEPAGE": "https://rust-random.github.io/book",
@@ -19532,10 +19542,10 @@ cargo.rust_library(
1953219542 "CARGO_PKG_README": "README.md",
1953319543 "CARGO_PKG_REPOSITORY": "https://github.com/rust-random/rand",
1953419544 "CARGO_PKG_RUST_VERSION": "",
19535- "CARGO_PKG_VERSION": "0.8.8",
19545+ "CARGO_PKG_VERSION": "0.8.7",
1953619546 "CARGO_PKG_VERSION_MAJOR": "0",
1953719547 "CARGO_PKG_VERSION_MINOR": "8",
19538- "CARGO_PKG_VERSION_PATCH": "8",
19548+ "CARGO_PKG_VERSION_PATCH": "7",
1953919549 "CARGO_PKG_VERSION_PRE": "",
1954019550 },
1954119551 features = [
@@ -19998,28 +20008,29 @@ buildscript_run(
1999820008 "CARGO_PKG_VERSION_MINOR": "13",
1999920009 "CARGO_PKG_VERSION_PATCH": "0",
2000020010 "CARGO_PKG_VERSION_PRE": "",
20011+ "OPT_LEVEL": "2",
2000120012 },
2000220013 version = "1.13.0",
2000320014 )
2000420015
2000520016 http_archive(
20006- name = "rcgen-0.14.10.crate",
20007- sha256 = "8774e05a7d0de114588e6a28fe7e71694b82614ed569d86d8b389dfbc98b8ad8",
20008- strip_prefix = "rcgen-0.14.10",
20009- urls = ["https://static.crates.io/crates/rcgen/0.14.10/download"],
20017+ name = "rcgen-0.14.8.crate",
20018+ sha256 = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055",
20019+ strip_prefix = "rcgen-0.14.8",
20020+ urls = ["https://static.crates.io/crates/rcgen/0.14.8/download"],
2001020021 visibility = [],
2001120022 )
2001220023
2001320024 cargo.rust_library(
2001420025 name = "rcgen-0.14",
20015- srcs = [":rcgen-0.14.10.crate"],
20026+ srcs = [":rcgen-0.14.8.crate"],
2001620027 crate = "rcgen",
20017- crate_root = "rcgen-0.14.10.crate/src/lib.rs",
20028+ crate_root = "rcgen-0.14.8.crate/src/lib.rs",
2001820029 edition = "2021",
2001920030 env = {
2002020031 "CARGO_BIN_NAME": "rcgen",
2002120032 "CARGO_CRATE_NAME": "rcgen",
20022- "CARGO_MANIFEST_DIR": "rcgen-0.14.10.crate",
20033+ "CARGO_MANIFEST_DIR": "rcgen-0.14.8.crate",
2002320034 "CARGO_PKG_AUTHORS": "",
2002420035 "CARGO_PKG_DESCRIPTION": "Rust X.509 certificate generator",
2002520036 "CARGO_PKG_HOMEPAGE": "",
@@ -20027,10 +20038,10 @@ cargo.rust_library(
2002720038 "CARGO_PKG_README": "README.md",
2002820039 "CARGO_PKG_REPOSITORY": "https://github.com/rustls/rcgen",
2002920040 "CARGO_PKG_RUST_VERSION": "1.88",
20030- "CARGO_PKG_VERSION": "0.14.10",
20041+ "CARGO_PKG_VERSION": "0.14.8",
2003120042 "CARGO_PKG_VERSION_MAJOR": "0",
2003220043 "CARGO_PKG_VERSION_MINOR": "14",
20033- "CARGO_PKG_VERSION_PATCH": "10",
20044+ "CARGO_PKG_VERSION_PATCH": "8",
2003420045 "CARGO_PKG_VERSION_PRE": "",
2003520046 },
2003620047 features = [
@@ -20085,23 +20096,23 @@ cargo.rust_library(
2008520096 )
2008620097
2008720098 http_archive(
20088- name = "ref-cast-1.0.27.crate",
20089- sha256 = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3",
20090- strip_prefix = "ref-cast-1.0.27",
20091- urls = ["https://static.crates.io/crates/ref-cast/1.0.27/download"],
20099+ name = "ref-cast-1.0.26.crate",
20100+ sha256 = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d",
20101+ strip_prefix = "ref-cast-1.0.26",
20102+ urls = ["https://static.crates.io/crates/ref-cast/1.0.26/download"],
2009220103 visibility = [],
2009320104 )
2009420105
2009520106 cargo.rust_library(
2009620107 name = "ref-cast-1",
20097- srcs = [":ref-cast-1.0.27.crate"],
20108+ srcs = [":ref-cast-1.0.26.crate"],
2009820109 crate = "ref_cast",
20099- crate_root = "ref-cast-1.0.27.crate/src/lib.rs",
20110+ crate_root = "ref-cast-1.0.26.crate/src/lib.rs",
2010020111 edition = "2021",
2010120112 env = {
2010220113 "CARGO_BIN_NAME": "ref_cast",
2010320114 "CARGO_CRATE_NAME": "ref_cast",
20104- "CARGO_MANIFEST_DIR": "ref-cast-1.0.27.crate",
20115+ "CARGO_MANIFEST_DIR": "ref-cast-1.0.26.crate",
2010520116 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2010620117 "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.",
2010720118 "CARGO_PKG_HOMEPAGE": "",
@@ -20109,10 +20120,10 @@ cargo.rust_library(
2010920120 "CARGO_PKG_README": "README.md",
2011020121 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",
2011120122 "CARGO_PKG_RUST_VERSION": "1.71",
20112- "CARGO_PKG_VERSION": "1.0.27",
20123+ "CARGO_PKG_VERSION": "1.0.26",
2011320124 "CARGO_PKG_VERSION_MAJOR": "1",
2011420125 "CARGO_PKG_VERSION_MINOR": "0",
20115- "CARGO_PKG_VERSION_PATCH": "27",
20126+ "CARGO_PKG_VERSION_PATCH": "26",
2011620127 "CARGO_PKG_VERSION_PRE": "",
2011720128 "OUT_DIR": "$(location :ref-cast-1-build-script-run[out_dir])",
2011820129 },
@@ -20123,14 +20134,14 @@ cargo.rust_library(
2012320134
2012420135 cargo.rust_binary(
2012520136 name = "ref-cast-1-build-script-build",
20126- srcs = [":ref-cast-1.0.27.crate"],
20137+ srcs = [":ref-cast-1.0.26.crate"],
2012720138 crate = "build_script_build",
20128- crate_root = "ref-cast-1.0.27.crate/build.rs",
20139+ crate_root = "ref-cast-1.0.26.crate/build.rs",
2012920140 edition = "2021",
2013020141 env = {
2013120142 "CARGO_BIN_NAME": "build-script-build",
2013220143 "CARGO_CRATE_NAME": "build_script_build",
20133- "CARGO_MANIFEST_DIR": "ref-cast-1.0.27.crate",
20144+ "CARGO_MANIFEST_DIR": "ref-cast-1.0.26.crate",
2013420145 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2013520146 "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.",
2013620147 "CARGO_PKG_HOMEPAGE": "",
@@ -20138,10 +20149,10 @@ cargo.rust_binary(
2013820149 "CARGO_PKG_README": "README.md",
2013920150 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",
2014020151 "CARGO_PKG_RUST_VERSION": "1.71",
20141- "CARGO_PKG_VERSION": "1.0.27",
20152+ "CARGO_PKG_VERSION": "1.0.26",
2014220153 "CARGO_PKG_VERSION_MAJOR": "1",
2014320154 "CARGO_PKG_VERSION_MINOR": "0",
20144- "CARGO_PKG_VERSION_PATCH": "27",
20155+ "CARGO_PKG_VERSION_PATCH": "26",
2014520156 "CARGO_PKG_VERSION_PRE": "",
2014620157 },
2014720158 visibility = [],
@@ -20160,30 +20171,31 @@ buildscript_run(
2016020171 "CARGO_PKG_RUST_VERSION": "1.71",
2016120172 "CARGO_PKG_VERSION_MAJOR": "1",
2016220173 "CARGO_PKG_VERSION_MINOR": "0",
20163- "CARGO_PKG_VERSION_PATCH": "27",
20174+ "CARGO_PKG_VERSION_PATCH": "26",
2016420175 "CARGO_PKG_VERSION_PRE": "",
20176+ "OPT_LEVEL": "2",
2016520177 },
20166- version = "1.0.27",
20178+ version = "1.0.26",
2016720179 )
2016820180
2016920181 http_archive(
20170- name = "ref-cast-impl-1.0.27.crate",
20171- sha256 = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a",
20172- strip_prefix = "ref-cast-impl-1.0.27",
20173- urls = ["https://static.crates.io/crates/ref-cast-impl/1.0.27/download"],
20182+ name = "ref-cast-impl-1.0.26.crate",
20183+ sha256 = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c",
20184+ strip_prefix = "ref-cast-impl-1.0.26",
20185+ urls = ["https://static.crates.io/crates/ref-cast-impl/1.0.26/download"],
2017420186 visibility = [],
2017520187 )
2017620188
2017720189 cargo.rust_library(
2017820190 name = "ref-cast-impl-1",
20179- srcs = [":ref-cast-impl-1.0.27.crate"],
20191+ srcs = [":ref-cast-impl-1.0.26.crate"],
2018020192 crate = "ref_cast_impl",
20181- crate_root = "ref-cast-impl-1.0.27.crate/src/lib.rs",
20193+ crate_root = "ref-cast-impl-1.0.26.crate/src/lib.rs",
2018220194 edition = "2021",
2018320195 env = {
2018420196 "CARGO_BIN_NAME": "ref_cast_impl",
2018520197 "CARGO_CRATE_NAME": "ref_cast_impl",
20186- "CARGO_MANIFEST_DIR": "ref-cast-impl-1.0.27.crate",
20198+ "CARGO_MANIFEST_DIR": "ref-cast-impl-1.0.26.crate",
2018720199 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2018820200 "CARGO_PKG_DESCRIPTION": "Derive implementation for ref_cast::RefCast.",
2018920201 "CARGO_PKG_HOMEPAGE": "",
@@ -20191,10 +20203,10 @@ cargo.rust_library(
2019120203 "CARGO_PKG_README": "",
2019220204 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",
2019320205 "CARGO_PKG_RUST_VERSION": "1.71",
20194- "CARGO_PKG_VERSION": "1.0.27",
20206+ "CARGO_PKG_VERSION": "1.0.26",
2019520207 "CARGO_PKG_VERSION_MAJOR": "1",
2019620208 "CARGO_PKG_VERSION_MINOR": "0",
20197- "CARGO_PKG_VERSION_PATCH": "27",
20209+ "CARGO_PKG_VERSION_PATCH": "26",
2019820210 "CARGO_PKG_VERSION_PRE": "",
2019920211 },
2020020212 proc_macro = True,
@@ -20266,23 +20278,23 @@ cargo.rust_library(
2026620278 )
2026720279
2026820280 http_archive(
20269- name = "regex-automata-0.4.18.crate",
20270- sha256 = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2",
20271- strip_prefix = "regex-automata-0.4.18",
20272- urls = ["https://static.crates.io/crates/regex-automata/0.4.18/download"],
20281+ name = "regex-automata-0.4.16.crate",
20282+ sha256 = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad",
20283+ strip_prefix = "regex-automata-0.4.16",
20284+ urls = ["https://static.crates.io/crates/regex-automata/0.4.16/download"],
2027320285 visibility = [],
2027420286 )
2027520287
2027620288 cargo.rust_library(
2027720289 name = "regex-automata-0.4",
20278- srcs = [":regex-automata-0.4.18.crate"],
20290+ srcs = [":regex-automata-0.4.16.crate"],
2027920291 crate = "regex_automata",
20280- crate_root = "regex-automata-0.4.18.crate/src/lib.rs",
20292+ crate_root = "regex-automata-0.4.16.crate/src/lib.rs",
2028120293 edition = "2021",
2028220294 env = {
2028320295 "CARGO_BIN_NAME": "regex_automata",
2028420296 "CARGO_CRATE_NAME": "regex_automata",
20285- "CARGO_MANIFEST_DIR": "regex-automata-0.4.18.crate",
20297+ "CARGO_MANIFEST_DIR": "regex-automata-0.4.16.crate",
2028620298 "CARGO_PKG_AUTHORS": "The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>",
2028720299 "CARGO_PKG_DESCRIPTION": "Automata construction and matching using regular expressions.",
2028820300 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/regex/tree/master/regex-automata",
@@ -20290,10 +20302,10 @@ cargo.rust_library(
2029020302 "CARGO_PKG_README": "README.md",
2029120303 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/regex",
2029220304 "CARGO_PKG_RUST_VERSION": "1.65",
20293- "CARGO_PKG_VERSION": "0.4.18",
20305+ "CARGO_PKG_VERSION": "0.4.16",
2029420306 "CARGO_PKG_VERSION_MAJOR": "0",
2029520307 "CARGO_PKG_VERSION_MINOR": "4",
20296- "CARGO_PKG_VERSION_PATCH": "18",
20308+ "CARGO_PKG_VERSION_PATCH": "16",
2029720309 "CARGO_PKG_VERSION_PRE": "",
2029820310 },
2029920311 features = [
@@ -21019,6 +21031,7 @@ buildscript_run(
2101921031 "CARGO_PKG_VERSION_MINOR": "38",
2102021032 "CARGO_PKG_VERSION_PATCH": "44",
2102121033 "CARGO_PKG_VERSION_PRE": "",
21034+ "OPT_LEVEL": "2",
2102221035 },
2102321036 features = [
2102421037 "alloc",
@@ -21144,6 +21157,7 @@ buildscript_run(
2114421157 "CARGO_PKG_VERSION_MINOR": "1",
2114521158 "CARGO_PKG_VERSION_PATCH": "4",
2114621159 "CARGO_PKG_VERSION_PRE": "",
21160+ "OPT_LEVEL": "2",
2114721161 },
2114821162 features = [
2114921163 "alloc",
@@ -21275,6 +21289,7 @@ buildscript_run(
2127521289 "CARGO_PKG_VERSION_MINOR": "23",
2127621290 "CARGO_PKG_VERSION_PATCH": "43",
2127721291 "CARGO_PKG_VERSION_PRE": "",
21292+ "OPT_LEVEL": "2",
2127821293 },
2127921294 features = [
2128021295 "aws-lc-rs",
@@ -21558,23 +21573,23 @@ cargo.rust_library(
2155821573 )
2155921574
2156021575 http_archive(
21561- name = "rustls-webpki-0.103.15.crate",
21562- sha256 = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2",
21563- strip_prefix = "rustls-webpki-0.103.15",
21564- urls = ["https://static.crates.io/crates/rustls-webpki/0.103.15/download"],
21576+ name = "rustls-webpki-0.103.13.crate",
21577+ sha256 = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e",
21578+ strip_prefix = "rustls-webpki-0.103.13",
21579+ urls = ["https://static.crates.io/crates/rustls-webpki/0.103.13/download"],
2156521580 visibility = [],
2156621581 )
2156721582
2156821583 cargo.rust_library(
2156921584 name = "rustls-webpki-0.103",
21570- srcs = [":rustls-webpki-0.103.15.crate"],
21585+ srcs = [":rustls-webpki-0.103.13.crate"],
2157121586 crate = "webpki",
21572- crate_root = "rustls-webpki-0.103.15.crate/src/lib.rs",
21587+ crate_root = "rustls-webpki-0.103.13.crate/src/lib.rs",
2157321588 edition = "2021",
2157421589 env = {
2157521590 "CARGO_BIN_NAME": "webpki",
2157621591 "CARGO_CRATE_NAME": "webpki",
21577- "CARGO_MANIFEST_DIR": "rustls-webpki-0.103.15.crate",
21592+ "CARGO_MANIFEST_DIR": "rustls-webpki-0.103.13.crate",
2157821593 "CARGO_PKG_AUTHORS": "",
2157921594 "CARGO_PKG_DESCRIPTION": "Web PKI X.509 Certificate Verification.",
2158021595 "CARGO_PKG_HOMEPAGE": "",
@@ -21582,10 +21597,10 @@ cargo.rust_library(
2158221597 "CARGO_PKG_README": "README.md",
2158321598 "CARGO_PKG_REPOSITORY": "https://github.com/rustls/webpki",
2158421599 "CARGO_PKG_RUST_VERSION": "1.71",
21585- "CARGO_PKG_VERSION": "0.103.15",
21600+ "CARGO_PKG_VERSION": "0.103.13",
2158621601 "CARGO_PKG_VERSION_MAJOR": "0",
2158721602 "CARGO_PKG_VERSION_MINOR": "103",
21588- "CARGO_PKG_VERSION_PATCH": "15",
21603+ "CARGO_PKG_VERSION_PATCH": "13",
2158921604 "CARGO_PKG_VERSION_PRE": "",
2159021605 },
2159121606 features = [
@@ -21682,6 +21697,7 @@ buildscript_run(
2168221697 "CARGO_PKG_VERSION_MINOR": "0",
2168321698 "CARGO_PKG_VERSION_PATCH": "23",
2168421699 "CARGO_PKG_VERSION_PRE": "",
21700+ "OPT_LEVEL": "2",
2168521701 },
2168621702 version = "1.0.23",
2168721703 )
@@ -21809,6 +21825,7 @@ buildscript_run(
2180921825 "CARGO_PKG_VERSION_MINOR": "1",
2181021826 "CARGO_PKG_VERSION_PATCH": "0",
2181121827 "CARGO_PKG_VERSION_PRE": "",
21828+ "OPT_LEVEL": "2",
2181221829 },
2181321830 features = [
2181421831 "camera-apple",
@@ -21916,6 +21933,7 @@ buildscript_run(
2191621933 "CARGO_PKG_VERSION_MINOR": "1",
2191721934 "CARGO_PKG_VERSION_PATCH": "0",
2191821935 "CARGO_PKG_VERSION_PRE": "",
21936+ "OPT_LEVEL": "2",
2191921937 },
2192021938 features = [
2192121939 "h264",
@@ -21961,23 +21979,23 @@ cargo.rust_library(
2196121979 )
2196221980
2196321981 http_archive(
21964- name = "safe_arch-1.2.0.crate",
21965- sha256 = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f",
21966- strip_prefix = "safe_arch-1.2.0",
21967- urls = ["https://static.crates.io/crates/safe_arch/1.2.0/download"],
21982+ name = "safe_arch-1.1.0.crate",
21983+ sha256 = "3a52ec151f024d703f9fd65abb7cbe81e7cdb39f18917a3a37e3014470dc7c59",
21984+ strip_prefix = "safe_arch-1.1.0",
21985+ urls = ["https://static.crates.io/crates/safe_arch/1.1.0/download"],
2196821986 visibility = [],
2196921987 )
2197021988
2197121989 cargo.rust_library(
2197221990 name = "safe_arch-1",
21973- srcs = [":safe_arch-1.2.0.crate"],
21991+ srcs = [":safe_arch-1.1.0.crate"],
2197421992 crate = "safe_arch",
21975- crate_root = "safe_arch-1.2.0.crate/src/lib.rs",
21993+ crate_root = "safe_arch-1.1.0.crate/src/lib.rs",
2197621994 edition = "2024",
2197721995 env = {
2197821996 "CARGO_BIN_NAME": "safe_arch",
2197921997 "CARGO_CRATE_NAME": "safe_arch",
21980- "CARGO_MANIFEST_DIR": "safe_arch-1.2.0.crate",
21998+ "CARGO_MANIFEST_DIR": "safe_arch-1.1.0.crate",
2198121999 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",
2198222000 "CARGO_PKG_DESCRIPTION": "Crate that exposes `core::arch` safely via `#[cfg()]`.",
2198322001 "CARGO_PKG_HOMEPAGE": "",
@@ -21985,9 +22003,9 @@ cargo.rust_library(
2198522003 "CARGO_PKG_README": "README.md",
2198622004 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/safe_arch",
2198722005 "CARGO_PKG_RUST_VERSION": "1.89",
21988- "CARGO_PKG_VERSION": "1.2.0",
22006+ "CARGO_PKG_VERSION": "1.1.0",
2198922007 "CARGO_PKG_VERSION_MAJOR": "1",
21990- "CARGO_PKG_VERSION_MINOR": "2",
22008+ "CARGO_PKG_VERSION_MINOR": "1",
2199122009 "CARGO_PKG_VERSION_PATCH": "0",
2199222010 "CARGO_PKG_VERSION_PRE": "",
2199322011 },
@@ -22266,7 +22284,14 @@ cargo.rust_library(
2226622284 "CARGO_PKG_VERSION_PATCH": "1",
2226722285 "CARGO_PKG_VERSION_PRE": "",
2226822286 },
22287+ features = [
22288+ "default",
22289+ "fast-barrier",
22290+ "libc",
22291+ "windows-sys",
22292+ ],
2226922293 visibility = [],
22294+ deps = [":libc-0.2"],
2227022295 )
2227122296
2227222297 http_archive(
@@ -22438,6 +22463,7 @@ buildscript_run(
2243822463 "CARGO_PKG_VERSION_MINOR": "0",
2243922464 "CARGO_PKG_VERSION_PATCH": "229",
2244022465 "CARGO_PKG_VERSION_PRE": "",
22466+ "OPT_LEVEL": "2",
2244122467 },
2244222468 features = [
2244322469 "alloc",
@@ -22613,6 +22639,7 @@ buildscript_run(
2261322639 "CARGO_PKG_VERSION_MINOR": "0",
2261422640 "CARGO_PKG_VERSION_PATCH": "229",
2261522641 "CARGO_PKG_VERSION_PRE": "",
22642+ "OPT_LEVEL": "2",
2261622643 },
2261722644 features = [
2261822645 "alloc",
@@ -22757,6 +22784,7 @@ buildscript_run(
2275722784 "CARGO_PKG_VERSION_MINOR": "0",
2275822785 "CARGO_PKG_VERSION_PATCH": "151",
2275922786 "CARGO_PKG_VERSION_PRE": "",
22787+ "OPT_LEVEL": "2",
2276022788 },
2276122789 features = [
2276222790 "alloc",
@@ -22807,23 +22835,23 @@ cargo.rust_library(
2280722835 )
2280822836
2280922837 http_archive(
22810- name = "serde_with-3.22.0.crate",
22811- sha256 = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a",
22812- strip_prefix = "serde_with-3.22.0",
22813- urls = ["https://static.crates.io/crates/serde_with/3.22.0/download"],
22838+ name = "serde_with-3.21.0.crate",
22839+ sha256 = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c",
22840+ strip_prefix = "serde_with-3.21.0",
22841+ urls = ["https://static.crates.io/crates/serde_with/3.21.0/download"],
2281422842 visibility = [],
2281522843 )
2281622844
2281722845 cargo.rust_library(
2281822846 name = "serde_with-3",
22819- srcs = [":serde_with-3.22.0.crate"],
22847+ srcs = [":serde_with-3.21.0.crate"],
2282022848 crate = "serde_with",
22821- crate_root = "serde_with-3.22.0.crate/src/lib.rs",
22849+ crate_root = "serde_with-3.21.0.crate/src/lib.rs",
2282222850 edition = "2021",
2282322851 env = {
2282422852 "CARGO_BIN_NAME": "serde_with",
2282522853 "CARGO_CRATE_NAME": "serde_with",
22826- "CARGO_MANIFEST_DIR": "serde_with-3.22.0.crate",
22854+ "CARGO_MANIFEST_DIR": "serde_with-3.21.0.crate",
2282722855 "CARGO_PKG_AUTHORS": "Jonas Bushart:Marcin Kaźmierczak",
2282822856 "CARGO_PKG_DESCRIPTION": "Custom de/serialization functions for Rust's serde",
2282922857 "CARGO_PKG_HOMEPAGE": "",
@@ -22831,9 +22859,9 @@ cargo.rust_library(
2283122859 "CARGO_PKG_README": "README.md",
2283222860 "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/",
2283322861 "CARGO_PKG_RUST_VERSION": "1.88",
22834- "CARGO_PKG_VERSION": "3.22.0",
22862+ "CARGO_PKG_VERSION": "3.21.0",
2283522863 "CARGO_PKG_VERSION_MAJOR": "3",
22836- "CARGO_PKG_VERSION_MINOR": "22",
22864+ "CARGO_PKG_VERSION_MINOR": "21",
2283722865 "CARGO_PKG_VERSION_PATCH": "0",
2283822866 "CARGO_PKG_VERSION_PRE": "",
2283922867 },
@@ -22853,23 +22881,23 @@ cargo.rust_library(
2285322881 )
2285422882
2285522883 http_archive(
22856- name = "serde_with_macros-3.22.0.crate",
22857- sha256 = "8705578779c2b6bd90d84d66eb2e206b708b1a4d7b9f17641b293545bf1c7e46",
22858- strip_prefix = "serde_with_macros-3.22.0",
22859- urls = ["https://static.crates.io/crates/serde_with_macros/3.22.0/download"],
22884+ name = "serde_with_macros-3.21.0.crate",
22885+ sha256 = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660",
22886+ strip_prefix = "serde_with_macros-3.21.0",
22887+ urls = ["https://static.crates.io/crates/serde_with_macros/3.21.0/download"],
2286022888 visibility = [],
2286122889 )
2286222890
2286322891 cargo.rust_library(
2286422892 name = "serde_with_macros-3",
22865- srcs = [":serde_with_macros-3.22.0.crate"],
22893+ srcs = [":serde_with_macros-3.21.0.crate"],
2286622894 crate = "serde_with_macros",
22867- crate_root = "serde_with_macros-3.22.0.crate/src/lib.rs",
22895+ crate_root = "serde_with_macros-3.21.0.crate/src/lib.rs",
2286822896 edition = "2021",
2286922897 env = {
2287022898 "CARGO_BIN_NAME": "serde_with_macros",
2287122899 "CARGO_CRATE_NAME": "serde_with_macros",
22872- "CARGO_MANIFEST_DIR": "serde_with_macros-3.22.0.crate",
22900+ "CARGO_MANIFEST_DIR": "serde_with_macros-3.21.0.crate",
2287322901 "CARGO_PKG_AUTHORS": "Jonas Bushart",
2287422902 "CARGO_PKG_DESCRIPTION": "proc-macro library for serde_with",
2287522903 "CARGO_PKG_HOMEPAGE": "",
@@ -22877,9 +22905,9 @@ cargo.rust_library(
2287722905 "CARGO_PKG_README": "README.md",
2287822906 "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/",
2287922907 "CARGO_PKG_RUST_VERSION": "1.88",
22880- "CARGO_PKG_VERSION": "3.22.0",
22908+ "CARGO_PKG_VERSION": "3.21.0",
2288122909 "CARGO_PKG_VERSION_MAJOR": "3",
22882- "CARGO_PKG_VERSION_MINOR": "22",
22910+ "CARGO_PKG_VERSION_MINOR": "21",
2288322911 "CARGO_PKG_VERSION_PATCH": "0",
2288422912 "CARGO_PKG_VERSION_PRE": "",
2288522913 },
@@ -22893,44 +22921,6 @@ cargo.rust_library(
2289322921 ],
2289422922 )
2289522923
22896-http_archive(
22897- name = "serdect-0.4.3.crate",
22898- sha256 = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e",
22899- strip_prefix = "serdect-0.4.3",
22900- urls = ["https://static.crates.io/crates/serdect/0.4.3/download"],
22901- visibility = [],
22902-)
22903-
22904-cargo.rust_library(
22905- name = "serdect-0.4",
22906- srcs = [":serdect-0.4.3.crate"],
22907- crate = "serdect",
22908- crate_root = "serdect-0.4.3.crate/src/lib.rs",
22909- edition = "2024",
22910- env = {
22911- "CARGO_BIN_NAME": "serdect",
22912- "CARGO_CRATE_NAME": "serdect",
22913- "CARGO_MANIFEST_DIR": "serdect-0.4.3.crate",
22914- "CARGO_PKG_AUTHORS": "RustCrypto Developers",
22915- "CARGO_PKG_DESCRIPTION": "Constant-time serde serializer/deserializer helpers for data that potentially\ncontains secrets (e.g. cryptographic keys)\n",
22916- "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/serdect",
22917- "CARGO_PKG_NAME": "serdect",
22918- "CARGO_PKG_README": "README.md",
22919- "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",
22920- "CARGO_PKG_RUST_VERSION": "1.85",
22921- "CARGO_PKG_VERSION": "0.4.3",
22922- "CARGO_PKG_VERSION_MAJOR": "0",
22923- "CARGO_PKG_VERSION_MINOR": "4",
22924- "CARGO_PKG_VERSION_PATCH": "3",
22925- "CARGO_PKG_VERSION_PRE": "",
22926- },
22927- visibility = [],
22928- deps = [
22929- ":base16ct-1",
22930- ":serde-1",
22931- ],
22932-)
22933-
2293422924 http_archive(
2293522925 name = "sfv-0.14.0.crate",
2293622926 sha256 = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87",
@@ -23245,23 +23235,23 @@ cargo.rust_library(
2324523235 )
2324623236
2324723237 http_archive(
23248- name = "signature-3.0.0.crate",
23249- sha256 = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5",
23250- strip_prefix = "signature-3.0.0",
23251- urls = ["https://static.crates.io/crates/signature/3.0.0/download"],
23238+ name = "signature-3.0.0-rc.10.crate",
23239+ sha256 = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3",
23240+ strip_prefix = "signature-3.0.0-rc.10",
23241+ urls = ["https://static.crates.io/crates/signature/3.0.0-rc.10/download"],
2325223242 visibility = [],
2325323243 )
2325423244
2325523245 cargo.rust_library(
2325623246 name = "signature-3",
23257- srcs = [":signature-3.0.0.crate"],
23247+ srcs = [":signature-3.0.0-rc.10.crate"],
2325823248 crate = "signature",
23259- crate_root = "signature-3.0.0.crate/src/lib.rs",
23249+ crate_root = "signature-3.0.0-rc.10.crate/src/lib.rs",
2326023250 edition = "2024",
2326123251 env = {
2326223252 "CARGO_BIN_NAME": "signature",
2326323253 "CARGO_CRATE_NAME": "signature",
23264- "CARGO_MANIFEST_DIR": "signature-3.0.0.crate",
23254+ "CARGO_MANIFEST_DIR": "signature-3.0.0-rc.10.crate",
2326523255 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
2326623256 "CARGO_PKG_DESCRIPTION": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)",
2326723257 "CARGO_PKG_HOMEPAGE": "",
@@ -23269,11 +23259,11 @@ cargo.rust_library(
2326923259 "CARGO_PKG_README": "README.md",
2327023260 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits",
2327123261 "CARGO_PKG_RUST_VERSION": "1.85",
23272- "CARGO_PKG_VERSION": "3.0.0",
23262+ "CARGO_PKG_VERSION": "3.0.0-rc.10",
2327323263 "CARGO_PKG_VERSION_MAJOR": "3",
2327423264 "CARGO_PKG_VERSION_MINOR": "0",
2327523265 "CARGO_PKG_VERSION_PATCH": "0",
23276- "CARGO_PKG_VERSION_PRE": "",
23266+ "CARGO_PKG_VERSION_PRE": "rc.10",
2327723267 },
2327823268 features = ["alloc"],
2327923269 visibility = [],
@@ -23614,6 +23604,7 @@ buildscript_run(
2361423604 "CARGO_PKG_VERSION_MINOR": "19",
2361523605 "CARGO_PKG_VERSION_PATCH": "2",
2361623606 "CARGO_PKG_VERSION_PRE": "",
23607+ "OPT_LEVEL": "2",
2361723608 },
2361823609 features = [
2361923610 "calloop",
@@ -23728,6 +23719,7 @@ buildscript_run(
2372823719 "CARGO_PKG_VERSION_MINOR": "20",
2372923720 "CARGO_PKG_VERSION_PATCH": "0",
2373023721 "CARGO_PKG_VERSION_PRE": "",
23722+ "OPT_LEVEL": "2",
2373123723 },
2373223724 features = [
2373323725 "calloop",
@@ -24877,23 +24869,23 @@ cargo.rust_library(
2487724869 )
2487824870
2487924871 http_archive(
24880- name = "syn-3.0.4.crate",
24881- sha256 = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f",
24882- strip_prefix = "syn-3.0.4",
24883- urls = ["https://static.crates.io/crates/syn/3.0.4/download"],
24872+ name = "syn-3.0.3.crate",
24873+ sha256 = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3",
24874+ strip_prefix = "syn-3.0.3",
24875+ urls = ["https://static.crates.io/crates/syn/3.0.3/download"],
2488424876 visibility = [],
2488524877 )
2488624878
2488724879 cargo.rust_library(
2488824880 name = "syn-3",
24889- srcs = [":syn-3.0.4.crate"],
24881+ srcs = [":syn-3.0.3.crate"],
2489024882 crate = "syn",
24891- crate_root = "syn-3.0.4.crate/src/lib.rs",
24883+ crate_root = "syn-3.0.3.crate/src/lib.rs",
2489224884 edition = "2021",
2489324885 env = {
2489424886 "CARGO_BIN_NAME": "syn",
2489524887 "CARGO_CRATE_NAME": "syn",
24896- "CARGO_MANIFEST_DIR": "syn-3.0.4.crate",
24888+ "CARGO_MANIFEST_DIR": "syn-3.0.3.crate",
2489724889 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2489824890 "CARGO_PKG_DESCRIPTION": "Parser for Rust source code",
2489924891 "CARGO_PKG_HOMEPAGE": "",
@@ -24901,17 +24893,16 @@ cargo.rust_library(
2490124893 "CARGO_PKG_README": "README.md",
2490224894 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/syn",
2490324895 "CARGO_PKG_RUST_VERSION": "1.71",
24904- "CARGO_PKG_VERSION": "3.0.4",
24896+ "CARGO_PKG_VERSION": "3.0.3",
2490524897 "CARGO_PKG_VERSION_MAJOR": "3",
2490624898 "CARGO_PKG_VERSION_MINOR": "0",
24907- "CARGO_PKG_VERSION_PATCH": "4",
24899+ "CARGO_PKG_VERSION_PATCH": "3",
2490824900 "CARGO_PKG_VERSION_PRE": "",
2490924901 },
2491024902 features = [
2491124903 "clone-impls",
2491224904 "default",
2491324905 "derive",
24914- "extra-traits",
2491524906 "full",
2491624907 "parsing",
2491724908 "printing",
@@ -25120,28 +25111,29 @@ buildscript_run(
2512025111 "CARGO_PKG_VERSION_MINOR": "0",
2512125112 "CARGO_PKG_VERSION_PATCH": "69",
2512225113 "CARGO_PKG_VERSION_PRE": "",
25114+ "OPT_LEVEL": "2",
2512325115 },
2512425116 version = "1.0.69",
2512525117 )
2512625118
2512725119 http_archive(
25128- name = "thiserror-2.0.20.crate",
25129- sha256 = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f",
25130- strip_prefix = "thiserror-2.0.20",
25131- urls = ["https://static.crates.io/crates/thiserror/2.0.20/download"],
25120+ name = "thiserror-2.0.19.crate",
25121+ sha256 = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9",
25122+ strip_prefix = "thiserror-2.0.19",
25123+ urls = ["https://static.crates.io/crates/thiserror/2.0.19/download"],
2513225124 visibility = [],
2513325125 )
2513425126
2513525127 cargo.rust_library(
2513625128 name = "thiserror-2",
25137- srcs = [":thiserror-2.0.20.crate"],
25129+ srcs = [":thiserror-2.0.19.crate"],
2513825130 crate = "thiserror",
25139- crate_root = "thiserror-2.0.20.crate/src/lib.rs",
25131+ crate_root = "thiserror-2.0.19.crate/src/lib.rs",
2514025132 edition = "2021",
2514125133 env = {
2514225134 "CARGO_BIN_NAME": "thiserror",
2514325135 "CARGO_CRATE_NAME": "thiserror",
25144- "CARGO_MANIFEST_DIR": "thiserror-2.0.20.crate",
25136+ "CARGO_MANIFEST_DIR": "thiserror-2.0.19.crate",
2514525137 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2514625138 "CARGO_PKG_DESCRIPTION": "derive(Error)",
2514725139 "CARGO_PKG_HOMEPAGE": "",
@@ -25149,10 +25141,10 @@ cargo.rust_library(
2514925141 "CARGO_PKG_README": "README.md",
2515025142 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",
2515125143 "CARGO_PKG_RUST_VERSION": "1.71",
25152- "CARGO_PKG_VERSION": "2.0.20",
25144+ "CARGO_PKG_VERSION": "2.0.19",
2515325145 "CARGO_PKG_VERSION_MAJOR": "2",
2515425146 "CARGO_PKG_VERSION_MINOR": "0",
25155- "CARGO_PKG_VERSION_PATCH": "20",
25147+ "CARGO_PKG_VERSION_PATCH": "19",
2515625148 "CARGO_PKG_VERSION_PRE": "",
2515725149 "OUT_DIR": "$(location :thiserror-2-build-script-run[out_dir])",
2515825150 },
@@ -25167,14 +25159,14 @@ cargo.rust_library(
2516725159
2516825160 cargo.rust_binary(
2516925161 name = "thiserror-2-build-script-build",
25170- srcs = [":thiserror-2.0.20.crate"],
25162+ srcs = [":thiserror-2.0.19.crate"],
2517125163 crate = "build_script_build",
25172- crate_root = "thiserror-2.0.20.crate/build.rs",
25164+ crate_root = "thiserror-2.0.19.crate/build.rs",
2517325165 edition = "2021",
2517425166 env = {
2517525167 "CARGO_BIN_NAME": "build-script-build",
2517625168 "CARGO_CRATE_NAME": "build_script_build",
25177- "CARGO_MANIFEST_DIR": "thiserror-2.0.20.crate",
25169+ "CARGO_MANIFEST_DIR": "thiserror-2.0.19.crate",
2517825170 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2517925171 "CARGO_PKG_DESCRIPTION": "derive(Error)",
2518025172 "CARGO_PKG_HOMEPAGE": "",
@@ -25182,10 +25174,10 @@ cargo.rust_binary(
2518225174 "CARGO_PKG_README": "README.md",
2518325175 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",
2518425176 "CARGO_PKG_RUST_VERSION": "1.71",
25185- "CARGO_PKG_VERSION": "2.0.20",
25177+ "CARGO_PKG_VERSION": "2.0.19",
2518625178 "CARGO_PKG_VERSION_MAJOR": "2",
2518725179 "CARGO_PKG_VERSION_MINOR": "0",
25188- "CARGO_PKG_VERSION_PATCH": "20",
25180+ "CARGO_PKG_VERSION_PATCH": "19",
2518925181 "CARGO_PKG_VERSION_PRE": "",
2519025182 },
2519125183 features = [
@@ -25208,14 +25200,15 @@ buildscript_run(
2520825200 "CARGO_PKG_RUST_VERSION": "1.71",
2520925201 "CARGO_PKG_VERSION_MAJOR": "2",
2521025202 "CARGO_PKG_VERSION_MINOR": "0",
25211- "CARGO_PKG_VERSION_PATCH": "20",
25203+ "CARGO_PKG_VERSION_PATCH": "19",
2521225204 "CARGO_PKG_VERSION_PRE": "",
25205+ "OPT_LEVEL": "2",
2521325206 },
2521425207 features = [
2521525208 "default",
2521625209 "std",
2521725210 ],
25218- version = "2.0.20",
25211+ version = "2.0.19",
2521925212 )
2522025213
2522125214 http_archive(
@@ -25259,23 +25252,23 @@ cargo.rust_library(
2525925252 )
2526025253
2526125254 http_archive(
25262- name = "thiserror-impl-2.0.20.crate",
25263- sha256 = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af",
25264- strip_prefix = "thiserror-impl-2.0.20",
25265- urls = ["https://static.crates.io/crates/thiserror-impl/2.0.20/download"],
25255+ name = "thiserror-impl-2.0.19.crate",
25256+ sha256 = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd",
25257+ strip_prefix = "thiserror-impl-2.0.19",
25258+ urls = ["https://static.crates.io/crates/thiserror-impl/2.0.19/download"],
2526625259 visibility = [],
2526725260 )
2526825261
2526925262 cargo.rust_library(
2527025263 name = "thiserror-impl-2",
25271- srcs = [":thiserror-impl-2.0.20.crate"],
25264+ srcs = [":thiserror-impl-2.0.19.crate"],
2527225265 crate = "thiserror_impl",
25273- crate_root = "thiserror-impl-2.0.20.crate/src/lib.rs",
25266+ crate_root = "thiserror-impl-2.0.19.crate/src/lib.rs",
2527425267 edition = "2021",
2527525268 env = {
2527625269 "CARGO_BIN_NAME": "thiserror_impl",
2527725270 "CARGO_CRATE_NAME": "thiserror_impl",
25278- "CARGO_MANIFEST_DIR": "thiserror-impl-2.0.20.crate",
25271+ "CARGO_MANIFEST_DIR": "thiserror-impl-2.0.19.crate",
2527925272 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
2528025273 "CARGO_PKG_DESCRIPTION": "Implementation detail of the `thiserror` crate",
2528125274 "CARGO_PKG_HOMEPAGE": "",
@@ -25283,10 +25276,10 @@ cargo.rust_library(
2528325276 "CARGO_PKG_README": "",
2528425277 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",
2528525278 "CARGO_PKG_RUST_VERSION": "1.71",
25286- "CARGO_PKG_VERSION": "2.0.20",
25279+ "CARGO_PKG_VERSION": "2.0.19",
2528725280 "CARGO_PKG_VERSION_MAJOR": "2",
2528825281 "CARGO_PKG_VERSION_MINOR": "0",
25289- "CARGO_PKG_VERSION_PATCH": "20",
25282+ "CARGO_PKG_VERSION_PATCH": "19",
2529025283 "CARGO_PKG_VERSION_PRE": "",
2529125284 },
2529225285 proc_macro = True,
@@ -25424,23 +25417,23 @@ cargo.rust_library(
2542425417 )
2542525418
2542625419 http_archive(
25427- name = "time-0.3.55.crate",
25428- sha256 = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134",
25429- strip_prefix = "time-0.3.55",
25430- urls = ["https://static.crates.io/crates/time/0.3.55/download"],
25420+ name = "time-0.3.54.crate",
25421+ sha256 = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244",
25422+ strip_prefix = "time-0.3.54",
25423+ urls = ["https://static.crates.io/crates/time/0.3.54/download"],
2543125424 visibility = [],
2543225425 )
2543325426
2543425427 cargo.rust_library(
2543525428 name = "time-0.3",
25436- srcs = [":time-0.3.55.crate"],
25429+ srcs = [":time-0.3.54.crate"],
2543725430 crate = "time",
25438- crate_root = "time-0.3.55.crate/src/lib.rs",
25431+ crate_root = "time-0.3.54.crate/src/lib.rs",
2543925432 edition = "2024",
2544025433 env = {
2544125434 "CARGO_BIN_NAME": "time",
2544225435 "CARGO_CRATE_NAME": "time",
25443- "CARGO_MANIFEST_DIR": "time-0.3.55.crate",
25436+ "CARGO_MANIFEST_DIR": "time-0.3.54.crate",
2544425437 "CARGO_PKG_AUTHORS": "Jacob Pratt <open-source@jhpratt.dev>:Time contributors",
2544525438 "CARGO_PKG_DESCRIPTION": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].",
2544625439 "CARGO_PKG_HOMEPAGE": "https://time-rs.github.io",
@@ -25448,10 +25441,10 @@ cargo.rust_library(
2544825441 "CARGO_PKG_README": "README.md",
2544925442 "CARGO_PKG_REPOSITORY": "https://github.com/time-rs/time",
2545025443 "CARGO_PKG_RUST_VERSION": "1.88.0",
25451- "CARGO_PKG_VERSION": "0.3.55",
25444+ "CARGO_PKG_VERSION": "0.3.54",
2545225445 "CARGO_PKG_VERSION_MAJOR": "0",
2545325446 "CARGO_PKG_VERSION_MINOR": "3",
25454- "CARGO_PKG_VERSION_PATCH": "55",
25447+ "CARGO_PKG_VERSION_PATCH": "54",
2545525448 "CARGO_PKG_VERSION_PRE": "",
2545625449 },
2545725450 features = [
@@ -25597,23 +25590,23 @@ cargo.rust_library(
2559725590 )
2559825591
2559925592 http_archive(
25600- name = "tinystr-0.8.4.crate",
25601- sha256 = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643",
25602- strip_prefix = "tinystr-0.8.4",
25603- urls = ["https://static.crates.io/crates/tinystr/0.8.4/download"],
25593+ name = "tinystr-0.8.3.crate",
25594+ sha256 = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d",
25595+ strip_prefix = "tinystr-0.8.3",
25596+ urls = ["https://static.crates.io/crates/tinystr/0.8.3/download"],
2560425597 visibility = [],
2560525598 )
2560625599
2560725600 cargo.rust_library(
2560825601 name = "tinystr-0.8",
25609- srcs = [":tinystr-0.8.4.crate"],
25602+ srcs = [":tinystr-0.8.3.crate"],
2561025603 crate = "tinystr",
25611- crate_root = "tinystr-0.8.4.crate/src/lib.rs",
25604+ crate_root = "tinystr-0.8.3.crate/src/lib.rs",
2561225605 edition = "2021",
2561325606 env = {
2561425607 "CARGO_BIN_NAME": "tinystr",
2561525608 "CARGO_CRATE_NAME": "tinystr",
25616- "CARGO_MANIFEST_DIR": "tinystr-0.8.4.crate",
25609+ "CARGO_MANIFEST_DIR": "tinystr-0.8.3.crate",
2561725610 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
2561825611 "CARGO_PKG_DESCRIPTION": "A small ASCII-only bounded length string representation.",
2561925612 "CARGO_PKG_HOMEPAGE": "",
@@ -25621,10 +25614,10 @@ cargo.rust_library(
2562125614 "CARGO_PKG_README": "README.md",
2562225615 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
2562325616 "CARGO_PKG_RUST_VERSION": "1.82",
25624- "CARGO_PKG_VERSION": "0.8.4",
25617+ "CARGO_PKG_VERSION": "0.8.3",
2562525618 "CARGO_PKG_VERSION_MAJOR": "0",
2562625619 "CARGO_PKG_VERSION_MINOR": "8",
25627- "CARGO_PKG_VERSION_PATCH": "4",
25620+ "CARGO_PKG_VERSION_PATCH": "3",
2562825621 "CARGO_PKG_VERSION_PRE": "",
2562925622 },
2563025623 features = ["zerovec"],
@@ -27292,23 +27285,23 @@ cargo.rust_library(
2729227285 )
2729327286
2729427287 http_archive(
27295- name = "uuid-1.26.0.crate",
27296- sha256 = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812",
27297- strip_prefix = "uuid-1.26.0",
27298- urls = ["https://static.crates.io/crates/uuid/1.26.0/download"],
27288+ name = "uuid-1.24.0.crate",
27289+ sha256 = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239",
27290+ strip_prefix = "uuid-1.24.0",
27291+ urls = ["https://static.crates.io/crates/uuid/1.24.0/download"],
2729927292 visibility = [],
2730027293 )
2730127294
2730227295 cargo.rust_library(
2730327296 name = "uuid-1",
27304- srcs = [":uuid-1.26.0.crate"],
27297+ srcs = [":uuid-1.24.0.crate"],
2730527298 crate = "uuid",
27306- crate_root = "uuid-1.26.0.crate/src/lib.rs",
27299+ crate_root = "uuid-1.24.0.crate/src/lib.rs",
2730727300 edition = "2021",
2730827301 env = {
2730927302 "CARGO_BIN_NAME": "uuid",
2731027303 "CARGO_CRATE_NAME": "uuid",
27311- "CARGO_MANIFEST_DIR": "uuid-1.26.0.crate",
27304+ "CARGO_MANIFEST_DIR": "uuid-1.24.0.crate",
2731227305 "CARGO_PKG_AUTHORS": "Ashley Mannix<ashleymannix@live.com.au>:Dylan DPC<dylan.dpc@gmail.com>:Hunar Roop Kahlon<hunar.roop@gmail.com>",
2731327306 "CARGO_PKG_DESCRIPTION": "A library to generate and parse UUIDs.",
2731427307 "CARGO_PKG_HOMEPAGE": "https://github.com/uuid-rs/uuid",
@@ -27316,9 +27309,9 @@ cargo.rust_library(
2731627309 "CARGO_PKG_README": "README.md",
2731727310 "CARGO_PKG_REPOSITORY": "https://github.com/uuid-rs/uuid",
2731827311 "CARGO_PKG_RUST_VERSION": "1.85.0",
27319- "CARGO_PKG_VERSION": "1.26.0",
27312+ "CARGO_PKG_VERSION": "1.24.0",
2732027313 "CARGO_PKG_VERSION_MAJOR": "1",
27321- "CARGO_PKG_VERSION_MINOR": "26",
27314+ "CARGO_PKG_VERSION_MINOR": "24",
2732227315 "CARGO_PKG_VERSION_PATCH": "0",
2732327316 "CARGO_PKG_VERSION_PRE": "",
2732427317 },
@@ -27425,6 +27418,7 @@ buildscript_run(
2742527418 "CARGO_PKG_VERSION_MINOR": "0",
2742627419 "CARGO_PKG_VERSION_PATCH": "7",
2742727420 "CARGO_PKG_VERSION_PRE": "",
27421+ "OPT_LEVEL": "2",
2742827422 },
2742927423 version = "0.0.7",
2743027424 )
@@ -27512,6 +27506,7 @@ buildscript_run(
2751227506 "CARGO_PKG_VERSION_MINOR": "1",
2751327507 "CARGO_PKG_VERSION_PATCH": "0",
2751427508 "CARGO_PKG_VERSION_PRE": "",
27509+ "OPT_LEVEL": "2",
2751527510 },
2751627511 version = "9.1.0",
2751727512 )
@@ -27603,6 +27598,7 @@ buildscript_run(
2760327598 "CARGO_PKG_VERSION_MINOR": "0",
2760427599 "CARGO_PKG_VERSION_PATCH": "8",
2760527600 "CARGO_PKG_VERSION_PRE": "",
27601+ "OPT_LEVEL": "2",
2760627602 },
2760727603 features = ["default"],
2760827604 version = "1.0.8",
@@ -27698,6 +27694,7 @@ buildscript_run(
2769827694 "CARGO_PKG_VERSION_MINOR": "1",
2769927695 "CARGO_PKG_VERSION_PATCH": "6",
2770027696 "CARGO_PKG_VERSION_PRE": "",
27697+ "OPT_LEVEL": "2",
2770127698 },
2770227699 features = [
2770327700 "default",
@@ -27790,6 +27787,7 @@ buildscript_run(
2779027787 "CARGO_PKG_VERSION_MINOR": "1",
2779127788 "CARGO_PKG_VERSION_PATCH": "0",
2779227789 "CARGO_PKG_VERSION_PRE": "",
27790+ "OPT_LEVEL": "2",
2779327791 },
2779427792 features = ["default"],
2779527793 version = "9.1.0",
@@ -28038,6 +28036,7 @@ buildscript_run(
2803828036 "CARGO_PKG_VERSION_MINOR": "3",
2803928037 "CARGO_PKG_VERSION_PATCH": "17",
2804028038 "CARGO_PKG_VERSION_PRE": "",
28039+ "OPT_LEVEL": "2",
2804128040 },
2804228041 features = [
2804328042 "client_system",
@@ -28129,6 +28128,7 @@ buildscript_run(
2812928128 "CARGO_PKG_VERSION_MINOR": "31",
2813028129 "CARGO_PKG_VERSION_PATCH": "15",
2813128130 "CARGO_PKG_VERSION_PRE": "",
28131+ "OPT_LEVEL": "2",
2813228132 },
2813328133 version = "0.31.15",
2813428134 )
@@ -28572,6 +28572,7 @@ buildscript_run(
2857228572 "CARGO_PKG_VERSION_MINOR": "31",
2857328573 "CARGO_PKG_VERSION_PATCH": "11",
2857428574 "CARGO_PKG_VERSION_PRE": "",
28575+ "OPT_LEVEL": "2",
2857528576 },
2857628577 features = [
2857728578 "client",
@@ -28935,23 +28936,23 @@ cargo.rust_library(
2893528936 )
2893628937
2893728938 http_archive(
28938- name = "wide-1.7.0.crate",
28939- sha256 = "8cf05ca94c9fba0c51316899caa1d1e74a064fc310a5efa7375e614343d415be",
28940- strip_prefix = "wide-1.7.0",
28941- urls = ["https://static.crates.io/crates/wide/1.7.0/download"],
28939+ name = "wide-1.5.0.crate",
28940+ sha256 = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89",
28941+ strip_prefix = "wide-1.5.0",
28942+ urls = ["https://static.crates.io/crates/wide/1.5.0/download"],
2894228943 visibility = [],
2894328944 )
2894428945
2894528946 cargo.rust_library(
2894628947 name = "wide-1",
28947- srcs = [":wide-1.7.0.crate"],
28948+ srcs = [":wide-1.5.0.crate"],
2894828949 crate = "wide",
28949- crate_root = "wide-1.7.0.crate/src/lib.rs",
28950+ crate_root = "wide-1.5.0.crate/src/lib.rs",
2895028951 edition = "2024",
2895128952 env = {
2895228953 "CARGO_BIN_NAME": "wide",
2895328954 "CARGO_CRATE_NAME": "wide",
28954- "CARGO_MANIFEST_DIR": "wide-1.7.0.crate",
28955+ "CARGO_MANIFEST_DIR": "wide-1.5.0.crate",
2895528956 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",
2895628957 "CARGO_PKG_DESCRIPTION": "A crate to help you go wide.",
2895728958 "CARGO_PKG_HOMEPAGE": "",
@@ -28959,9 +28960,9 @@ cargo.rust_library(
2895928960 "CARGO_PKG_README": "README.md",
2896028961 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/wide",
2896128962 "CARGO_PKG_RUST_VERSION": "1.89",
28962- "CARGO_PKG_VERSION": "1.7.0",
28963+ "CARGO_PKG_VERSION": "1.5.0",
2896328964 "CARGO_PKG_VERSION_MAJOR": "1",
28964- "CARGO_PKG_VERSION_MINOR": "7",
28965+ "CARGO_PKG_VERSION_MINOR": "5",
2896528966 "CARGO_PKG_VERSION_PATCH": "0",
2896628967 "CARGO_PKG_VERSION_PRE": "",
2896728968 },
@@ -29216,6 +29217,7 @@ buildscript_run(
2921629217 "CARGO_PKG_VERSION_MINOR": "30",
2921729218 "CARGO_PKG_VERSION_PATCH": "13",
2921829219 "CARGO_PKG_VERSION_PRE": "",
29220+ "OPT_LEVEL": "2",
2921929221 },
2922029222 features = [
2922129223 "ahash",
@@ -29283,23 +29285,23 @@ cargo.rust_library(
2928329285 )
2928429286
2928529287 http_archive(
29286- name = "writeable-0.6.4.crate",
29287- sha256 = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc",
29288- strip_prefix = "writeable-0.6.4",
29289- urls = ["https://static.crates.io/crates/writeable/0.6.4/download"],
29288+ name = "writeable-0.6.3.crate",
29289+ sha256 = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4",
29290+ strip_prefix = "writeable-0.6.3",
29291+ urls = ["https://static.crates.io/crates/writeable/0.6.3/download"],
2929029292 visibility = [],
2929129293 )
2929229294
2929329295 cargo.rust_library(
2929429296 name = "writeable-0.6",
29295- srcs = [":writeable-0.6.4.crate"],
29297+ srcs = [":writeable-0.6.3.crate"],
2929629298 crate = "writeable",
29297- crate_root = "writeable-0.6.4.crate/src/lib.rs",
29299+ crate_root = "writeable-0.6.3.crate/src/lib.rs",
2929829300 edition = "2021",
2929929301 env = {
2930029302 "CARGO_BIN_NAME": "writeable",
2930129303 "CARGO_CRATE_NAME": "writeable",
29302- "CARGO_MANIFEST_DIR": "writeable-0.6.4.crate",
29304+ "CARGO_MANIFEST_DIR": "writeable-0.6.3.crate",
2930329305 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
2930429306 "CARGO_PKG_DESCRIPTION": "A more efficient alternative to fmt::Display",
2930529307 "CARGO_PKG_HOMEPAGE": "",
@@ -29307,10 +29309,10 @@ cargo.rust_library(
2930729309 "CARGO_PKG_README": "README.md",
2930829310 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
2930929311 "CARGO_PKG_RUST_VERSION": "1.82",
29310- "CARGO_PKG_VERSION": "0.6.4",
29312+ "CARGO_PKG_VERSION": "0.6.3",
2931129313 "CARGO_PKG_VERSION_MAJOR": "0",
2931229314 "CARGO_PKG_VERSION_MINOR": "6",
29313- "CARGO_PKG_VERSION_PATCH": "4",
29315+ "CARGO_PKG_VERSION_PATCH": "3",
2931429316 "CARGO_PKG_VERSION_PRE": "",
2931529317 },
2931629318 visibility = [],
@@ -29398,6 +29400,7 @@ buildscript_run(
2939829400 "CARGO_PKG_VERSION_MINOR": "21",
2939929401 "CARGO_PKG_VERSION_PATCH": "0",
2940029402 "CARGO_PKG_VERSION_PRE": "",
29403+ "OPT_LEVEL": "2",
2940129404 },
2940229405 version = "2.21.0",
2940329406 )
@@ -29615,23 +29618,23 @@ cargo.rust_library(
2961529618 )
2961629619
2961729620 http_archive(
29618- name = "xml-rs-0.8.29.crate",
29619- sha256 = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7",
29620- strip_prefix = "xml-rs-0.8.29",
29621- urls = ["https://static.crates.io/crates/xml-rs/0.8.29/download"],
29621+ name = "xml-rs-0.8.28.crate",
29622+ sha256 = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f",
29623+ strip_prefix = "xml-rs-0.8.28",
29624+ urls = ["https://static.crates.io/crates/xml-rs/0.8.28/download"],
2962229625 visibility = [],
2962329626 )
2962429627
2962529628 cargo.rust_library(
2962629629 name = "xml-rs-0.8",
29627- srcs = [":xml-rs-0.8.29.crate"],
29630+ srcs = [":xml-rs-0.8.28.crate"],
2962829631 crate = "xml",
29629- crate_root = "xml-rs-0.8.29.crate/src/lib.rs",
29632+ crate_root = "xml-rs-0.8.28.crate/src/lib.rs",
2963029633 edition = "2021",
2963129634 env = {
2963229635 "CARGO_BIN_NAME": "xml",
2963329636 "CARGO_CRATE_NAME": "xml",
29634- "CARGO_MANIFEST_DIR": "xml-rs-0.8.29.crate",
29637+ "CARGO_MANIFEST_DIR": "xml-rs-0.8.28.crate",
2963529638 "CARGO_PKG_AUTHORS": "Vladimir Matveev <vmatveev@citrine.cc>",
2963629639 "CARGO_PKG_DESCRIPTION": "An XML library in pure Rust",
2963729640 "CARGO_PKG_HOMEPAGE": "https://lib.rs/crates/xml",
@@ -29639,10 +29642,10 @@ cargo.rust_library(
2963929642 "CARGO_PKG_README": "README.md",
2964029643 "CARGO_PKG_REPOSITORY": "https://github.com/kornelski/xml-rs",
2964129644 "CARGO_PKG_RUST_VERSION": "1.70",
29642- "CARGO_PKG_VERSION": "0.8.29",
29645+ "CARGO_PKG_VERSION": "0.8.28",
2964329646 "CARGO_PKG_VERSION_MAJOR": "0",
2964429647 "CARGO_PKG_VERSION_MINOR": "8",
29645- "CARGO_PKG_VERSION_PATCH": "29",
29648+ "CARGO_PKG_VERSION_PATCH": "28",
2964629649 "CARGO_PKG_VERSION_PRE": "",
2964729650 },
2964829651 visibility = [],
@@ -29809,23 +29812,23 @@ cargo.rust_library(
2980929812 )
2981029813
2981129814 http_archive(
29812- name = "yuv-0.8.17.crate",
29813- sha256 = "220655e1c245693beb13b377d3174b9efcb1645018d1d4ec53903fc211b135ae",
29814- strip_prefix = "yuv-0.8.17",
29815- urls = ["https://static.crates.io/crates/yuv/0.8.17/download"],
29815+ name = "yuv-0.8.16.crate",
29816+ sha256 = "5d85a782d94ee43f078bcfd6fa82d4e6a5b2d1cfbbad168e4df5a9f7b39ef48c",
29817+ strip_prefix = "yuv-0.8.16",
29818+ urls = ["https://static.crates.io/crates/yuv/0.8.16/download"],
2981629819 visibility = [],
2981729820 )
2981829821
2981929822 cargo.rust_library(
2982029823 name = "yuv-0.8",
29821- srcs = [":yuv-0.8.17.crate"],
29824+ srcs = [":yuv-0.8.16.crate"],
2982229825 crate = "yuv",
29823- crate_root = "yuv-0.8.17.crate/src/lib.rs",
29826+ crate_root = "yuv-0.8.16.crate/src/lib.rs",
2982429827 edition = "2021",
2982529828 env = {
2982629829 "CARGO_BIN_NAME": "yuv",
2982729830 "CARGO_CRATE_NAME": "yuv",
29828- "CARGO_MANIFEST_DIR": "yuv-0.8.17.crate",
29831+ "CARGO_MANIFEST_DIR": "yuv-0.8.16.crate",
2982929832 "CARGO_PKG_AUTHORS": "Radzivon Bartoshyk",
2983029833 "CARGO_PKG_DESCRIPTION": "High performance utilities for YUV format handling and conversion.",
2983129834 "CARGO_PKG_HOMEPAGE": "https://github.com/awxkee/yuvutils-rs",
@@ -29833,10 +29836,10 @@ cargo.rust_library(
2983329836 "CARGO_PKG_README": "README.md",
2983429837 "CARGO_PKG_REPOSITORY": "https://github.com/awxkee/yuvutils-rs",
2983529838 "CARGO_PKG_RUST_VERSION": "1.82.0",
29836- "CARGO_PKG_VERSION": "0.8.17",
29839+ "CARGO_PKG_VERSION": "0.8.16",
2983729840 "CARGO_PKG_VERSION_MAJOR": "0",
2983829841 "CARGO_PKG_VERSION_MINOR": "8",
29839- "CARGO_PKG_VERSION_PATCH": "17",
29842+ "CARGO_PKG_VERSION_PATCH": "16",
2984029843 "CARGO_PKG_VERSION_PRE": "",
2984129844 },
2984229845 features = [
@@ -29884,34 +29887,34 @@ cargo.rust_library(
2988429887 )
2988529888
2988629889 http_archive(
29887- name = "zerocopy-0.8.56.crate",
29888- sha256 = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb",
29889- strip_prefix = "zerocopy-0.8.56",
29890- urls = ["https://static.crates.io/crates/zerocopy/0.8.56/download"],
29890+ name = "zerocopy-0.8.55.crate",
29891+ sha256 = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb",
29892+ strip_prefix = "zerocopy-0.8.55",
29893+ urls = ["https://static.crates.io/crates/zerocopy/0.8.55/download"],
2989129894 visibility = [],
2989229895 )
2989329896
2989429897 cargo.rust_library(
2989529898 name = "zerocopy-0.8",
29896- srcs = [":zerocopy-0.8.56.crate"],
29899+ srcs = [":zerocopy-0.8.55.crate"],
2989729900 crate = "zerocopy",
29898- crate_root = "zerocopy-0.8.56.crate/src/lib.rs",
29901+ crate_root = "zerocopy-0.8.55.crate/src/lib.rs",
2989929902 edition = "2021",
2990029903 env = {
2990129904 "CARGO_BIN_NAME": "zerocopy",
2990229905 "CARGO_CRATE_NAME": "zerocopy",
29903- "CARGO_MANIFEST_DIR": "zerocopy-0.8.56.crate",
29904- "CARGO_PKG_AUTHORS": "",
29906+ "CARGO_MANIFEST_DIR": "zerocopy-0.8.55.crate",
29907+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
2990529908 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
2990629909 "CARGO_PKG_HOMEPAGE": "",
2990729910 "CARGO_PKG_NAME": "zerocopy",
2990829911 "CARGO_PKG_README": "README.md",
2990929912 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",
2991029913 "CARGO_PKG_RUST_VERSION": "1.56.0",
29911- "CARGO_PKG_VERSION": "0.8.56",
29914+ "CARGO_PKG_VERSION": "0.8.55",
2991229915 "CARGO_PKG_VERSION_MAJOR": "0",
2991329916 "CARGO_PKG_VERSION_MINOR": "8",
29914- "CARGO_PKG_VERSION_PATCH": "56",
29917+ "CARGO_PKG_VERSION_PATCH": "55",
2991529918 "CARGO_PKG_VERSION_PRE": "",
2991629919 "OUT_DIR": "$(location :zerocopy-0.8-build-script-run[out_dir])",
2991729920 },
@@ -29927,25 +29930,25 @@ cargo.rust_library(
2992729930
2992829931 cargo.rust_binary(
2992929932 name = "zerocopy-0.8-build-script-build",
29930- srcs = [":zerocopy-0.8.56.crate"],
29933+ srcs = [":zerocopy-0.8.55.crate"],
2993129934 crate = "build_script_build",
29932- crate_root = "zerocopy-0.8.56.crate/build.rs",
29935+ crate_root = "zerocopy-0.8.55.crate/build.rs",
2993329936 edition = "2021",
2993429937 env = {
2993529938 "CARGO_BIN_NAME": "build-script-build",
2993629939 "CARGO_CRATE_NAME": "build_script_build",
29937- "CARGO_MANIFEST_DIR": "zerocopy-0.8.56.crate",
29938- "CARGO_PKG_AUTHORS": "",
29940+ "CARGO_MANIFEST_DIR": "zerocopy-0.8.55.crate",
29941+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
2993929942 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
2994029943 "CARGO_PKG_HOMEPAGE": "",
2994129944 "CARGO_PKG_NAME": "zerocopy",
2994229945 "CARGO_PKG_README": "README.md",
2994329946 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",
2994429947 "CARGO_PKG_RUST_VERSION": "1.56.0",
29945- "CARGO_PKG_VERSION": "0.8.56",
29948+ "CARGO_PKG_VERSION": "0.8.55",
2994629949 "CARGO_PKG_VERSION_MAJOR": "0",
2994729950 "CARGO_PKG_VERSION_MINOR": "8",
29948- "CARGO_PKG_VERSION_PATCH": "56",
29951+ "CARGO_PKG_VERSION_PATCH": "55",
2994929952 "CARGO_PKG_VERSION_PRE": "",
2995029953 },
2995129954 features = [
@@ -29961,7 +29964,7 @@ buildscript_run(
2996129964 package_name = "zerocopy",
2996229965 buildscript_rule = ":zerocopy-0.8-build-script-build",
2996329966 env = {
29964- "CARGO_PKG_AUTHORS": "",
29967+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
2996529968 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
2996629969 "CARGO_PKG_HOMEPAGE": "",
2996729970 "CARGO_PKG_README": "README.md",
@@ -29969,46 +29972,47 @@ buildscript_run(
2996929972 "CARGO_PKG_RUST_VERSION": "1.56.0",
2997029973 "CARGO_PKG_VERSION_MAJOR": "0",
2997129974 "CARGO_PKG_VERSION_MINOR": "8",
29972- "CARGO_PKG_VERSION_PATCH": "56",
29975+ "CARGO_PKG_VERSION_PATCH": "55",
2997329976 "CARGO_PKG_VERSION_PRE": "",
29977+ "OPT_LEVEL": "2",
2997429978 },
2997529979 features = [
2997629980 "derive",
2997729981 "simd",
2997829982 "zerocopy-derive",
2997929983 ],
29980- version = "0.8.56",
29984+ version = "0.8.55",
2998129985 )
2998229986
2998329987 http_archive(
29984- name = "zerocopy-derive-0.8.56.crate",
29985- sha256 = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1",
29986- strip_prefix = "zerocopy-derive-0.8.56",
29987- urls = ["https://static.crates.io/crates/zerocopy-derive/0.8.56/download"],
29988+ name = "zerocopy-derive-0.8.55.crate",
29989+ sha256 = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb",
29990+ strip_prefix = "zerocopy-derive-0.8.55",
29991+ urls = ["https://static.crates.io/crates/zerocopy-derive/0.8.55/download"],
2998829992 visibility = [],
2998929993 )
2999029994
2999129995 cargo.rust_library(
2999229996 name = "zerocopy-derive-0.8",
29993- srcs = [":zerocopy-derive-0.8.56.crate"],
29997+ srcs = [":zerocopy-derive-0.8.55.crate"],
2999429998 crate = "zerocopy_derive",
29995- crate_root = "zerocopy-derive-0.8.56.crate/src/lib.rs",
29999+ crate_root = "zerocopy-derive-0.8.55.crate/src/lib.rs",
2999630000 edition = "2021",
2999730001 env = {
2999830002 "CARGO_BIN_NAME": "zerocopy_derive",
2999930003 "CARGO_CRATE_NAME": "zerocopy_derive",
30000- "CARGO_MANIFEST_DIR": "zerocopy-derive-0.8.56.crate",
30001- "CARGO_PKG_AUTHORS": "",
30004+ "CARGO_MANIFEST_DIR": "zerocopy-derive-0.8.55.crate",
30005+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
3000230006 "CARGO_PKG_DESCRIPTION": "Custom derive for traits from the zerocopy crate",
3000330007 "CARGO_PKG_HOMEPAGE": "",
3000430008 "CARGO_PKG_NAME": "zerocopy-derive",
3000530009 "CARGO_PKG_README": "",
3000630010 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",
3000730011 "CARGO_PKG_RUST_VERSION": "",
30008- "CARGO_PKG_VERSION": "0.8.56",
30012+ "CARGO_PKG_VERSION": "0.8.55",
3000930013 "CARGO_PKG_VERSION_MAJOR": "0",
3001030014 "CARGO_PKG_VERSION_MINOR": "8",
30011- "CARGO_PKG_VERSION_PATCH": "56",
30015+ "CARGO_PKG_VERSION_PATCH": "55",
3001230016 "CARGO_PKG_VERSION_PRE": "",
3001330017 },
3001430018 proc_macro = True,
@@ -30179,23 +30183,23 @@ cargo.rust_library(
3017930183 )
3018030184
3018130185 http_archive(
30182- name = "zerotrie-0.2.5.crate",
30183- sha256 = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f",
30184- strip_prefix = "zerotrie-0.2.5",
30185- urls = ["https://static.crates.io/crates/zerotrie/0.2.5/download"],
30186+ name = "zerotrie-0.2.4.crate",
30187+ sha256 = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf",
30188+ strip_prefix = "zerotrie-0.2.4",
30189+ urls = ["https://static.crates.io/crates/zerotrie/0.2.4/download"],
3018630190 visibility = [],
3018730191 )
3018830192
3018930193 cargo.rust_library(
3019030194 name = "zerotrie-0.2",
30191- srcs = [":zerotrie-0.2.5.crate"],
30195+ srcs = [":zerotrie-0.2.4.crate"],
3019230196 crate = "zerotrie",
30193- crate_root = "zerotrie-0.2.5.crate/src/lib.rs",
30197+ crate_root = "zerotrie-0.2.4.crate/src/lib.rs",
3019430198 edition = "2021",
3019530199 env = {
3019630200 "CARGO_BIN_NAME": "zerotrie",
3019730201 "CARGO_CRATE_NAME": "zerotrie",
30198- "CARGO_MANIFEST_DIR": "zerotrie-0.2.5.crate",
30202+ "CARGO_MANIFEST_DIR": "zerotrie-0.2.4.crate",
3019930203 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
3020030204 "CARGO_PKG_DESCRIPTION": "A data structure that efficiently maps strings to integers",
3020130205 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
@@ -30203,10 +30207,10 @@ cargo.rust_library(
3020330207 "CARGO_PKG_README": "README.md",
3020430208 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
3020530209 "CARGO_PKG_RUST_VERSION": "1.82",
30206- "CARGO_PKG_VERSION": "0.2.5",
30210+ "CARGO_PKG_VERSION": "0.2.4",
3020730211 "CARGO_PKG_VERSION_MAJOR": "0",
3020830212 "CARGO_PKG_VERSION_MINOR": "2",
30209- "CARGO_PKG_VERSION_PATCH": "5",
30213+ "CARGO_PKG_VERSION_PATCH": "4",
3021030214 "CARGO_PKG_VERSION_PRE": "",
3021130215 },
3021230216 features = [
@@ -30222,23 +30226,23 @@ cargo.rust_library(
3022230226 )
3022330227
3022430228 http_archive(
30225- name = "zerovec-0.11.8.crate",
30226- sha256 = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8",
30227- strip_prefix = "zerovec-0.11.8",
30228- urls = ["https://static.crates.io/crates/zerovec/0.11.8/download"],
30229+ name = "zerovec-0.11.6.crate",
30230+ sha256 = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239",
30231+ strip_prefix = "zerovec-0.11.6",
30232+ urls = ["https://static.crates.io/crates/zerovec/0.11.6/download"],
3022930233 visibility = [],
3023030234 )
3023130235
3023230236 cargo.rust_library(
3023330237 name = "zerovec-0.11",
30234- srcs = [":zerovec-0.11.8.crate"],
30238+ srcs = [":zerovec-0.11.6.crate"],
3023530239 crate = "zerovec",
30236- crate_root = "zerovec-0.11.8.crate/src/lib.rs",
30240+ crate_root = "zerovec-0.11.6.crate/src/lib.rs",
3023730241 edition = "2021",
3023830242 env = {
3023930243 "CARGO_BIN_NAME": "zerovec",
3024030244 "CARGO_CRATE_NAME": "zerovec",
30241- "CARGO_MANIFEST_DIR": "zerovec-0.11.8.crate",
30245+ "CARGO_MANIFEST_DIR": "zerovec-0.11.6.crate",
3024230246 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
3024330247 "CARGO_PKG_DESCRIPTION": "Zero-copy vector backed by a byte array",
3024430248 "CARGO_PKG_HOMEPAGE": "",
@@ -30246,10 +30250,10 @@ cargo.rust_library(
3024630250 "CARGO_PKG_README": "README.md",
3024730251 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
3024830252 "CARGO_PKG_RUST_VERSION": "1.83",
30249- "CARGO_PKG_VERSION": "0.11.8",
30253+ "CARGO_PKG_VERSION": "0.11.6",
3025030254 "CARGO_PKG_VERSION_MAJOR": "0",
3025130255 "CARGO_PKG_VERSION_MINOR": "11",
30252- "CARGO_PKG_VERSION_PATCH": "8",
30256+ "CARGO_PKG_VERSION_PATCH": "6",
3025330257 "CARGO_PKG_VERSION_PRE": "",
3025430258 },
3025530259 features = [
@@ -30265,23 +30269,23 @@ cargo.rust_library(
3026530269 )
3026630270
3026730271 http_archive(
30268- name = "zerovec-derive-0.11.6.crate",
30269- sha256 = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da",
30270- strip_prefix = "zerovec-derive-0.11.6",
30271- urls = ["https://static.crates.io/crates/zerovec-derive/0.11.6/download"],
30272+ name = "zerovec-derive-0.11.3.crate",
30273+ sha256 = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555",
30274+ strip_prefix = "zerovec-derive-0.11.3",
30275+ urls = ["https://static.crates.io/crates/zerovec-derive/0.11.3/download"],
3027230276 visibility = [],
3027330277 )
3027430278
3027530279 cargo.rust_library(
3027630280 name = "zerovec-derive-0.11",
30277- srcs = [":zerovec-derive-0.11.6.crate"],
30281+ srcs = [":zerovec-derive-0.11.3.crate"],
3027830282 crate = "zerovec_derive",
30279- crate_root = "zerovec-derive-0.11.6.crate/src/lib.rs",
30283+ crate_root = "zerovec-derive-0.11.3.crate/src/lib.rs",
3028030284 edition = "2021",
3028130285 env = {
3028230286 "CARGO_BIN_NAME": "zerovec_derive",
3028330287 "CARGO_CRATE_NAME": "zerovec_derive",
30284- "CARGO_MANIFEST_DIR": "zerovec-derive-0.11.6.crate",
30288+ "CARGO_MANIFEST_DIR": "zerovec-derive-0.11.3.crate",
3028530289 "CARGO_PKG_AUTHORS": "Manish Goregaokar <manishsmail@gmail.com>",
3028630290 "CARGO_PKG_DESCRIPTION": "Custom derive for the zerovec crate",
3028730291 "CARGO_PKG_HOMEPAGE": "",
@@ -30289,10 +30293,10 @@ cargo.rust_library(
3028930293 "CARGO_PKG_README": "README.md",
3029030294 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
3029130295 "CARGO_PKG_RUST_VERSION": "",
30292- "CARGO_PKG_VERSION": "0.11.6",
30296+ "CARGO_PKG_VERSION": "0.11.3",
3029330297 "CARGO_PKG_VERSION_MAJOR": "0",
3029430298 "CARGO_PKG_VERSION_MINOR": "11",
30295- "CARGO_PKG_VERSION_PATCH": "6",
30299+ "CARGO_PKG_VERSION_PATCH": "3",
3029630300 "CARGO_PKG_VERSION_PRE": "",
3029730301 },
3029830302 proc_macro = True,
@@ -30300,7 +30304,7 @@ cargo.rust_library(
3030030304 deps = [
3030130305 ":proc-macro2-1",
3030230306 ":quote-1",
30303- ":syn-3",
30307+ ":syn-2",
3030430308 ],
3030530309 )
3030630310
@@ -30412,6 +30416,7 @@ buildscript_run(
3041230416 "CARGO_PKG_VERSION_MINOR": "4",
3041330417 "CARGO_PKG_VERSION_PATCH": "2",
3041430418 "CARGO_PKG_VERSION_PRE": "",
30419+ "OPT_LEVEL": "2",
3041530420 },
3041630421 features = [
3041730422 "_deflate-any",
@@ -30501,6 +30506,7 @@ buildscript_run(
3050130506 "CARGO_PKG_VERSION_MINOR": "0",
3050230507 "CARGO_PKG_VERSION_PATCH": "23",
3050330508 "CARGO_PKG_VERSION_PRE": "",
30509+ "OPT_LEVEL": "2",
3050430510 },
3050530511 version = "1.0.23",
3050630512 )
@@ -30552,23 +30558,23 @@ cargo.rust_library(
3055230558 )
3055330559
3055430560 http_archive(
30555- name = "zune-core-0.5.3.crate",
30556- sha256 = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b",
30557- strip_prefix = "zune-core-0.5.3",
30558- urls = ["https://static.crates.io/crates/zune-core/0.5.3/download"],
30561+ name = "zune-core-0.5.1.crate",
30562+ sha256 = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9",
30563+ strip_prefix = "zune-core-0.5.1",
30564+ urls = ["https://static.crates.io/crates/zune-core/0.5.1/download"],
3055930565 visibility = [],
3056030566 )
3056130567
3056230568 cargo.rust_library(
3056330569 name = "zune-core-0.5",
30564- srcs = [":zune-core-0.5.3.crate"],
30570+ srcs = [":zune-core-0.5.1.crate"],
3056530571 crate = "zune_core",
30566- crate_root = "zune-core-0.5.3.crate/src/lib.rs",
30572+ crate_root = "zune-core-0.5.1.crate/src/lib.rs",
3056730573 edition = "2021",
3056830574 env = {
3056930575 "CARGO_BIN_NAME": "zune_core",
3057030576 "CARGO_CRATE_NAME": "zune_core",
30571- "CARGO_MANIFEST_DIR": "zune-core-0.5.3.crate",
30577+ "CARGO_MANIFEST_DIR": "zune-core-0.5.1.crate",
3057230578 "CARGO_PKG_AUTHORS": "",
3057330579 "CARGO_PKG_DESCRIPTION": "Core utilities for image processing in the zune family of crates",
3057430580 "CARGO_PKG_HOMEPAGE": "",
@@ -30576,10 +30582,10 @@ cargo.rust_library(
3057630582 "CARGO_PKG_README": "README.md",
3057730583 "CARGO_PKG_REPOSITORY": "https://github.com/etemesi254/zune-image",
3057830584 "CARGO_PKG_RUST_VERSION": "1.75.0",
30579- "CARGO_PKG_VERSION": "0.5.3",
30585+ "CARGO_PKG_VERSION": "0.5.1",
3058030586 "CARGO_PKG_VERSION_MAJOR": "0",
3058130587 "CARGO_PKG_VERSION_MINOR": "5",
30582- "CARGO_PKG_VERSION_PATCH": "3",
30588+ "CARGO_PKG_VERSION_PATCH": "1",
3058330589 "CARGO_PKG_VERSION_PRE": "",
3058430590 },
3058530591 features = ["std"],
@@ -461,6 +461,7 @@ buildscript_run(
461 "CARGO_PKG_VERSION_MINOR": "8",461 "CARGO_PKG_VERSION_MINOR": "8",
462 "CARGO_PKG_VERSION_PATCH": "12",462 "CARGO_PKG_VERSION_PATCH": "12",
463 "CARGO_PKG_VERSION_PRE": "",463 "CARGO_PKG_VERSION_PRE": "",
464+ "OPT_LEVEL": "2",
464 },465 },
465 features = [466 features = [
466 "no-rng",467 "no-rng",
@@ -486,23 +487,23 @@ buildscript_run(
486 )487 )
487 488
488 http_archive(489 http_archive(
489- name = "aho-corasick-1.1.5.crate",490+ name = "aho-corasick-1.1.4.crate",
490- sha256 = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba",491+ sha256 = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301",
491- strip_prefix = "aho-corasick-1.1.5",492+ strip_prefix = "aho-corasick-1.1.4",
492- urls = ["https://static.crates.io/crates/aho-corasick/1.1.5/download"],493+ urls = ["https://static.crates.io/crates/aho-corasick/1.1.4/download"],
493 visibility = [],494 visibility = [],
494 )495 )
495 496
496 cargo.rust_library(497 cargo.rust_library(
497 name = "aho-corasick-1",498 name = "aho-corasick-1",
498- srcs = [":aho-corasick-1.1.5.crate"],499+ srcs = [":aho-corasick-1.1.4.crate"],
499 crate = "aho_corasick",500 crate = "aho_corasick",
500- crate_root = "aho-corasick-1.1.5.crate/src/lib.rs",501+ crate_root = "aho-corasick-1.1.4.crate/src/lib.rs",
501 edition = "2021",502 edition = "2021",
502 env = {503 env = {
503 "CARGO_BIN_NAME": "aho_corasick",504 "CARGO_BIN_NAME": "aho_corasick",
504 "CARGO_CRATE_NAME": "aho_corasick",505 "CARGO_CRATE_NAME": "aho_corasick",
505- "CARGO_MANIFEST_DIR": "aho-corasick-1.1.5.crate",506+ "CARGO_MANIFEST_DIR": "aho-corasick-1.1.4.crate",
506 "CARGO_PKG_AUTHORS": "Andrew Gallant <jamslam@gmail.com>",507 "CARGO_PKG_AUTHORS": "Andrew Gallant <jamslam@gmail.com>",
507 "CARGO_PKG_DESCRIPTION": "Fast multiple substring searching.",508 "CARGO_PKG_DESCRIPTION": "Fast multiple substring searching.",
508 "CARGO_PKG_HOMEPAGE": "https://github.com/BurntSushi/aho-corasick",509 "CARGO_PKG_HOMEPAGE": "https://github.com/BurntSushi/aho-corasick",
@@ -510,10 +511,10 @@ cargo.rust_library(
510 "CARGO_PKG_README": "README.md",511 "CARGO_PKG_README": "README.md",
511 "CARGO_PKG_REPOSITORY": "https://github.com/BurntSushi/aho-corasick",512 "CARGO_PKG_REPOSITORY": "https://github.com/BurntSushi/aho-corasick",
512 "CARGO_PKG_RUST_VERSION": "1.60.0",513 "CARGO_PKG_RUST_VERSION": "1.60.0",
513- "CARGO_PKG_VERSION": "1.1.5",514+ "CARGO_PKG_VERSION": "1.1.4",
514 "CARGO_PKG_VERSION_MAJOR": "1",515 "CARGO_PKG_VERSION_MAJOR": "1",
515 "CARGO_PKG_VERSION_MINOR": "1",516 "CARGO_PKG_VERSION_MINOR": "1",
516- "CARGO_PKG_VERSION_PATCH": "5",517+ "CARGO_PKG_VERSION_PATCH": "4",
517 "CARGO_PKG_VERSION_PRE": "",518 "CARGO_PKG_VERSION_PRE": "",
518 },519 },
519 features = [520 features = [
@@ -689,6 +690,7 @@ buildscript_run(
689 "CARGO_PKG_VERSION_MINOR": "4",690 "CARGO_PKG_VERSION_MINOR": "4",
690 "CARGO_PKG_VERSION_PATCH": "0",691 "CARGO_PKG_VERSION_PATCH": "0",
691 "CARGO_PKG_VERSION_PRE": "",692 "CARGO_PKG_VERSION_PRE": "",
693+ "OPT_LEVEL": "2",
692 },694 },
693 version = "0.4.0",695 version = "0.4.0",
694 )696 )
@@ -1029,6 +1031,7 @@ buildscript_run(
1029 "CARGO_PKG_VERSION_MINOR": "0",1031 "CARGO_PKG_VERSION_MINOR": "0",
1030 "CARGO_PKG_VERSION_PATCH": "104",1032 "CARGO_PKG_VERSION_PATCH": "104",
1031 "CARGO_PKG_VERSION_PRE": "",1033 "CARGO_PKG_VERSION_PRE": "",
1034+ "OPT_LEVEL": "2",
1032 },1035 },
1033 features = [1036 features = [
1034 "backtrace",1037 "backtrace",
@@ -1122,23 +1125,23 @@ cargo.rust_library(
1122 )1125 )
1123 1126
1124 http_archive(1127 http_archive(
1125- name = "archery-1.2.3.crate",1128+ name = "archery-1.2.2.crate",
1126- sha256 = "33ca55ee147b1926dbea904f50fe4902494e97bc742205abbbf10c709e43815f",1129+ sha256 = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d",
1127- strip_prefix = "archery-1.2.3",1130+ strip_prefix = "archery-1.2.2",
1128- urls = ["https://static.crates.io/crates/archery/1.2.3/download"],1131+ urls = ["https://static.crates.io/crates/archery/1.2.2/download"],
1129 visibility = [],1132 visibility = [],
1130 )1133 )
1131 1134
1132 cargo.rust_library(1135 cargo.rust_library(
1133 name = "archery-1",1136 name = "archery-1",
1134- srcs = [":archery-1.2.3.crate"],1137+ srcs = [":archery-1.2.2.crate"],
1135 crate = "archery",1138 crate = "archery",
1136- crate_root = "archery-1.2.3.crate/src/lib.rs",1139+ crate_root = "archery-1.2.2.crate/src/lib.rs",
1137 edition = "2024",1140 edition = "2024",
1138 env = {1141 env = {
1139 "CARGO_BIN_NAME": "archery",1142 "CARGO_BIN_NAME": "archery",
1140 "CARGO_CRATE_NAME": "archery",1143 "CARGO_CRATE_NAME": "archery",
1141- "CARGO_MANIFEST_DIR": "archery-1.2.3.crate",1144+ "CARGO_MANIFEST_DIR": "archery-1.2.2.crate",
1142 "CARGO_PKG_AUTHORS": "Diogo Sousa <diogogsousa@gmail.com>",1145 "CARGO_PKG_AUTHORS": "Diogo Sousa <diogogsousa@gmail.com>",
1143 "CARGO_PKG_DESCRIPTION": "Abstract over the atomicity of reference-counting pointers",1146 "CARGO_PKG_DESCRIPTION": "Abstract over the atomicity of reference-counting pointers",
1144 "CARGO_PKG_HOMEPAGE": "https://github.com/orium/archery",1147 "CARGO_PKG_HOMEPAGE": "https://github.com/orium/archery",
@@ -1146,10 +1149,10 @@ cargo.rust_library(
1146 "CARGO_PKG_README": "README.md",1149 "CARGO_PKG_README": "README.md",
1147 "CARGO_PKG_REPOSITORY": "https://github.com/orium/archery",1150 "CARGO_PKG_REPOSITORY": "https://github.com/orium/archery",
1148 "CARGO_PKG_RUST_VERSION": "1.85.0",1151 "CARGO_PKG_RUST_VERSION": "1.85.0",
1149- "CARGO_PKG_VERSION": "1.2.3",1152+ "CARGO_PKG_VERSION": "1.2.2",
1150 "CARGO_PKG_VERSION_MAJOR": "1",1153 "CARGO_PKG_VERSION_MAJOR": "1",
1151 "CARGO_PKG_VERSION_MINOR": "2",1154 "CARGO_PKG_VERSION_MINOR": "2",
1152- "CARGO_PKG_VERSION_PATCH": "3",1155+ "CARGO_PKG_VERSION_PATCH": "2",
1153 "CARGO_PKG_VERSION_PRE": "",1156 "CARGO_PKG_VERSION_PRE": "",
1154 },1157 },
1155 features = ["triomphe"],1158 features = ["triomphe"],
@@ -1268,23 +1271,23 @@ cargo.rust_library(
1268 )1271 )
1269 1272
1270 http_archive(1273 http_archive(
1271- name = "async-trait-0.1.92.crate",1274+ name = "async-trait-0.1.91.crate",
1272- sha256 = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667",1275+ sha256 = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec",
1273- strip_prefix = "async-trait-0.1.92",1276+ strip_prefix = "async-trait-0.1.91",
1274- urls = ["https://static.crates.io/crates/async-trait/0.1.92/download"],1277+ urls = ["https://static.crates.io/crates/async-trait/0.1.91/download"],
1275 visibility = [],1278 visibility = [],
1276 )1279 )
1277 1280
1278 cargo.rust_library(1281 cargo.rust_library(
1279 name = "async-trait-0.1",1282 name = "async-trait-0.1",
1280- srcs = [":async-trait-0.1.92.crate"],1283+ srcs = [":async-trait-0.1.91.crate"],
1281 crate = "async_trait",1284 crate = "async_trait",
1282- crate_root = "async-trait-0.1.92.crate/src/lib.rs",1285+ crate_root = "async-trait-0.1.91.crate/src/lib.rs",
1283 edition = "2021",1286 edition = "2021",
1284 env = {1287 env = {
1285 "CARGO_BIN_NAME": "async_trait",1288 "CARGO_BIN_NAME": "async_trait",
1286 "CARGO_CRATE_NAME": "async_trait",1289 "CARGO_CRATE_NAME": "async_trait",
1287- "CARGO_MANIFEST_DIR": "async-trait-0.1.92.crate",1290+ "CARGO_MANIFEST_DIR": "async-trait-0.1.91.crate",
1288 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",1291 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
1289 "CARGO_PKG_DESCRIPTION": "Type erasure for async trait methods",1292 "CARGO_PKG_DESCRIPTION": "Type erasure for async trait methods",
1290 "CARGO_PKG_HOMEPAGE": "",1293 "CARGO_PKG_HOMEPAGE": "",
@@ -1292,10 +1295,10 @@ cargo.rust_library(
1292 "CARGO_PKG_README": "README.md",1295 "CARGO_PKG_README": "README.md",
1293 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/async-trait",1296 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/async-trait",
1294 "CARGO_PKG_RUST_VERSION": "1.71",1297 "CARGO_PKG_RUST_VERSION": "1.71",
1295- "CARGO_PKG_VERSION": "0.1.92",1298+ "CARGO_PKG_VERSION": "0.1.91",
1296 "CARGO_PKG_VERSION_MAJOR": "0",1299 "CARGO_PKG_VERSION_MAJOR": "0",
1297 "CARGO_PKG_VERSION_MINOR": "1",1300 "CARGO_PKG_VERSION_MINOR": "1",
1298- "CARGO_PKG_VERSION_PATCH": "92",1301+ "CARGO_PKG_VERSION_PATCH": "91",
1299 "CARGO_PKG_VERSION_PRE": "",1302 "CARGO_PKG_VERSION_PRE": "",
1300 },1303 },
1301 proc_macro = True,1304 proc_macro = True,
@@ -1584,23 +1587,23 @@ cargo.rust_library(
1584 )1587 )
1585 1588
1586 http_archive(1589 http_archive(
1587- name = "aws-lc-rs-1.18.0.crate",1590+ name = "aws-lc-rs-1.17.3.crate",
1588- sha256 = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e",1591+ sha256 = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1",
1589- strip_prefix = "aws-lc-rs-1.18.0",1592+ strip_prefix = "aws-lc-rs-1.17.3",
1590- urls = ["https://static.crates.io/crates/aws-lc-rs/1.18.0/download"],1593+ urls = ["https://static.crates.io/crates/aws-lc-rs/1.17.3/download"],
1591 visibility = [],1594 visibility = [],
1592 )1595 )
1593 1596
1594 cargo.rust_library(1597 cargo.rust_library(
1595 name = "aws-lc-rs-1",1598 name = "aws-lc-rs-1",
1596- srcs = [":aws-lc-rs-1.18.0.crate"],1599+ srcs = [":aws-lc-rs-1.17.3.crate"],
1597 crate = "aws_lc_rs",1600 crate = "aws_lc_rs",
1598- crate_root = "aws-lc-rs-1.18.0.crate/src/lib.rs",1601+ crate_root = "aws-lc-rs-1.17.3.crate/src/lib.rs",
1599 edition = "2021",1602 edition = "2021",
1600 env = {1603 env = {
1601 "CARGO_BIN_NAME": "aws_lc_rs",1604 "CARGO_BIN_NAME": "aws_lc_rs",
1602 "CARGO_CRATE_NAME": "aws_lc_rs",1605 "CARGO_CRATE_NAME": "aws_lc_rs",
1603- "CARGO_MANIFEST_DIR": "aws-lc-rs-1.18.0.crate",1606+ "CARGO_MANIFEST_DIR": "aws-lc-rs-1.17.3.crate",
1604 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",1607 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",
1605 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",1608 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
1606 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",1609 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",
@@ -1608,10 +1611,10 @@ cargo.rust_library(
1608 "CARGO_PKG_README": "README.md",1611 "CARGO_PKG_README": "README.md",
1609 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",1612 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
1610 "CARGO_PKG_RUST_VERSION": "1.71.0",1613 "CARGO_PKG_RUST_VERSION": "1.71.0",
1611- "CARGO_PKG_VERSION": "1.18.0",1614+ "CARGO_PKG_VERSION": "1.17.3",
1612 "CARGO_PKG_VERSION_MAJOR": "1",1615 "CARGO_PKG_VERSION_MAJOR": "1",
1613- "CARGO_PKG_VERSION_MINOR": "18",1616+ "CARGO_PKG_VERSION_MINOR": "17",
1614- "CARGO_PKG_VERSION_PATCH": "0",1617+ "CARGO_PKG_VERSION_PATCH": "3",
1615 "CARGO_PKG_VERSION_PRE": "",1618 "CARGO_PKG_VERSION_PRE": "",
1616 "OUT_DIR": "$(location :aws-lc-rs-1-build-script-run[out_dir])",1619 "OUT_DIR": "$(location :aws-lc-rs-1-build-script-run[out_dir])",
1617 },1620 },
@@ -1626,7 +1629,7 @@ cargo.rust_library(
1626 rustc_flags = ["@$(location :aws-lc-rs-1-build-script-run[rustc_flags])"],1629 rustc_flags = ["@$(location :aws-lc-rs-1-build-script-run[rustc_flags])"],
1627 visibility = [],1630 visibility = [],
1628 deps = [1631 deps = [
1629- ":aws-lc-sys-0.44",1632+ ":aws-lc-sys-0.43",
1630 ":untrusted-0.7",1633 ":untrusted-0.7",
1631 ":zeroize-1",1634 ":zeroize-1",
1632 ],1635 ],
@@ -1634,14 +1637,14 @@ cargo.rust_library(
1634 1637
1635 cargo.rust_binary(1638 cargo.rust_binary(
1636 name = "aws-lc-rs-1-build-script-build",1639 name = "aws-lc-rs-1-build-script-build",
1637- srcs = [":aws-lc-rs-1.18.0.crate"],1640+ srcs = [":aws-lc-rs-1.17.3.crate"],
1638 crate = "build_script_build",1641 crate = "build_script_build",
1639- crate_root = "aws-lc-rs-1.18.0.crate/build.rs",1642+ crate_root = "aws-lc-rs-1.17.3.crate/build.rs",
1640 edition = "2021",1643 edition = "2021",
1641 env = {1644 env = {
1642 "CARGO_BIN_NAME": "build-script-build",1645 "CARGO_BIN_NAME": "build-script-build",
1643 "CARGO_CRATE_NAME": "build_script_build",1646 "CARGO_CRATE_NAME": "build_script_build",
1644- "CARGO_MANIFEST_DIR": "aws-lc-rs-1.18.0.crate",1647+ "CARGO_MANIFEST_DIR": "aws-lc-rs-1.17.3.crate",
1645 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",1648 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",
1646 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",1649 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
1647 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",1650 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",
@@ -1649,10 +1652,10 @@ cargo.rust_binary(
1649 "CARGO_PKG_README": "README.md",1652 "CARGO_PKG_README": "README.md",
1650 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",1653 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
1651 "CARGO_PKG_RUST_VERSION": "1.71.0",1654 "CARGO_PKG_RUST_VERSION": "1.71.0",
1652- "CARGO_PKG_VERSION": "1.18.0",1655+ "CARGO_PKG_VERSION": "1.17.3",
1653 "CARGO_PKG_VERSION_MAJOR": "1",1656 "CARGO_PKG_VERSION_MAJOR": "1",
1654- "CARGO_PKG_VERSION_MINOR": "18",1657+ "CARGO_PKG_VERSION_MINOR": "17",
1655- "CARGO_PKG_VERSION_PATCH": "0",1658+ "CARGO_PKG_VERSION_PATCH": "3",
1656 "CARGO_PKG_VERSION_PRE": "",1659 "CARGO_PKG_VERSION_PRE": "",
1657 },1660 },
1658 features = [1661 features = [
@@ -1671,7 +1674,7 @@ buildscript_run(
1671 package_name = "aws-lc-rs",1674 package_name = "aws-lc-rs",
1672 buildscript_rule = ":aws-lc-rs-1-build-script-build",1675 buildscript_rule = ":aws-lc-rs-1-build-script-build",
1673 env = {1676 env = {
1674- "CARGO_MANIFEST_LINKS": "aws_lc_rs_1_18_0_sys",1677+ "CARGO_MANIFEST_LINKS": "aws_lc_rs_1_17_3_sys",
1675 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",1678 "CARGO_PKG_AUTHORS": "AWS-LibCrypto",
1676 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",1679 "CARGO_PKG_DESCRIPTION": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
1677 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",1680 "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs",
@@ -1679,9 +1682,11 @@ buildscript_run(
1679 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",1682 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
1680 "CARGO_PKG_RUST_VERSION": "1.71.0",1683 "CARGO_PKG_RUST_VERSION": "1.71.0",
1681 "CARGO_PKG_VERSION_MAJOR": "1",1684 "CARGO_PKG_VERSION_MAJOR": "1",
1682- "CARGO_PKG_VERSION_MINOR": "18",1685+ "CARGO_PKG_VERSION_MINOR": "17",
1683- "CARGO_PKG_VERSION_PATCH": "0",1686+ "CARGO_PKG_VERSION_PATCH": "3",
1684 "CARGO_PKG_VERSION_PRE": "",1687 "CARGO_PKG_VERSION_PRE": "",
1688+ "DEP_AWS_LC_0_43_0_INCLUDE": "$(location :aws-lc-sys-0.43.0.crate)/include",
1689+ "OPT_LEVEL": "2",
1685 },1690 },
1686 features = [1691 features = [
1687 "alloc",1692 "alloc",
@@ -1691,27 +1696,27 @@ buildscript_run(
1691 "ring-io",1696 "ring-io",
1692 "ring-sig-verify",1697 "ring-sig-verify",
1693 ],1698 ],
1694- version = "1.18.0",1699+ version = "1.17.3",
1695 )1700 )
1696 1701
1697 http_archive(1702 http_archive(
1698- name = "aws-lc-sys-0.44.0.crate",1703+ name = "aws-lc-sys-0.43.0.crate",
1699- sha256 = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483",1704+ sha256 = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c",
1700- strip_prefix = "aws-lc-sys-0.44.0",1705+ strip_prefix = "aws-lc-sys-0.43.0",
1701- urls = ["https://static.crates.io/crates/aws-lc-sys/0.44.0/download"],1706+ urls = ["https://static.crates.io/crates/aws-lc-sys/0.43.0/download"],
1702 visibility = [],1707 visibility = [],
1703 )1708 )
1704 1709
1705 cargo.rust_library(1710 cargo.rust_library(
1706- name = "aws-lc-sys-0.44",1711+ name = "aws-lc-sys-0.43",
1707- srcs = [":aws-lc-sys-0.44.0.crate"],1712+ srcs = [":aws-lc-sys-0.43.0.crate"],
1708 crate = "aws_lc_sys",1713 crate = "aws_lc_sys",
1709- crate_root = "aws-lc-sys-0.44.0.crate/src/lib.rs",1714+ crate_root = "aws-lc-sys-0.43.0.crate/src/lib.rs",
1710 edition = "2021",1715 edition = "2021",
1711 env = {1716 env = {
1712 "CARGO_BIN_NAME": "aws_lc_sys",1717 "CARGO_BIN_NAME": "aws_lc_sys",
1713 "CARGO_CRATE_NAME": "aws_lc_sys",1718 "CARGO_CRATE_NAME": "aws_lc_sys",
1714- "CARGO_MANIFEST_DIR": "aws-lc-sys-0.44.0.crate",1719+ "CARGO_MANIFEST_DIR": "aws-lc-sys-0.43.0.crate",
1715 "CARGO_PKG_AUTHORS": "AWS-LC",1720 "CARGO_PKG_AUTHORS": "AWS-LC",
1716 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",1721 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
1717 "CARGO_PKG_HOMEPAGE": "",1722 "CARGO_PKG_HOMEPAGE": "",
@@ -1719,28 +1724,28 @@ cargo.rust_library(
1719 "CARGO_PKG_README": "README.md",1724 "CARGO_PKG_README": "README.md",
1720 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",1725 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
1721 "CARGO_PKG_RUST_VERSION": "1.71.0",1726 "CARGO_PKG_RUST_VERSION": "1.71.0",
1722- "CARGO_PKG_VERSION": "0.44.0",1727+ "CARGO_PKG_VERSION": "0.43.0",
1723 "CARGO_PKG_VERSION_MAJOR": "0",1728 "CARGO_PKG_VERSION_MAJOR": "0",
1724- "CARGO_PKG_VERSION_MINOR": "44",1729+ "CARGO_PKG_VERSION_MINOR": "43",
1725 "CARGO_PKG_VERSION_PATCH": "0",1730 "CARGO_PKG_VERSION_PATCH": "0",
1726 "CARGO_PKG_VERSION_PRE": "",1731 "CARGO_PKG_VERSION_PRE": "",
1727- "OUT_DIR": "$(location :aws-lc-sys-0.44-build-script-main-run[out_dir])",1732+ "OUT_DIR": "$(location :aws-lc-sys-0.43-build-script-main-run[out_dir])",
1728 },1733 },
1729 features = ["prebuilt-nasm"],1734 features = ["prebuilt-nasm"],
1730- rustc_flags = ["@$(location :aws-lc-sys-0.44-build-script-main-run[rustc_flags])"],1735+ rustc_flags = ["@$(location :aws-lc-sys-0.43-build-script-main-run[rustc_flags])"],
1731 visibility = [],1736 visibility = [],
1732 )1737 )
1733 1738
1734 cargo.rust_binary(1739 cargo.rust_binary(
1735- name = "aws-lc-sys-0.44-build-script-main",1740+ name = "aws-lc-sys-0.43-build-script-main",
1736- srcs = [":aws-lc-sys-0.44.0.crate"],1741+ srcs = [":aws-lc-sys-0.43.0.crate"],
1737 crate = "build_script_main",1742 crate = "build_script_main",
1738- crate_root = "aws-lc-sys-0.44.0.crate/builder/main.rs",1743+ crate_root = "aws-lc-sys-0.43.0.crate/builder/main.rs",
1739 edition = "2021",1744 edition = "2021",
1740 env = {1745 env = {
1741 "CARGO_BIN_NAME": "build-script-main",1746 "CARGO_BIN_NAME": "build-script-main",
1742 "CARGO_CRATE_NAME": "build_script_build",1747 "CARGO_CRATE_NAME": "build_script_build",
1743- "CARGO_MANIFEST_DIR": "aws-lc-sys-0.44.0.crate",1748+ "CARGO_MANIFEST_DIR": "aws-lc-sys-0.43.0.crate",
1744 "CARGO_PKG_AUTHORS": "AWS-LC",1749 "CARGO_PKG_AUTHORS": "AWS-LC",
1745 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",1750 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
1746 "CARGO_PKG_HOMEPAGE": "",1751 "CARGO_PKG_HOMEPAGE": "",
@@ -1748,9 +1753,9 @@ cargo.rust_binary(
1748 "CARGO_PKG_README": "README.md",1753 "CARGO_PKG_README": "README.md",
1749 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",1754 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
1750 "CARGO_PKG_RUST_VERSION": "1.71.0",1755 "CARGO_PKG_RUST_VERSION": "1.71.0",
1751- "CARGO_PKG_VERSION": "0.44.0",1756+ "CARGO_PKG_VERSION": "0.43.0",
1752 "CARGO_PKG_VERSION_MAJOR": "0",1757 "CARGO_PKG_VERSION_MAJOR": "0",
1753- "CARGO_PKG_VERSION_MINOR": "44",1758+ "CARGO_PKG_VERSION_MINOR": "43",
1754 "CARGO_PKG_VERSION_PATCH": "0",1759 "CARGO_PKG_VERSION_PATCH": "0",
1755 "CARGO_PKG_VERSION_PRE": "",1760 "CARGO_PKG_VERSION_PRE": "",
1756 },1761 },
@@ -1766,11 +1771,11 @@ cargo.rust_binary(
1766 )1771 )
1767 1772
1768 buildscript_run(1773 buildscript_run(
1769- name = "aws-lc-sys-0.44-build-script-main-run",1774+ name = "aws-lc-sys-0.43-build-script-main-run",
1770 package_name = "aws-lc-sys",1775 package_name = "aws-lc-sys",
1771- buildscript_rule = ":aws-lc-sys-0.44-build-script-main",1776+ buildscript_rule = ":aws-lc-sys-0.43-build-script-main",
1772 env = {1777 env = {
1773- "CARGO_MANIFEST_LINKS": "aws_lc_0_44_0",1778+ "CARGO_MANIFEST_LINKS": "aws_lc_0_43_0",
1774 "CARGO_PKG_AUTHORS": "AWS-LC",1779 "CARGO_PKG_AUTHORS": "AWS-LC",
1775 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",1780 "CARGO_PKG_DESCRIPTION": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
1776 "CARGO_PKG_HOMEPAGE": "",1781 "CARGO_PKG_HOMEPAGE": "",
@@ -1778,12 +1783,13 @@ buildscript_run(
1778 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",1783 "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs",
1779 "CARGO_PKG_RUST_VERSION": "1.71.0",1784 "CARGO_PKG_RUST_VERSION": "1.71.0",
1780 "CARGO_PKG_VERSION_MAJOR": "0",1785 "CARGO_PKG_VERSION_MAJOR": "0",
1781- "CARGO_PKG_VERSION_MINOR": "44",1786+ "CARGO_PKG_VERSION_MINOR": "43",
1782 "CARGO_PKG_VERSION_PATCH": "0",1787 "CARGO_PKG_VERSION_PATCH": "0",
1783 "CARGO_PKG_VERSION_PRE": "",1788 "CARGO_PKG_VERSION_PRE": "",
1789+ "OPT_LEVEL": "2",
1784 },1790 },
1785 features = ["prebuilt-nasm"],1791 features = ["prebuilt-nasm"],
1786- version = "0.44.0",1792+ version = "0.43.0",
1787 )1793 )
1788 1794
1789 http_archive(1795 http_archive(
@@ -1878,40 +1884,6 @@ cargo.rust_library(
1878 ],1884 ],
1879 )1885 )
1880 1886
1881-http_archive(
1882- name = "base16ct-1.0.0.crate",
1883- sha256 = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6",
1884- strip_prefix = "base16ct-1.0.0",
1885- urls = ["https://static.crates.io/crates/base16ct/1.0.0/download"],
1886- visibility = [],
1887-)
1888-
1889-cargo.rust_library(
1890- name = "base16ct-1",
1891- srcs = [":base16ct-1.0.0.crate"],
1892- crate = "base16ct",
1893- crate_root = "base16ct-1.0.0.crate/src/lib.rs",
1894- edition = "2024",
1895- env = {
1896- "CARGO_BIN_NAME": "base16ct",
1897- "CARGO_CRATE_NAME": "base16ct",
1898- "CARGO_MANIFEST_DIR": "base16ct-1.0.0.crate",
1899- "CARGO_PKG_AUTHORS": "RustCrypto Developers",
1900- "CARGO_PKG_DESCRIPTION": "Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids\nany usages of data-dependent branches/LUTs and thereby provides portable\n\"best effort\" constant-time operation and embedded-friendly no_std support\n",
1901- "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/base16ct",
1902- "CARGO_PKG_NAME": "base16ct",
1903- "CARGO_PKG_README": "README.md",
1904- "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",
1905- "CARGO_PKG_RUST_VERSION": "1.85",
1906- "CARGO_PKG_VERSION": "1.0.0",
1907- "CARGO_PKG_VERSION_MAJOR": "1",
1908- "CARGO_PKG_VERSION_MINOR": "0",
1909- "CARGO_PKG_VERSION_PATCH": "0",
1910- "CARGO_PKG_VERSION_PRE": "",
1911- },
1912- visibility = [],
1913-)
1914-
1915 http_archive(1887 http_archive(
1916 name = "base32-0.5.1.crate",1888 name = "base32-0.5.1.crate",
1917 sha256 = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076",1889 sha256 = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076",
@@ -2123,6 +2095,7 @@ buildscript_run(
2123 "CARGO_PKG_VERSION_MINOR": "70",2095 "CARGO_PKG_VERSION_MINOR": "70",
2124 "CARGO_PKG_VERSION_PATCH": "1",2096 "CARGO_PKG_VERSION_PATCH": "1",
2125 "CARGO_PKG_VERSION_PRE": "",2097 "CARGO_PKG_VERSION_PRE": "",
2098+ "OPT_LEVEL": "2",
2126 },2099 },
2127 features = [2100 features = [
2128 "default",2101 "default",
@@ -2242,6 +2215,7 @@ buildscript_run(
2242 "CARGO_PKG_VERSION_MINOR": "72",2215 "CARGO_PKG_VERSION_MINOR": "72",
2243 "CARGO_PKG_VERSION_PATCH": "1",2216 "CARGO_PKG_VERSION_PATCH": "1",
2244 "CARGO_PKG_VERSION_PRE": "",2217 "CARGO_PKG_VERSION_PRE": "",
2218+ "OPT_LEVEL": "2",
2245 },2219 },
2246 features = [2220 features = [
2247 "default",2221 "default",
@@ -2323,23 +2297,23 @@ cargo.rust_library(
2323 )2297 )
2324 2298
2325 http_archive(2299 http_archive(
2326- name = "blake3-1.8.7.crate",2300+ name = "blake3-1.8.5.crate",
2327- sha256 = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae",2301+ sha256 = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce",
2328- strip_prefix = "blake3-1.8.7",2302+ strip_prefix = "blake3-1.8.5",
2329- urls = ["https://static.crates.io/crates/blake3/1.8.7/download"],2303+ urls = ["https://static.crates.io/crates/blake3/1.8.5/download"],
2330 visibility = [],2304 visibility = [],
2331 )2305 )
2332 2306
2333 cargo.rust_library(2307 cargo.rust_library(
2334 name = "blake3-1",2308 name = "blake3-1",
2335- srcs = [":blake3-1.8.7.crate"],2309+ srcs = [":blake3-1.8.5.crate"],
2336 crate = "blake3",2310 crate = "blake3",
2337- crate_root = "blake3-1.8.7.crate/src/lib.rs",2311+ crate_root = "blake3-1.8.5.crate/src/lib.rs",
2338 edition = "2024",2312 edition = "2024",
2339 env = {2313 env = {
2340 "CARGO_BIN_NAME": "blake3",2314 "CARGO_BIN_NAME": "blake3",
2341 "CARGO_CRATE_NAME": "blake3",2315 "CARGO_CRATE_NAME": "blake3",
2342- "CARGO_MANIFEST_DIR": "blake3-1.8.7.crate",2316+ "CARGO_MANIFEST_DIR": "blake3-1.8.5.crate",
2343 "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves",2317 "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves",
2344 "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function",2318 "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function",
2345 "CARGO_PKG_HOMEPAGE": "",2319 "CARGO_PKG_HOMEPAGE": "",
@@ -2347,10 +2321,10 @@ cargo.rust_library(
2347 "CARGO_PKG_README": "README.md",2321 "CARGO_PKG_README": "README.md",
2348 "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3",2322 "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3",
2349 "CARGO_PKG_RUST_VERSION": "",2323 "CARGO_PKG_RUST_VERSION": "",
2350- "CARGO_PKG_VERSION": "1.8.7",2324+ "CARGO_PKG_VERSION": "1.8.5",
2351 "CARGO_PKG_VERSION_MAJOR": "1",2325 "CARGO_PKG_VERSION_MAJOR": "1",
2352 "CARGO_PKG_VERSION_MINOR": "8",2326 "CARGO_PKG_VERSION_MINOR": "8",
2353- "CARGO_PKG_VERSION_PATCH": "7",2327+ "CARGO_PKG_VERSION_PATCH": "5",
2354 "CARGO_PKG_VERSION_PRE": "",2328 "CARGO_PKG_VERSION_PRE": "",
2355 "OUT_DIR": "$(location :blake3-1-build-script-run[out_dir])",2329 "OUT_DIR": "$(location :blake3-1-build-script-run[out_dir])",
2356 },2330 },
@@ -2369,6 +2343,7 @@ cargo.rust_library(
2369 rustc_flags = ["@$(location :blake3-1-build-script-run[rustc_flags])"],2343 rustc_flags = ["@$(location :blake3-1-build-script-run[rustc_flags])"],
2370 visibility = [],2344 visibility = [],
2371 deps = [2345 deps = [
2346+ ":arrayref-0.3",
2372 ":arrayvec-0.7",2347 ":arrayvec-0.7",
2373 ":cfg-if-1",2348 ":cfg-if-1",
2374 ":constant_time_eq-0.4",2349 ":constant_time_eq-0.4",
@@ -2377,14 +2352,14 @@ cargo.rust_library(
2377 2352
2378 cargo.rust_binary(2353 cargo.rust_binary(
2379 name = "blake3-1-build-script-build",2354 name = "blake3-1-build-script-build",
2380- srcs = [":blake3-1.8.7.crate"],2355+ srcs = [":blake3-1.8.5.crate"],
2381 crate = "build_script_build",2356 crate = "build_script_build",
2382- crate_root = "blake3-1.8.7.crate/build.rs",2357+ crate_root = "blake3-1.8.5.crate/build.rs",
2383 edition = "2024",2358 edition = "2024",
2384 env = {2359 env = {
2385 "CARGO_BIN_NAME": "build-script-build",2360 "CARGO_BIN_NAME": "build-script-build",
2386 "CARGO_CRATE_NAME": "build_script_build",2361 "CARGO_CRATE_NAME": "build_script_build",
2387- "CARGO_MANIFEST_DIR": "blake3-1.8.7.crate",2362+ "CARGO_MANIFEST_DIR": "blake3-1.8.5.crate",
2388 "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves",2363 "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves",
2389 "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function",2364 "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function",
2390 "CARGO_PKG_HOMEPAGE": "",2365 "CARGO_PKG_HOMEPAGE": "",
@@ -2392,10 +2367,10 @@ cargo.rust_binary(
2392 "CARGO_PKG_README": "README.md",2367 "CARGO_PKG_README": "README.md",
2393 "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3",2368 "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3",
2394 "CARGO_PKG_RUST_VERSION": "",2369 "CARGO_PKG_RUST_VERSION": "",
2395- "CARGO_PKG_VERSION": "1.8.7",2370+ "CARGO_PKG_VERSION": "1.8.5",
2396 "CARGO_PKG_VERSION_MAJOR": "1",2371 "CARGO_PKG_VERSION_MAJOR": "1",
2397 "CARGO_PKG_VERSION_MINOR": "8",2372 "CARGO_PKG_VERSION_MINOR": "8",
2398- "CARGO_PKG_VERSION_PATCH": "7",2373+ "CARGO_PKG_VERSION_PATCH": "5",
2399 "CARGO_PKG_VERSION_PRE": "",2374 "CARGO_PKG_VERSION_PRE": "",
2400 },2375 },
2401 features = [2376 features = [
@@ -2419,14 +2394,15 @@ buildscript_run(
2419 "CARGO_PKG_RUST_VERSION": "",2394 "CARGO_PKG_RUST_VERSION": "",
2420 "CARGO_PKG_VERSION_MAJOR": "1",2395 "CARGO_PKG_VERSION_MAJOR": "1",
2421 "CARGO_PKG_VERSION_MINOR": "8",2396 "CARGO_PKG_VERSION_MINOR": "8",
2422- "CARGO_PKG_VERSION_PATCH": "7",2397+ "CARGO_PKG_VERSION_PATCH": "5",
2423 "CARGO_PKG_VERSION_PRE": "",2398 "CARGO_PKG_VERSION_PRE": "",
2399+ "OPT_LEVEL": "2",
2424 },2400 },
2425 features = [2401 features = [
2426 "default",2402 "default",
2427 "std",2403 "std",
2428 ],2404 ],
2429- version = "1.8.7",2405+ version = "1.8.5",
2430 )2406 )
2431 2407
2432 http_archive(2408 http_archive(
@@ -2698,33 +2674,33 @@ cargo.rust_library(
2698 )2674 )
2699 2675
2700 http_archive(2676 http_archive(
2701- name = "bytemuck_derive-1.12.0.crate",2677+ name = "bytemuck_derive-1.11.0.crate",
2702- sha256 = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f",2678+ sha256 = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5",
2703- strip_prefix = "bytemuck_derive-1.12.0",2679+ strip_prefix = "bytemuck_derive-1.11.0",
2704- urls = ["https://static.crates.io/crates/bytemuck_derive/1.12.0/download"],2680+ urls = ["https://static.crates.io/crates/bytemuck_derive/1.11.0/download"],
2705 visibility = [],2681 visibility = [],
2706 )2682 )
2707 2683
2708 cargo.rust_library(2684 cargo.rust_library(
2709 name = "bytemuck_derive-1",2685 name = "bytemuck_derive-1",
2710- srcs = [":bytemuck_derive-1.12.0.crate"],2686+ srcs = [":bytemuck_derive-1.11.0.crate"],
2711 crate = "bytemuck_derive",2687 crate = "bytemuck_derive",
2712- crate_root = "bytemuck_derive-1.12.0.crate/src/lib.rs",2688+ crate_root = "bytemuck_derive-1.11.0.crate/src/lib.rs",
2713 edition = "2018",2689 edition = "2018",
2714 env = {2690 env = {
2715 "CARGO_BIN_NAME": "bytemuck_derive",2691 "CARGO_BIN_NAME": "bytemuck_derive",
2716 "CARGO_CRATE_NAME": "bytemuck_derive",2692 "CARGO_CRATE_NAME": "bytemuck_derive",
2717- "CARGO_MANIFEST_DIR": "bytemuck_derive-1.12.0.crate",2693+ "CARGO_MANIFEST_DIR": "bytemuck_derive-1.11.0.crate",
2718 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",2694 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",
2719 "CARGO_PKG_DESCRIPTION": "derive proc-macros for `bytemuck`",2695 "CARGO_PKG_DESCRIPTION": "derive proc-macros for `bytemuck`",
2720 "CARGO_PKG_HOMEPAGE": "",2696 "CARGO_PKG_HOMEPAGE": "",
2721 "CARGO_PKG_NAME": "bytemuck_derive",2697 "CARGO_PKG_NAME": "bytemuck_derive",
2722 "CARGO_PKG_README": "README.md",2698 "CARGO_PKG_README": "README.md",
2723 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/bytemuck",2699 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/bytemuck",
2724- "CARGO_PKG_RUST_VERSION": "1.71",2700+ "CARGO_PKG_RUST_VERSION": "1.68",
2725- "CARGO_PKG_VERSION": "1.12.0",2701+ "CARGO_PKG_VERSION": "1.11.0",
2726 "CARGO_PKG_VERSION_MAJOR": "1",2702 "CARGO_PKG_VERSION_MAJOR": "1",
2727- "CARGO_PKG_VERSION_MINOR": "12",2703+ "CARGO_PKG_VERSION_MINOR": "11",
2728 "CARGO_PKG_VERSION_PATCH": "0",2704 "CARGO_PKG_VERSION_PATCH": "0",
2729 "CARGO_PKG_VERSION_PRE": "",2705 "CARGO_PKG_VERSION_PRE": "",
2730 },2706 },
@@ -2733,7 +2709,7 @@ cargo.rust_library(
2733 deps = [2709 deps = [
2734 ":proc-macro2-1",2710 ":proc-macro2-1",
2735 ":quote-1",2711 ":quote-1",
2736- ":syn-3",2712+ ":syn-2",
2737 ],2713 ],
2738 )2714 )
2739 2715
@@ -3023,34 +2999,34 @@ alias(
3023 )2999 )
3024 3000
3025 http_archive(3001 http_archive(
3026- name = "cc-1.4.4.crate",3002+ name = "cc-1.4.0.crate",
3027- sha256 = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273",3003+ sha256 = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9",
3028- strip_prefix = "cc-1.4.4",3004+ strip_prefix = "cc-1.4.0",
3029- urls = ["https://static.crates.io/crates/cc/1.4.4/download"],3005+ urls = ["https://static.crates.io/crates/cc/1.4.0/download"],
3030 visibility = [],3006 visibility = [],
3031 )3007 )
3032 3008
3033 cargo.rust_library(3009 cargo.rust_library(
3034 name = "cc-1",3010 name = "cc-1",
3035- srcs = [":cc-1.4.4.crate"],3011+ srcs = [":cc-1.4.0.crate"],
3036 crate = "cc",3012 crate = "cc",
3037- crate_root = "cc-1.4.4.crate/src/lib.rs",3013+ crate_root = "cc-1.4.0.crate/src/lib.rs",
3038- edition = "2021",3014+ edition = "2018",
3039 env = {3015 env = {
3040 "CARGO_BIN_NAME": "cc",3016 "CARGO_BIN_NAME": "cc",
3041 "CARGO_CRATE_NAME": "cc",3017 "CARGO_CRATE_NAME": "cc",
3042- "CARGO_MANIFEST_DIR": "cc-1.4.4.crate",3018+ "CARGO_MANIFEST_DIR": "cc-1.4.0.crate",
3043- "CARGO_PKG_AUTHORS": "",3019+ "CARGO_PKG_AUTHORS": "Alex Crichton <alex@alexcrichton.com>",
3044 "CARGO_PKG_DESCRIPTION": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n",3020 "CARGO_PKG_DESCRIPTION": "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n",
3045 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/cc-rs",3021 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/cc-rs",
3046 "CARGO_PKG_NAME": "cc",3022 "CARGO_PKG_NAME": "cc",
3047 "CARGO_PKG_README": "README.md",3023 "CARGO_PKG_README": "README.md",
3048 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/cc-rs",3024 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/cc-rs",
3049- "CARGO_PKG_RUST_VERSION": "1.65.0",3025+ "CARGO_PKG_RUST_VERSION": "1.63",
3050- "CARGO_PKG_VERSION": "1.4.4",3026+ "CARGO_PKG_VERSION": "1.4.0",
3051 "CARGO_PKG_VERSION_MAJOR": "1",3027 "CARGO_PKG_VERSION_MAJOR": "1",
3052 "CARGO_PKG_VERSION_MINOR": "4",3028 "CARGO_PKG_VERSION_MINOR": "4",
3053- "CARGO_PKG_VERSION_PATCH": "4",3029+ "CARGO_PKG_VERSION_PATCH": "0",
3054 "CARGO_PKG_VERSION_PRE": "",3030 "CARGO_PKG_VERSION_PRE": "",
3055 },3031 },
3056 features = ["parallel"],3032 features = ["parallel"],
@@ -3236,23 +3212,23 @@ cargo.rust_library(
3236 )3212 )
3237 3213
3238 http_archive(3214 http_archive(
3239- name = "chacha20-0.10.2.crate",3215+ name = "chacha20-0.10.1.crate",
3240- sha256 = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06",3216+ sha256 = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81",
3241- strip_prefix = "chacha20-0.10.2",3217+ strip_prefix = "chacha20-0.10.1",
3242- urls = ["https://static.crates.io/crates/chacha20/0.10.2/download"],3218+ urls = ["https://static.crates.io/crates/chacha20/0.10.1/download"],
3243 visibility = [],3219 visibility = [],
3244 )3220 )
3245 3221
3246 cargo.rust_library(3222 cargo.rust_library(
3247 name = "chacha20-0.10",3223 name = "chacha20-0.10",
3248- srcs = [":chacha20-0.10.2.crate"],3224+ srcs = [":chacha20-0.10.1.crate"],
3249 crate = "chacha20",3225 crate = "chacha20",
3250- crate_root = "chacha20-0.10.2.crate/src/lib.rs",3226+ crate_root = "chacha20-0.10.1.crate/src/lib.rs",
3251 edition = "2024",3227 edition = "2024",
3252 env = {3228 env = {
3253 "CARGO_BIN_NAME": "chacha20",3229 "CARGO_BIN_NAME": "chacha20",
3254 "CARGO_CRATE_NAME": "chacha20",3230 "CARGO_CRATE_NAME": "chacha20",
3255- "CARGO_MANIFEST_DIR": "chacha20-0.10.2.crate",3231+ "CARGO_MANIFEST_DIR": "chacha20-0.10.1.crate",
3256 "CARGO_PKG_AUTHORS": "RustCrypto Developers",3232 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
3257 "CARGO_PKG_DESCRIPTION": "The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits\nfrom the RustCrypto `cipher` crate, with optional architecture-specific\nhardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12,\nXChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional\nrand_core-compatible RNGs based on those ciphers.\n",3233 "CARGO_PKG_DESCRIPTION": "The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits\nfrom the RustCrypto `cipher` crate, with optional architecture-specific\nhardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12,\nXChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional\nrand_core-compatible RNGs based on those ciphers.\n",
3258 "CARGO_PKG_HOMEPAGE": "",3234 "CARGO_PKG_HOMEPAGE": "",
@@ -3260,10 +3236,10 @@ cargo.rust_library(
3260 "CARGO_PKG_README": "README.md",3236 "CARGO_PKG_README": "README.md",
3261 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/stream-ciphers",3237 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/stream-ciphers",
3262 "CARGO_PKG_RUST_VERSION": "1.85",3238 "CARGO_PKG_RUST_VERSION": "1.85",
3263- "CARGO_PKG_VERSION": "0.10.2",3239+ "CARGO_PKG_VERSION": "0.10.1",
3264 "CARGO_PKG_VERSION_MAJOR": "0",3240 "CARGO_PKG_VERSION_MAJOR": "0",
3265 "CARGO_PKG_VERSION_MINOR": "10",3241 "CARGO_PKG_VERSION_MINOR": "10",
3266- "CARGO_PKG_VERSION_PATCH": "2",3242+ "CARGO_PKG_VERSION_PATCH": "1",
3267 "CARGO_PKG_VERSION_PRE": "",3243 "CARGO_PKG_VERSION_PRE": "",
3268 },3244 },
3269 features = ["rng"],3245 features = ["rng"],
@@ -3438,6 +3414,7 @@ buildscript_run(
3438 "CARGO_PKG_VERSION_MINOR": "9",3414 "CARGO_PKG_VERSION_MINOR": "9",
3439 "CARGO_PKG_VERSION_PATCH": "1",3415 "CARGO_PKG_VERSION_PATCH": "1",
3440 "CARGO_PKG_VERSION_PRE": "",3416 "CARGO_PKG_VERSION_PRE": "",
3417+ "OPT_LEVEL": "2",
3441 },3418 },
3442 features = [3419 features = [
3443 "clang_10_0",3420 "clang_10_0",
@@ -4326,23 +4303,23 @@ cargo.rust_library(
4326 )4303 )
4327 4304
4328 http_archive(4305 http_archive(
4329- name = "cpufeatures-0.3.1.crate",4306+ name = "cpufeatures-0.3.0.crate",
4330- sha256 = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566",4307+ sha256 = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201",
4331- strip_prefix = "cpufeatures-0.3.1",4308+ strip_prefix = "cpufeatures-0.3.0",
4332- urls = ["https://static.crates.io/crates/cpufeatures/0.3.1/download"],4309+ urls = ["https://static.crates.io/crates/cpufeatures/0.3.0/download"],
4333 visibility = [],4310 visibility = [],
4334 )4311 )
4335 4312
4336 cargo.rust_library(4313 cargo.rust_library(
4337 name = "cpufeatures-0.3",4314 name = "cpufeatures-0.3",
4338- srcs = [":cpufeatures-0.3.1.crate"],4315+ srcs = [":cpufeatures-0.3.0.crate"],
4339 crate = "cpufeatures",4316 crate = "cpufeatures",
4340- crate_root = "cpufeatures-0.3.1.crate/src/lib.rs",4317+ crate_root = "cpufeatures-0.3.0.crate/src/lib.rs",
4341 edition = "2024",4318 edition = "2024",
4342 env = {4319 env = {
4343 "CARGO_BIN_NAME": "cpufeatures",4320 "CARGO_BIN_NAME": "cpufeatures",
4344 "CARGO_CRATE_NAME": "cpufeatures",4321 "CARGO_CRATE_NAME": "cpufeatures",
4345- "CARGO_MANIFEST_DIR": "cpufeatures-0.3.1.crate",4322+ "CARGO_MANIFEST_DIR": "cpufeatures-0.3.0.crate",
4346 "CARGO_PKG_AUTHORS": "RustCrypto Developers",4323 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
4347 "CARGO_PKG_DESCRIPTION": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,\nwith no_std support and support for mobile targets including Android and iOS\n",4324 "CARGO_PKG_DESCRIPTION": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,\nwith no_std support and support for mobile targets including Android and iOS\n",
4348 "CARGO_PKG_HOMEPAGE": "",4325 "CARGO_PKG_HOMEPAGE": "",
@@ -4350,10 +4327,10 @@ cargo.rust_library(
4350 "CARGO_PKG_README": "README.md",4327 "CARGO_PKG_README": "README.md",
4351 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/utils",4328 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/utils",
4352 "CARGO_PKG_RUST_VERSION": "1.85",4329 "CARGO_PKG_RUST_VERSION": "1.85",
4353- "CARGO_PKG_VERSION": "0.3.1",4330+ "CARGO_PKG_VERSION": "0.3.0",
4354 "CARGO_PKG_VERSION_MAJOR": "0",4331 "CARGO_PKG_VERSION_MAJOR": "0",
4355 "CARGO_PKG_VERSION_MINOR": "3",4332 "CARGO_PKG_VERSION_MINOR": "3",
4356- "CARGO_PKG_VERSION_PATCH": "1",4333+ "CARGO_PKG_VERSION_PATCH": "0",
4357 "CARGO_PKG_VERSION_PRE": "",4334 "CARGO_PKG_VERSION_PRE": "",
4358 },4335 },
4359 platform = {4336 platform = {
@@ -4453,6 +4430,7 @@ buildscript_run(
4453 "CARGO_PKG_VERSION_MINOR": "5",4430 "CARGO_PKG_VERSION_MINOR": "5",
4454 "CARGO_PKG_VERSION_PATCH": "1",4431 "CARGO_PKG_VERSION_PATCH": "1",
4455 "CARGO_PKG_VERSION_PRE": "",4432 "CARGO_PKG_VERSION_PRE": "",
4433+ "OPT_LEVEL": "2",
4456 },4434 },
4457 features = [4435 features = [
4458 "default",4436 "default",
@@ -4623,6 +4601,7 @@ buildscript_run(
4623 "CARGO_PKG_VERSION_MINOR": "8",4601 "CARGO_PKG_VERSION_MINOR": "8",
4624 "CARGO_PKG_VERSION_PATCH": "7",4602 "CARGO_PKG_VERSION_PATCH": "7",
4625 "CARGO_PKG_VERSION_PRE": "",4603 "CARGO_PKG_VERSION_PRE": "",
4604+ "OPT_LEVEL": "2",
4626 },4605 },
4627 features = [4606 features = [
4628 "default",4607 "default",
@@ -4719,6 +4698,7 @@ buildscript_run(
4719 "CARGO_PKG_VERSION_MINOR": "9",4698 "CARGO_PKG_VERSION_MINOR": "9",
4720 "CARGO_PKG_VERSION_PATCH": "20",4699 "CARGO_PKG_VERSION_PATCH": "20",
4721 "CARGO_PKG_VERSION_PRE": "",4700 "CARGO_PKG_VERSION_PRE": "",
4701+ "OPT_LEVEL": "2",
4722 },4702 },
4723 features = [4703 features = [
4724 "alloc",4704 "alloc",
@@ -4813,6 +4793,7 @@ buildscript_run(
4813 "CARGO_PKG_VERSION_MINOR": "8",4793 "CARGO_PKG_VERSION_MINOR": "8",
4814 "CARGO_PKG_VERSION_PATCH": "22",4794 "CARGO_PKG_VERSION_PATCH": "22",
4815 "CARGO_PKG_VERSION_PRE": "",4795 "CARGO_PKG_VERSION_PRE": "",
4796+ "OPT_LEVEL": "2",
4816 },4797 },
4817 features = [4798 features = [
4818 "default",4799 "default",
@@ -4822,23 +4803,23 @@ buildscript_run(
4822 )4803 )
4823 4804
4824 http_archive(4805 http_archive(
4825- name = "crypto-common-0.1.7.crate",4806+ name = "crypto-common-0.1.6.crate",
4826- sha256 = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a",4807+ sha256 = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3",
4827- strip_prefix = "crypto-common-0.1.7",4808+ strip_prefix = "crypto-common-0.1.6",
4828- urls = ["https://static.crates.io/crates/crypto-common/0.1.7/download"],4809+ urls = ["https://static.crates.io/crates/crypto-common/0.1.6/download"],
4829 visibility = [],4810 visibility = [],
4830 )4811 )
4831 4812
4832 cargo.rust_library(4813 cargo.rust_library(
4833 name = "crypto-common-0.1",4814 name = "crypto-common-0.1",
4834- srcs = [":crypto-common-0.1.7.crate"],4815+ srcs = [":crypto-common-0.1.6.crate"],
4835 crate = "crypto_common",4816 crate = "crypto_common",
4836- crate_root = "crypto-common-0.1.7.crate/src/lib.rs",4817+ crate_root = "crypto-common-0.1.6.crate/src/lib.rs",
4837 edition = "2018",4818 edition = "2018",
4838 env = {4819 env = {
4839 "CARGO_BIN_NAME": "crypto_common",4820 "CARGO_BIN_NAME": "crypto_common",
4840 "CARGO_CRATE_NAME": "crypto_common",4821 "CARGO_CRATE_NAME": "crypto_common",
4841- "CARGO_MANIFEST_DIR": "crypto-common-0.1.7.crate",4822+ "CARGO_MANIFEST_DIR": "crypto-common-0.1.6.crate",
4842 "CARGO_PKG_AUTHORS": "RustCrypto Developers",4823 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
4843 "CARGO_PKG_DESCRIPTION": "Common cryptographic traits",4824 "CARGO_PKG_DESCRIPTION": "Common cryptographic traits",
4844 "CARGO_PKG_HOMEPAGE": "",4825 "CARGO_PKG_HOMEPAGE": "",
@@ -4846,10 +4827,10 @@ cargo.rust_library(
4846 "CARGO_PKG_README": "README.md",4827 "CARGO_PKG_README": "README.md",
4847 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits",4828 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits",
4848 "CARGO_PKG_RUST_VERSION": "",4829 "CARGO_PKG_RUST_VERSION": "",
4849- "CARGO_PKG_VERSION": "0.1.7",4830+ "CARGO_PKG_VERSION": "0.1.6",
4850 "CARGO_PKG_VERSION_MAJOR": "0",4831 "CARGO_PKG_VERSION_MAJOR": "0",
4851 "CARGO_PKG_VERSION_MINOR": "1",4832 "CARGO_PKG_VERSION_MINOR": "1",
4852- "CARGO_PKG_VERSION_PATCH": "7",4833+ "CARGO_PKG_VERSION_PATCH": "6",
4853 "CARGO_PKG_VERSION_PRE": "",4834 "CARGO_PKG_VERSION_PRE": "",
4854 },4835 },
4855 features = ["std"],4836 features = ["std"],
@@ -5122,6 +5103,7 @@ buildscript_run(
5122 "CARGO_PKG_VERSION_MINOR": "0",5103 "CARGO_PKG_VERSION_MINOR": "0",
5123 "CARGO_PKG_VERSION_PATCH": "0",5104 "CARGO_PKG_VERSION_PATCH": "0",
5124 "CARGO_PKG_VERSION_PRE": "pre.1",5105 "CARGO_PKG_VERSION_PRE": "pre.1",
5106+ "OPT_LEVEL": "2",
5125 },5107 },
5126 features = [5108 features = [
5127 "alloc",5109 "alloc",
@@ -5475,34 +5457,34 @@ cargo.rust_library(
5475 )5457 )
5476 5458
5477 http_archive(5459 http_archive(
5478- name = "data-encoding-2.11.1.crate",5460+ name = "data-encoding-2.11.0.crate",
5479- sha256 = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06",5461+ sha256 = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8",
5480- strip_prefix = "data-encoding-2.11.1",5462+ strip_prefix = "data-encoding-2.11.0",
5481- urls = ["https://static.crates.io/crates/data-encoding/2.11.1/download"],5463+ urls = ["https://static.crates.io/crates/data-encoding/2.11.0/download"],
5482 visibility = [],5464 visibility = [],
5483 )5465 )
5484 5466
5485 cargo.rust_library(5467 cargo.rust_library(
5486 name = "data-encoding-2",5468 name = "data-encoding-2",
5487- srcs = [":data-encoding-2.11.1.crate"],5469+ srcs = [":data-encoding-2.11.0.crate"],
5488 crate = "data_encoding",5470 crate = "data_encoding",
5489- crate_root = "data-encoding-2.11.1.crate/src/lib.rs",5471+ crate_root = "data-encoding-2.11.0.crate/src/lib.rs",
5490 edition = "2018",5472 edition = "2018",
5491 env = {5473 env = {
5492 "CARGO_BIN_NAME": "data_encoding",5474 "CARGO_BIN_NAME": "data_encoding",
5493 "CARGO_CRATE_NAME": "data_encoding",5475 "CARGO_CRATE_NAME": "data_encoding",
5494- "CARGO_MANIFEST_DIR": "data-encoding-2.11.1.crate",5476+ "CARGO_MANIFEST_DIR": "data-encoding-2.11.0.crate",
5495- "CARGO_PKG_AUTHORS": "",5477+ "CARGO_PKG_AUTHORS": "Julien Cretin <git@ia0.eu>",
5496 "CARGO_PKG_DESCRIPTION": "Efficient and customizable data-encoding functions like base64, base32, and hex",5478 "CARGO_PKG_DESCRIPTION": "Efficient and customizable data-encoding functions like base64, base32, and hex",
5497 "CARGO_PKG_HOMEPAGE": "",5479 "CARGO_PKG_HOMEPAGE": "",
5498 "CARGO_PKG_NAME": "data-encoding",5480 "CARGO_PKG_NAME": "data-encoding",
5499 "CARGO_PKG_README": "README.md",5481 "CARGO_PKG_README": "README.md",
5500 "CARGO_PKG_REPOSITORY": "https://github.com/ia0/data-encoding",5482 "CARGO_PKG_REPOSITORY": "https://github.com/ia0/data-encoding",
5501 "CARGO_PKG_RUST_VERSION": "1.48",5483 "CARGO_PKG_RUST_VERSION": "1.48",
5502- "CARGO_PKG_VERSION": "2.11.1",5484+ "CARGO_PKG_VERSION": "2.11.0",
5503 "CARGO_PKG_VERSION_MAJOR": "2",5485 "CARGO_PKG_VERSION_MAJOR": "2",
5504 "CARGO_PKG_VERSION_MINOR": "11",5486 "CARGO_PKG_VERSION_MINOR": "11",
5505- "CARGO_PKG_VERSION_PATCH": "1",5487+ "CARGO_PKG_VERSION_PATCH": "0",
5506 "CARGO_PKG_VERSION_PRE": "",5488 "CARGO_PKG_VERSION_PRE": "",
5507 },5489 },
5508 features = [5490 features = [
@@ -6301,23 +6283,23 @@ cargo.rust_library(
6301 )6283 )
6302 6284
6303 http_archive(6285 http_archive(
6304- name = "ed25519-3.0.0.crate",6286+ name = "ed25519-3.0.0-rc.4.crate",
6305- sha256 = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a",6287+ sha256 = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890",
6306- strip_prefix = "ed25519-3.0.0",6288+ strip_prefix = "ed25519-3.0.0-rc.4",
6307- urls = ["https://static.crates.io/crates/ed25519/3.0.0/download"],6289+ urls = ["https://static.crates.io/crates/ed25519/3.0.0-rc.4/download"],
6308 visibility = [],6290 visibility = [],
6309 )6291 )
6310 6292
6311 cargo.rust_library(6293 cargo.rust_library(
6312 name = "ed25519-3",6294 name = "ed25519-3",
6313- srcs = [":ed25519-3.0.0.crate"],6295+ srcs = [":ed25519-3.0.0-rc.4.crate"],
6314 crate = "ed25519",6296 crate = "ed25519",
6315- crate_root = "ed25519-3.0.0.crate/src/lib.rs",6297+ crate_root = "ed25519-3.0.0-rc.4.crate/src/lib.rs",
6316 edition = "2024",6298 edition = "2024",
6317 env = {6299 env = {
6318 "CARGO_BIN_NAME": "ed25519",6300 "CARGO_BIN_NAME": "ed25519",
6319 "CARGO_CRATE_NAME": "ed25519",6301 "CARGO_CRATE_NAME": "ed25519",
6320- "CARGO_MANIFEST_DIR": "ed25519-3.0.0.crate",6302+ "CARGO_MANIFEST_DIR": "ed25519-3.0.0-rc.4.crate",
6321 "CARGO_PKG_AUTHORS": "RustCrypto Developers",6303 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
6322 "CARGO_PKG_DESCRIPTION": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n",6304 "CARGO_PKG_DESCRIPTION": "Edwards Digital Signature Algorithm (EdDSA) over Curve25519 (as specified in RFC 8032)\nsupport library providing signature type definitions and PKCS#8 private key\ndecoding/encoding support\n",
6323 "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/signatures/tree/master/ed25519",6305 "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/signatures/tree/master/ed25519",
@@ -6325,11 +6307,11 @@ cargo.rust_library(
6325 "CARGO_PKG_README": "README.md",6307 "CARGO_PKG_README": "README.md",
6326 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/signatures",6308 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/signatures",
6327 "CARGO_PKG_RUST_VERSION": "1.85",6309 "CARGO_PKG_RUST_VERSION": "1.85",
6328- "CARGO_PKG_VERSION": "3.0.0",6310+ "CARGO_PKG_VERSION": "3.0.0-rc.4",
6329 "CARGO_PKG_VERSION_MAJOR": "3",6311 "CARGO_PKG_VERSION_MAJOR": "3",
6330 "CARGO_PKG_VERSION_MINOR": "0",6312 "CARGO_PKG_VERSION_MINOR": "0",
6331 "CARGO_PKG_VERSION_PATCH": "0",6313 "CARGO_PKG_VERSION_PATCH": "0",
6332- "CARGO_PKG_VERSION_PRE": "",6314+ "CARGO_PKG_VERSION_PRE": "rc.4",
6333 },6315 },
6334 features = [6316 features = [
6335 "alloc",6317 "alloc",
@@ -6340,7 +6322,7 @@ cargo.rust_library(
6340 visibility = [],6322 visibility = [],
6341 deps = [6323 deps = [
6342 ":pkcs8-0.11",6324 ":pkcs8-0.11",
6343- ":serdect-0.4",6325+ ":serde-1",
6344 ":signature-3",6326 ":signature-3",
6345 ],6327 ],
6346 )6328 )
@@ -6577,33 +6559,33 @@ cargo.rust_library(
6577 )6559 )
6578 6560
6579 http_archive(6561 http_archive(
6580- name = "either-1.18.0.crate",6562+ name = "either-1.17.0.crate",
6581- sha256 = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34",6563+ sha256 = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d",
6582- strip_prefix = "either-1.18.0",6564+ strip_prefix = "either-1.17.0",
6583- urls = ["https://static.crates.io/crates/either/1.18.0/download"],6565+ urls = ["https://static.crates.io/crates/either/1.17.0/download"],
6584 visibility = [],6566 visibility = [],
6585 )6567 )
6586 6568
6587 cargo.rust_library(6569 cargo.rust_library(
6588 name = "either-1",6570 name = "either-1",
6589- srcs = [":either-1.18.0.crate"],6571+ srcs = [":either-1.17.0.crate"],
6590 crate = "either",6572 crate = "either",
6591- crate_root = "either-1.18.0.crate/src/lib.rs",6573+ crate_root = "either-1.17.0.crate/src/lib.rs",
6592 edition = "2021",6574 edition = "2021",
6593 env = {6575 env = {
6594 "CARGO_BIN_NAME": "either",6576 "CARGO_BIN_NAME": "either",
6595 "CARGO_CRATE_NAME": "either",6577 "CARGO_CRATE_NAME": "either",
6596- "CARGO_MANIFEST_DIR": "either-1.18.0.crate",6578+ "CARGO_MANIFEST_DIR": "either-1.17.0.crate",
6597 "CARGO_PKG_AUTHORS": "",6579 "CARGO_PKG_AUTHORS": "",
6598 "CARGO_PKG_DESCRIPTION": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n",6580 "CARGO_PKG_DESCRIPTION": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n",
6599 "CARGO_PKG_HOMEPAGE": "",6581 "CARGO_PKG_HOMEPAGE": "",
6600 "CARGO_PKG_NAME": "either",6582 "CARGO_PKG_NAME": "either",
6601- "CARGO_PKG_README": "README.md",6583+ "CARGO_PKG_README": "README-crates.io.md",
6602 "CARGO_PKG_REPOSITORY": "https://github.com/rayon-rs/either",6584 "CARGO_PKG_REPOSITORY": "https://github.com/rayon-rs/either",
6603 "CARGO_PKG_RUST_VERSION": "1.63.0",6585 "CARGO_PKG_RUST_VERSION": "1.63.0",
6604- "CARGO_PKG_VERSION": "1.18.0",6586+ "CARGO_PKG_VERSION": "1.17.0",
6605 "CARGO_PKG_VERSION_MAJOR": "1",6587 "CARGO_PKG_VERSION_MAJOR": "1",
6606- "CARGO_PKG_VERSION_MINOR": "18",6588+ "CARGO_PKG_VERSION_MINOR": "17",
6607 "CARGO_PKG_VERSION_PATCH": "0",6589 "CARGO_PKG_VERSION_PATCH": "0",
6608 "CARGO_PKG_VERSION_PRE": "",6590 "CARGO_PKG_VERSION_PRE": "",
6609 },6591 },
@@ -6727,34 +6709,34 @@ cargo.rust_library(
6727 )6709 )
6728 6710
6729 http_archive(6711 http_archive(
6730- name = "enum-assoc-1.4.1.crate",6712+ name = "enum-assoc-1.3.0.crate",
6731- sha256 = "0590c4a94da3372e83493b956755a6e2266830b6e4e3b101afe66e3f39477b91",6713+ sha256 = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7",
6732- strip_prefix = "enum-assoc-1.4.1",6714+ strip_prefix = "enum-assoc-1.3.0",
6733- urls = ["https://static.crates.io/crates/enum-assoc/1.4.1/download"],6715+ urls = ["https://static.crates.io/crates/enum-assoc/1.3.0/download"],
6734 visibility = [],6716 visibility = [],
6735 )6717 )
6736 6718
6737 cargo.rust_library(6719 cargo.rust_library(
6738 name = "enum-assoc-1",6720 name = "enum-assoc-1",
6739- srcs = [":enum-assoc-1.4.1.crate"],6721+ srcs = [":enum-assoc-1.3.0.crate"],
6740 crate = "enum_assoc",6722 crate = "enum_assoc",
6741- crate_root = "enum-assoc-1.4.1.crate/src/lib.rs",6723+ crate_root = "enum-assoc-1.3.0.crate/src/lib.rs",
6742- edition = "2024",6724+ edition = "2021",
6743 env = {6725 env = {
6744 "CARGO_BIN_NAME": "enum_assoc",6726 "CARGO_BIN_NAME": "enum_assoc",
6745 "CARGO_CRATE_NAME": "enum_assoc",6727 "CARGO_CRATE_NAME": "enum_assoc",
6746- "CARGO_MANIFEST_DIR": "enum-assoc-1.4.1.crate",6728+ "CARGO_MANIFEST_DIR": "enum-assoc-1.3.0.crate",
6747 "CARGO_PKG_AUTHORS": "Griffin O'Neill <gsoneill1003@gmail.com>",6729 "CARGO_PKG_AUTHORS": "Griffin O'Neill <gsoneill1003@gmail.com>",
6748- "CARGO_PKG_DESCRIPTION": "Procedural macro to associate constants with enum variants.\r\n",6730+ "CARGO_PKG_DESCRIPTION": "Procedural macro to associate constants with enum variants.\n",
6749 "CARGO_PKG_HOMEPAGE": "https://github.com/Eolu/enum-assoc",6731 "CARGO_PKG_HOMEPAGE": "https://github.com/Eolu/enum-assoc",
6750 "CARGO_PKG_NAME": "enum-assoc",6732 "CARGO_PKG_NAME": "enum-assoc",
6751 "CARGO_PKG_README": "README.md",6733 "CARGO_PKG_README": "README.md",
6752 "CARGO_PKG_REPOSITORY": "https://github.com/Eolu/enum-assoc",6734 "CARGO_PKG_REPOSITORY": "https://github.com/Eolu/enum-assoc",
6753 "CARGO_PKG_RUST_VERSION": "",6735 "CARGO_PKG_RUST_VERSION": "",
6754- "CARGO_PKG_VERSION": "1.4.1",6736+ "CARGO_PKG_VERSION": "1.3.0",
6755 "CARGO_PKG_VERSION_MAJOR": "1",6737 "CARGO_PKG_VERSION_MAJOR": "1",
6756- "CARGO_PKG_VERSION_MINOR": "4",6738+ "CARGO_PKG_VERSION_MINOR": "3",
6757- "CARGO_PKG_VERSION_PATCH": "1",6739+ "CARGO_PKG_VERSION_PATCH": "0",
6758 "CARGO_PKG_VERSION_PRE": "",6740 "CARGO_PKG_VERSION_PRE": "",
6759 },6741 },
6760 proc_macro = True,6742 proc_macro = True,
@@ -6762,7 +6744,7 @@ cargo.rust_library(
6762 deps = [6744 deps = [
6763 ":proc-macro2-1",6745 ":proc-macro2-1",
6764 ":quote-1",6746 ":quote-1",
6765- ":syn-3",6747+ ":syn-2",
6766 ],6748 ],
6767 )6749 )
6768 6750
@@ -7318,34 +7300,34 @@ cargo.rust_library(
7318 )7300 )
7319 7301
7320 http_archive(7302 http_archive(
7321- name = "find-msvc-tools-0.1.11.crate",7303+ name = "find-msvc-tools-0.1.9.crate",
7322- sha256 = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890",7304+ sha256 = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582",
7323- strip_prefix = "find-msvc-tools-0.1.11",7305+ strip_prefix = "find-msvc-tools-0.1.9",
7324- urls = ["https://static.crates.io/crates/find-msvc-tools/0.1.11/download"],7306+ urls = ["https://static.crates.io/crates/find-msvc-tools/0.1.9/download"],
7325 visibility = [],7307 visibility = [],
7326 )7308 )
7327 7309
7328 cargo.rust_library(7310 cargo.rust_library(
7329 name = "find-msvc-tools-0.1",7311 name = "find-msvc-tools-0.1",
7330- srcs = [":find-msvc-tools-0.1.11.crate"],7312+ srcs = [":find-msvc-tools-0.1.9.crate"],
7331 crate = "find_msvc_tools",7313 crate = "find_msvc_tools",
7332- crate_root = "find-msvc-tools-0.1.11.crate/src/lib.rs",7314+ crate_root = "find-msvc-tools-0.1.9.crate/src/lib.rs",
7333- edition = "2021",7315+ edition = "2018",
7334 env = {7316 env = {
7335 "CARGO_BIN_NAME": "find_msvc_tools",7317 "CARGO_BIN_NAME": "find_msvc_tools",
7336 "CARGO_CRATE_NAME": "find_msvc_tools",7318 "CARGO_CRATE_NAME": "find_msvc_tools",
7337- "CARGO_MANIFEST_DIR": "find-msvc-tools-0.1.11.crate",7319+ "CARGO_MANIFEST_DIR": "find-msvc-tools-0.1.9.crate",
7338 "CARGO_PKG_AUTHORS": "",7320 "CARGO_PKG_AUTHORS": "",
7339 "CARGO_PKG_DESCRIPTION": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces",7321 "CARGO_PKG_DESCRIPTION": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces",
7340 "CARGO_PKG_HOMEPAGE": "",7322 "CARGO_PKG_HOMEPAGE": "",
7341 "CARGO_PKG_NAME": "find-msvc-tools",7323 "CARGO_PKG_NAME": "find-msvc-tools",
7342 "CARGO_PKG_README": "README.md",7324 "CARGO_PKG_README": "README.md",
7343 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/cc-rs",7325 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/cc-rs",
7344- "CARGO_PKG_RUST_VERSION": "1.65.0",7326+ "CARGO_PKG_RUST_VERSION": "1.63",
7345- "CARGO_PKG_VERSION": "0.1.11",7327+ "CARGO_PKG_VERSION": "0.1.9",
7346 "CARGO_PKG_VERSION_MAJOR": "0",7328 "CARGO_PKG_VERSION_MAJOR": "0",
7347 "CARGO_PKG_VERSION_MINOR": "1",7329 "CARGO_PKG_VERSION_MINOR": "1",
7348- "CARGO_PKG_VERSION_PATCH": "11",7330+ "CARGO_PKG_VERSION_PATCH": "9",
7349 "CARGO_PKG_VERSION_PRE": "",7331 "CARGO_PKG_VERSION_PRE": "",
7350 },7332 },
7351 visibility = [],7333 visibility = [],
@@ -7780,23 +7762,23 @@ alias(
7780 )7762 )
7781 7763
7782 http_archive(7764 http_archive(
7783- name = "futures-0.3.34.crate",7765+ name = "futures-0.3.33.crate",
7784- sha256 = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3",7766+ sha256 = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218",
7785- strip_prefix = "futures-0.3.34",7767+ strip_prefix = "futures-0.3.33",
7786- urls = ["https://static.crates.io/crates/futures/0.3.34/download"],7768+ urls = ["https://static.crates.io/crates/futures/0.3.33/download"],
7787 visibility = [],7769 visibility = [],
7788 )7770 )
7789 7771
7790 cargo.rust_library(7772 cargo.rust_library(
7791 name = "futures-0.3",7773 name = "futures-0.3",
7792- srcs = [":futures-0.3.34.crate"],7774+ srcs = [":futures-0.3.33.crate"],
7793 crate = "futures",7775 crate = "futures",
7794- crate_root = "futures-0.3.34.crate/src/lib.rs",7776+ crate_root = "futures-0.3.33.crate/src/lib.rs",
7795 edition = "2018",7777 edition = "2018",
7796 env = {7778 env = {
7797 "CARGO_BIN_NAME": "futures",7779 "CARGO_BIN_NAME": "futures",
7798 "CARGO_CRATE_NAME": "futures",7780 "CARGO_CRATE_NAME": "futures",
7799- "CARGO_MANIFEST_DIR": "futures-0.3.34.crate",7781+ "CARGO_MANIFEST_DIR": "futures-0.3.33.crate",
7800 "CARGO_PKG_AUTHORS": "",7782 "CARGO_PKG_AUTHORS": "",
7801 "CARGO_PKG_DESCRIPTION": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n",7783 "CARGO_PKG_DESCRIPTION": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n",
7802 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",7784 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -7804,10 +7786,10 @@ cargo.rust_library(
7804 "CARGO_PKG_README": "README.md",7786 "CARGO_PKG_README": "README.md",
7805 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",7787 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
7806 "CARGO_PKG_RUST_VERSION": "1.71",7788 "CARGO_PKG_RUST_VERSION": "1.71",
7807- "CARGO_PKG_VERSION": "0.3.34",7789+ "CARGO_PKG_VERSION": "0.3.33",
7808 "CARGO_PKG_VERSION_MAJOR": "0",7790 "CARGO_PKG_VERSION_MAJOR": "0",
7809 "CARGO_PKG_VERSION_MINOR": "3",7791 "CARGO_PKG_VERSION_MINOR": "3",
7810- "CARGO_PKG_VERSION_PATCH": "34",7792+ "CARGO_PKG_VERSION_PATCH": "33",
7811 "CARGO_PKG_VERSION_PRE": "",7793 "CARGO_PKG_VERSION_PRE": "",
7812 },7794 },
7813 features = [7795 features = [
@@ -7873,23 +7855,23 @@ cargo.rust_library(
7873 )7855 )
7874 7856
7875 http_archive(7857 http_archive(
7876- name = "futures-channel-0.3.34.crate",7858+ name = "futures-channel-0.3.33.crate",
7877- sha256 = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4",7859+ sha256 = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae",
7878- strip_prefix = "futures-channel-0.3.34",7860+ strip_prefix = "futures-channel-0.3.33",
7879- urls = ["https://static.crates.io/crates/futures-channel/0.3.34/download"],7861+ urls = ["https://static.crates.io/crates/futures-channel/0.3.33/download"],
7880 visibility = [],7862 visibility = [],
7881 )7863 )
7882 7864
7883 cargo.rust_library(7865 cargo.rust_library(
7884 name = "futures-channel-0.3",7866 name = "futures-channel-0.3",
7885- srcs = [":futures-channel-0.3.34.crate"],7867+ srcs = [":futures-channel-0.3.33.crate"],
7886 crate = "futures_channel",7868 crate = "futures_channel",
7887- crate_root = "futures-channel-0.3.34.crate/src/lib.rs",7869+ crate_root = "futures-channel-0.3.33.crate/src/lib.rs",
7888 edition = "2018",7870 edition = "2018",
7889 env = {7871 env = {
7890 "CARGO_BIN_NAME": "futures_channel",7872 "CARGO_BIN_NAME": "futures_channel",
7891 "CARGO_CRATE_NAME": "futures_channel",7873 "CARGO_CRATE_NAME": "futures_channel",
7892- "CARGO_MANIFEST_DIR": "futures-channel-0.3.34.crate",7874+ "CARGO_MANIFEST_DIR": "futures-channel-0.3.33.crate",
7893 "CARGO_PKG_AUTHORS": "",7875 "CARGO_PKG_AUTHORS": "",
7894 "CARGO_PKG_DESCRIPTION": "Channels for asynchronous communication using futures-rs.\n",7876 "CARGO_PKG_DESCRIPTION": "Channels for asynchronous communication using futures-rs.\n",
7895 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",7877 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -7897,10 +7879,10 @@ cargo.rust_library(
7897 "CARGO_PKG_README": "README.md",7879 "CARGO_PKG_README": "README.md",
7898 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",7880 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
7899 "CARGO_PKG_RUST_VERSION": "1.71",7881 "CARGO_PKG_RUST_VERSION": "1.71",
7900- "CARGO_PKG_VERSION": "0.3.34",7882+ "CARGO_PKG_VERSION": "0.3.33",
7901 "CARGO_PKG_VERSION_MAJOR": "0",7883 "CARGO_PKG_VERSION_MAJOR": "0",
7902 "CARGO_PKG_VERSION_MINOR": "3",7884 "CARGO_PKG_VERSION_MINOR": "3",
7903- "CARGO_PKG_VERSION_PATCH": "34",7885+ "CARGO_PKG_VERSION_PATCH": "33",
7904 "CARGO_PKG_VERSION_PRE": "",7886 "CARGO_PKG_VERSION_PRE": "",
7905 },7887 },
7906 features = [7888 features = [
@@ -7964,23 +7946,23 @@ cargo.rust_library(
7964 )7946 )
7965 7947
7966 http_archive(7948 http_archive(
7967- name = "futures-core-0.3.34.crate",7949+ name = "futures-core-0.3.33.crate",
7968- sha256 = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e",7950+ sha256 = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7",
7969- strip_prefix = "futures-core-0.3.34",7951+ strip_prefix = "futures-core-0.3.33",
7970- urls = ["https://static.crates.io/crates/futures-core/0.3.34/download"],7952+ urls = ["https://static.crates.io/crates/futures-core/0.3.33/download"],
7971 visibility = [],7953 visibility = [],
7972 )7954 )
7973 7955
7974 cargo.rust_library(7956 cargo.rust_library(
7975 name = "futures-core-0.3",7957 name = "futures-core-0.3",
7976- srcs = [":futures-core-0.3.34.crate"],7958+ srcs = [":futures-core-0.3.33.crate"],
7977 crate = "futures_core",7959 crate = "futures_core",
7978- crate_root = "futures-core-0.3.34.crate/src/lib.rs",7960+ crate_root = "futures-core-0.3.33.crate/src/lib.rs",
7979 edition = "2018",7961 edition = "2018",
7980 env = {7962 env = {
7981 "CARGO_BIN_NAME": "futures_core",7963 "CARGO_BIN_NAME": "futures_core",
7982 "CARGO_CRATE_NAME": "futures_core",7964 "CARGO_CRATE_NAME": "futures_core",
7983- "CARGO_MANIFEST_DIR": "futures-core-0.3.34.crate",7965+ "CARGO_MANIFEST_DIR": "futures-core-0.3.33.crate",
7984 "CARGO_PKG_AUTHORS": "",7966 "CARGO_PKG_AUTHORS": "",
7985 "CARGO_PKG_DESCRIPTION": "The core traits and types in for the `futures` library.\n",7967 "CARGO_PKG_DESCRIPTION": "The core traits and types in for the `futures` library.\n",
7986 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",7968 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -7988,10 +7970,10 @@ cargo.rust_library(
7988 "CARGO_PKG_README": "README.md",7970 "CARGO_PKG_README": "README.md",
7989 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",7971 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
7990 "CARGO_PKG_RUST_VERSION": "1.36",7972 "CARGO_PKG_RUST_VERSION": "1.36",
7991- "CARGO_PKG_VERSION": "0.3.34",7973+ "CARGO_PKG_VERSION": "0.3.33",
7992 "CARGO_PKG_VERSION_MAJOR": "0",7974 "CARGO_PKG_VERSION_MAJOR": "0",
7993 "CARGO_PKG_VERSION_MINOR": "3",7975 "CARGO_PKG_VERSION_MINOR": "3",
7994- "CARGO_PKG_VERSION_PATCH": "34",7976+ "CARGO_PKG_VERSION_PATCH": "33",
7995 "CARGO_PKG_VERSION_PRE": "",7977 "CARGO_PKG_VERSION_PRE": "",
7996 },7978 },
7997 features = [7979 features = [
@@ -8003,23 +7985,23 @@ cargo.rust_library(
8003 )7985 )
8004 7986
8005 http_archive(7987 http_archive(
8006- name = "futures-executor-0.3.34.crate",7988+ name = "futures-executor-0.3.33.crate",
8007- sha256 = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432",7989+ sha256 = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458",
8008- strip_prefix = "futures-executor-0.3.34",7990+ strip_prefix = "futures-executor-0.3.33",
8009- urls = ["https://static.crates.io/crates/futures-executor/0.3.34/download"],7991+ urls = ["https://static.crates.io/crates/futures-executor/0.3.33/download"],
8010 visibility = [],7992 visibility = [],
8011 )7993 )
8012 7994
8013 cargo.rust_library(7995 cargo.rust_library(
8014 name = "futures-executor-0.3",7996 name = "futures-executor-0.3",
8015- srcs = [":futures-executor-0.3.34.crate"],7997+ srcs = [":futures-executor-0.3.33.crate"],
8016 crate = "futures_executor",7998 crate = "futures_executor",
8017- crate_root = "futures-executor-0.3.34.crate/src/lib.rs",7999+ crate_root = "futures-executor-0.3.33.crate/src/lib.rs",
8018 edition = "2018",8000 edition = "2018",
8019 env = {8001 env = {
8020 "CARGO_BIN_NAME": "futures_executor",8002 "CARGO_BIN_NAME": "futures_executor",
8021 "CARGO_CRATE_NAME": "futures_executor",8003 "CARGO_CRATE_NAME": "futures_executor",
8022- "CARGO_MANIFEST_DIR": "futures-executor-0.3.34.crate",8004+ "CARGO_MANIFEST_DIR": "futures-executor-0.3.33.crate",
8023 "CARGO_PKG_AUTHORS": "",8005 "CARGO_PKG_AUTHORS": "",
8024 "CARGO_PKG_DESCRIPTION": "Executors for asynchronous tasks based on the futures-rs library.\n",8006 "CARGO_PKG_DESCRIPTION": "Executors for asynchronous tasks based on the futures-rs library.\n",
8025 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",8007 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8027,10 +8009,10 @@ cargo.rust_library(
8027 "CARGO_PKG_README": "README.md",8009 "CARGO_PKG_README": "README.md",
8028 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",8010 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
8029 "CARGO_PKG_RUST_VERSION": "1.71",8011 "CARGO_PKG_RUST_VERSION": "1.71",
8030- "CARGO_PKG_VERSION": "0.3.34",8012+ "CARGO_PKG_VERSION": "0.3.33",
8031 "CARGO_PKG_VERSION_MAJOR": "0",8013 "CARGO_PKG_VERSION_MAJOR": "0",
8032 "CARGO_PKG_VERSION_MINOR": "3",8014 "CARGO_PKG_VERSION_MINOR": "3",
8033- "CARGO_PKG_VERSION_PATCH": "34",8015+ "CARGO_PKG_VERSION_PATCH": "33",
8034 "CARGO_PKG_VERSION_PRE": "",8016 "CARGO_PKG_VERSION_PRE": "",
8035 },8017 },
8036 features = ["std"],8018 features = ["std"],
@@ -8043,23 +8025,23 @@ cargo.rust_library(
8043 )8025 )
8044 8026
8045 http_archive(8027 http_archive(
8046- name = "futures-io-0.3.34.crate",8028+ name = "futures-io-0.3.33.crate",
8047- sha256 = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed",8029+ sha256 = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a",
8048- strip_prefix = "futures-io-0.3.34",8030+ strip_prefix = "futures-io-0.3.33",
8049- urls = ["https://static.crates.io/crates/futures-io/0.3.34/download"],8031+ urls = ["https://static.crates.io/crates/futures-io/0.3.33/download"],
8050 visibility = [],8032 visibility = [],
8051 )8033 )
8052 8034
8053 cargo.rust_library(8035 cargo.rust_library(
8054 name = "futures-io-0.3",8036 name = "futures-io-0.3",
8055- srcs = [":futures-io-0.3.34.crate"],8037+ srcs = [":futures-io-0.3.33.crate"],
8056 crate = "futures_io",8038 crate = "futures_io",
8057- crate_root = "futures-io-0.3.34.crate/src/lib.rs",8039+ crate_root = "futures-io-0.3.33.crate/src/lib.rs",
8058 edition = "2018",8040 edition = "2018",
8059 env = {8041 env = {
8060 "CARGO_BIN_NAME": "futures_io",8042 "CARGO_BIN_NAME": "futures_io",
8061 "CARGO_CRATE_NAME": "futures_io",8043 "CARGO_CRATE_NAME": "futures_io",
8062- "CARGO_MANIFEST_DIR": "futures-io-0.3.34.crate",8044+ "CARGO_MANIFEST_DIR": "futures-io-0.3.33.crate",
8063 "CARGO_PKG_AUTHORS": "",8045 "CARGO_PKG_AUTHORS": "",
8064 "CARGO_PKG_DESCRIPTION": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n",8046 "CARGO_PKG_DESCRIPTION": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n",
8065 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",8047 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8067,10 +8049,10 @@ cargo.rust_library(
8067 "CARGO_PKG_README": "README.md",8049 "CARGO_PKG_README": "README.md",
8068 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",8050 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
8069 "CARGO_PKG_RUST_VERSION": "1.36",8051 "CARGO_PKG_RUST_VERSION": "1.36",
8070- "CARGO_PKG_VERSION": "0.3.34",8052+ "CARGO_PKG_VERSION": "0.3.33",
8071 "CARGO_PKG_VERSION_MAJOR": "0",8053 "CARGO_PKG_VERSION_MAJOR": "0",
8072 "CARGO_PKG_VERSION_MINOR": "3",8054 "CARGO_PKG_VERSION_MINOR": "3",
8073- "CARGO_PKG_VERSION_PATCH": "34",8055+ "CARGO_PKG_VERSION_PATCH": "33",
8074 "CARGO_PKG_VERSION_PRE": "",8056 "CARGO_PKG_VERSION_PRE": "",
8075 },8057 },
8076 features = [8058 features = [
@@ -8131,23 +8113,23 @@ cargo.rust_library(
8131 )8113 )
8132 8114
8133 http_archive(8115 http_archive(
8134- name = "futures-macro-0.3.34.crate",8116+ name = "futures-macro-0.3.33.crate",
8135- sha256 = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44",8117+ sha256 = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b",
8136- strip_prefix = "futures-macro-0.3.34",8118+ strip_prefix = "futures-macro-0.3.33",
8137- urls = ["https://static.crates.io/crates/futures-macro/0.3.34/download"],8119+ urls = ["https://static.crates.io/crates/futures-macro/0.3.33/download"],
8138 visibility = [],8120 visibility = [],
8139 )8121 )
8140 8122
8141 cargo.rust_library(8123 cargo.rust_library(
8142 name = "futures-macro-0.3",8124 name = "futures-macro-0.3",
8143- srcs = [":futures-macro-0.3.34.crate"],8125+ srcs = [":futures-macro-0.3.33.crate"],
8144 crate = "futures_macro",8126 crate = "futures_macro",
8145- crate_root = "futures-macro-0.3.34.crate/src/lib.rs",8127+ crate_root = "futures-macro-0.3.33.crate/src/lib.rs",
8146 edition = "2018",8128 edition = "2018",
8147 env = {8129 env = {
8148 "CARGO_BIN_NAME": "futures_macro",8130 "CARGO_BIN_NAME": "futures_macro",
8149 "CARGO_CRATE_NAME": "futures_macro",8131 "CARGO_CRATE_NAME": "futures_macro",
8150- "CARGO_MANIFEST_DIR": "futures-macro-0.3.34.crate",8132+ "CARGO_MANIFEST_DIR": "futures-macro-0.3.33.crate",
8151 "CARGO_PKG_AUTHORS": "",8133 "CARGO_PKG_AUTHORS": "",
8152 "CARGO_PKG_DESCRIPTION": "The futures-rs procedural macro implementations.\n",8134 "CARGO_PKG_DESCRIPTION": "The futures-rs procedural macro implementations.\n",
8153 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",8135 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8155,10 +8137,10 @@ cargo.rust_library(
8155 "CARGO_PKG_README": "",8137 "CARGO_PKG_README": "",
8156 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",8138 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
8157 "CARGO_PKG_RUST_VERSION": "1.71",8139 "CARGO_PKG_RUST_VERSION": "1.71",
8158- "CARGO_PKG_VERSION": "0.3.34",8140+ "CARGO_PKG_VERSION": "0.3.33",
8159 "CARGO_PKG_VERSION_MAJOR": "0",8141 "CARGO_PKG_VERSION_MAJOR": "0",
8160 "CARGO_PKG_VERSION_MINOR": "3",8142 "CARGO_PKG_VERSION_MINOR": "3",
8161- "CARGO_PKG_VERSION_PATCH": "34",8143+ "CARGO_PKG_VERSION_PATCH": "33",
8162 "CARGO_PKG_VERSION_PRE": "",8144 "CARGO_PKG_VERSION_PRE": "",
8163 },8145 },
8164 proc_macro = True,8146 proc_macro = True,
@@ -8166,28 +8148,28 @@ cargo.rust_library(
8166 deps = [8148 deps = [
8167 ":proc-macro2-1",8149 ":proc-macro2-1",
8168 ":quote-1",8150 ":quote-1",
8169- ":syn-3",8151+ ":syn-2",
8170 ],8152 ],
8171 )8153 )
8172 8154
8173 http_archive(8155 http_archive(
8174- name = "futures-sink-0.3.34.crate",8156+ name = "futures-sink-0.3.33.crate",
8175- sha256 = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d",8157+ sha256 = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307",
8176- strip_prefix = "futures-sink-0.3.34",8158+ strip_prefix = "futures-sink-0.3.33",
8177- urls = ["https://static.crates.io/crates/futures-sink/0.3.34/download"],8159+ urls = ["https://static.crates.io/crates/futures-sink/0.3.33/download"],
8178 visibility = [],8160 visibility = [],
8179 )8161 )
8180 8162
8181 cargo.rust_library(8163 cargo.rust_library(
8182 name = "futures-sink-0.3",8164 name = "futures-sink-0.3",
8183- srcs = [":futures-sink-0.3.34.crate"],8165+ srcs = [":futures-sink-0.3.33.crate"],
8184 crate = "futures_sink",8166 crate = "futures_sink",
8185- crate_root = "futures-sink-0.3.34.crate/src/lib.rs",8167+ crate_root = "futures-sink-0.3.33.crate/src/lib.rs",
8186 edition = "2018",8168 edition = "2018",
8187 env = {8169 env = {
8188 "CARGO_BIN_NAME": "futures_sink",8170 "CARGO_BIN_NAME": "futures_sink",
8189 "CARGO_CRATE_NAME": "futures_sink",8171 "CARGO_CRATE_NAME": "futures_sink",
8190- "CARGO_MANIFEST_DIR": "futures-sink-0.3.34.crate",8172+ "CARGO_MANIFEST_DIR": "futures-sink-0.3.33.crate",
8191 "CARGO_PKG_AUTHORS": "",8173 "CARGO_PKG_AUTHORS": "",
8192 "CARGO_PKG_DESCRIPTION": "The asynchronous `Sink` trait for the futures-rs library.\n",8174 "CARGO_PKG_DESCRIPTION": "The asynchronous `Sink` trait for the futures-rs library.\n",
8193 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",8175 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8195,10 +8177,10 @@ cargo.rust_library(
8195 "CARGO_PKG_README": "README.md",8177 "CARGO_PKG_README": "README.md",
8196 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",8178 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
8197 "CARGO_PKG_RUST_VERSION": "1.36",8179 "CARGO_PKG_RUST_VERSION": "1.36",
8198- "CARGO_PKG_VERSION": "0.3.34",8180+ "CARGO_PKG_VERSION": "0.3.33",
8199 "CARGO_PKG_VERSION_MAJOR": "0",8181 "CARGO_PKG_VERSION_MAJOR": "0",
8200 "CARGO_PKG_VERSION_MINOR": "3",8182 "CARGO_PKG_VERSION_MINOR": "3",
8201- "CARGO_PKG_VERSION_PATCH": "34",8183+ "CARGO_PKG_VERSION_PATCH": "33",
8202 "CARGO_PKG_VERSION_PRE": "",8184 "CARGO_PKG_VERSION_PRE": "",
8203 },8185 },
8204 features = [8186 features = [
@@ -8210,23 +8192,23 @@ cargo.rust_library(
8210 )8192 )
8211 8193
8212 http_archive(8194 http_archive(
8213- name = "futures-task-0.3.34.crate",8195+ name = "futures-task-0.3.33.crate",
8214- sha256 = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd",8196+ sha256 = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109",
8215- strip_prefix = "futures-task-0.3.34",8197+ strip_prefix = "futures-task-0.3.33",
8216- urls = ["https://static.crates.io/crates/futures-task/0.3.34/download"],8198+ urls = ["https://static.crates.io/crates/futures-task/0.3.33/download"],
8217 visibility = [],8199 visibility = [],
8218 )8200 )
8219 8201
8220 cargo.rust_library(8202 cargo.rust_library(
8221 name = "futures-task-0.3",8203 name = "futures-task-0.3",
8222- srcs = [":futures-task-0.3.34.crate"],8204+ srcs = [":futures-task-0.3.33.crate"],
8223 crate = "futures_task",8205 crate = "futures_task",
8224- crate_root = "futures-task-0.3.34.crate/src/lib.rs",8206+ crate_root = "futures-task-0.3.33.crate/src/lib.rs",
8225 edition = "2018",8207 edition = "2018",
8226 env = {8208 env = {
8227 "CARGO_BIN_NAME": "futures_task",8209 "CARGO_BIN_NAME": "futures_task",
8228 "CARGO_CRATE_NAME": "futures_task",8210 "CARGO_CRATE_NAME": "futures_task",
8229- "CARGO_MANIFEST_DIR": "futures-task-0.3.34.crate",8211+ "CARGO_MANIFEST_DIR": "futures-task-0.3.33.crate",
8230 "CARGO_PKG_AUTHORS": "",8212 "CARGO_PKG_AUTHORS": "",
8231 "CARGO_PKG_DESCRIPTION": "Tools for working with tasks.\n",8213 "CARGO_PKG_DESCRIPTION": "Tools for working with tasks.\n",
8232 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",8214 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8234,10 +8216,10 @@ cargo.rust_library(
8234 "CARGO_PKG_README": "README.md",8216 "CARGO_PKG_README": "README.md",
8235 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",8217 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
8236 "CARGO_PKG_RUST_VERSION": "1.71",8218 "CARGO_PKG_RUST_VERSION": "1.71",
8237- "CARGO_PKG_VERSION": "0.3.34",8219+ "CARGO_PKG_VERSION": "0.3.33",
8238 "CARGO_PKG_VERSION_MAJOR": "0",8220 "CARGO_PKG_VERSION_MAJOR": "0",
8239 "CARGO_PKG_VERSION_MINOR": "3",8221 "CARGO_PKG_VERSION_MINOR": "3",
8240- "CARGO_PKG_VERSION_PATCH": "34",8222+ "CARGO_PKG_VERSION_PATCH": "33",
8241 "CARGO_PKG_VERSION_PRE": "",8223 "CARGO_PKG_VERSION_PRE": "",
8242 },8224 },
8243 features = [8225 features = [
@@ -8248,23 +8230,23 @@ cargo.rust_library(
8248 )8230 )
8249 8231
8250 http_archive(8232 http_archive(
8251- name = "futures-util-0.3.34.crate",8233+ name = "futures-util-0.3.33.crate",
8252- sha256 = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc",8234+ sha256 = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa",
8253- strip_prefix = "futures-util-0.3.34",8235+ strip_prefix = "futures-util-0.3.33",
8254- urls = ["https://static.crates.io/crates/futures-util/0.3.34/download"],8236+ urls = ["https://static.crates.io/crates/futures-util/0.3.33/download"],
8255 visibility = [],8237 visibility = [],
8256 )8238 )
8257 8239
8258 cargo.rust_library(8240 cargo.rust_library(
8259 name = "futures-util-0.3",8241 name = "futures-util-0.3",
8260- srcs = [":futures-util-0.3.34.crate"],8242+ srcs = [":futures-util-0.3.33.crate"],
8261 crate = "futures_util",8243 crate = "futures_util",
8262- crate_root = "futures-util-0.3.34.crate/src/lib.rs",8244+ crate_root = "futures-util-0.3.33.crate/src/lib.rs",
8263 edition = "2018",8245 edition = "2018",
8264 env = {8246 env = {
8265 "CARGO_BIN_NAME": "futures_util",8247 "CARGO_BIN_NAME": "futures_util",
8266 "CARGO_CRATE_NAME": "futures_util",8248 "CARGO_CRATE_NAME": "futures_util",
8267- "CARGO_MANIFEST_DIR": "futures-util-0.3.34.crate",8249+ "CARGO_MANIFEST_DIR": "futures-util-0.3.33.crate",
8268 "CARGO_PKG_AUTHORS": "",8250 "CARGO_PKG_AUTHORS": "",
8269 "CARGO_PKG_DESCRIPTION": "Common utilities and extension traits for the futures-rs library.\n",8251 "CARGO_PKG_DESCRIPTION": "Common utilities and extension traits for the futures-rs library.\n",
8270 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",8252 "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs",
@@ -8272,10 +8254,10 @@ cargo.rust_library(
8272 "CARGO_PKG_README": "README.md",8254 "CARGO_PKG_README": "README.md",
8273 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",8255 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs",
8274 "CARGO_PKG_RUST_VERSION": "1.71",8256 "CARGO_PKG_RUST_VERSION": "1.71",
8275- "CARGO_PKG_VERSION": "0.3.34",8257+ "CARGO_PKG_VERSION": "0.3.33",
8276 "CARGO_PKG_VERSION_MAJOR": "0",8258 "CARGO_PKG_VERSION_MAJOR": "0",
8277 "CARGO_PKG_VERSION_MINOR": "3",8259 "CARGO_PKG_VERSION_MINOR": "3",
8278- "CARGO_PKG_VERSION_PATCH": "34",8260+ "CARGO_PKG_VERSION_PATCH": "33",
8279 "CARGO_PKG_VERSION_PRE": "",8261 "CARGO_PKG_VERSION_PRE": "",
8280 },8262 },
8281 features = [8263 features = [
@@ -8309,23 +8291,23 @@ cargo.rust_library(
8309 )8291 )
8310 8292
8311 http_archive(8293 http_archive(
8312- name = "generic-array-0.14.7.crate",8294+ name = "generic-array-0.14.9.crate",
8313- sha256 = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a",8295+ sha256 = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2",
8314- strip_prefix = "generic-array-0.14.7",8296+ strip_prefix = "generic-array-0.14.9",
8315- urls = ["https://static.crates.io/crates/generic-array/0.14.7/download"],8297+ urls = ["https://static.crates.io/crates/generic-array/0.14.9/download"],
8316 visibility = [],8298 visibility = [],
8317 )8299 )
8318 8300
8319 cargo.rust_library(8301 cargo.rust_library(
8320 name = "generic-array-0.14",8302 name = "generic-array-0.14",
8321- srcs = [":generic-array-0.14.7.crate"],8303+ srcs = [":generic-array-0.14.9.crate"],
8322 crate = "generic_array",8304 crate = "generic_array",
8323- crate_root = "generic-array-0.14.7.crate/src/lib.rs",8305+ crate_root = "generic-array-0.14.9.crate/src/lib.rs",
8324 edition = "2015",8306 edition = "2015",
8325 env = {8307 env = {
8326 "CARGO_BIN_NAME": "generic_array",8308 "CARGO_BIN_NAME": "generic_array",
8327 "CARGO_CRATE_NAME": "generic_array",8309 "CARGO_CRATE_NAME": "generic_array",
8328- "CARGO_MANIFEST_DIR": "generic-array-0.14.7.crate",8310+ "CARGO_MANIFEST_DIR": "generic-array-0.14.9.crate",
8329 "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>",8311 "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>",
8330 "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays",8312 "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays",
8331 "CARGO_PKG_HOMEPAGE": "",8313 "CARGO_PKG_HOMEPAGE": "",
@@ -8333,10 +8315,10 @@ cargo.rust_library(
8333 "CARGO_PKG_README": "README.md",8315 "CARGO_PKG_README": "README.md",
8334 "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git",8316 "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git",
8335 "CARGO_PKG_RUST_VERSION": "",8317 "CARGO_PKG_RUST_VERSION": "",
8336- "CARGO_PKG_VERSION": "0.14.7",8318+ "CARGO_PKG_VERSION": "0.14.9",
8337 "CARGO_PKG_VERSION_MAJOR": "0",8319 "CARGO_PKG_VERSION_MAJOR": "0",
8338 "CARGO_PKG_VERSION_MINOR": "14",8320 "CARGO_PKG_VERSION_MINOR": "14",
8339- "CARGO_PKG_VERSION_PATCH": "7",8321+ "CARGO_PKG_VERSION_PATCH": "9",
8340 "CARGO_PKG_VERSION_PRE": "",8322 "CARGO_PKG_VERSION_PRE": "",
8341 "OUT_DIR": "$(location :generic-array-0.14-build-script-run[out_dir])",8323 "OUT_DIR": "$(location :generic-array-0.14-build-script-run[out_dir])",
8342 },8324 },
@@ -8348,14 +8330,14 @@ cargo.rust_library(
8348 8330
8349 cargo.rust_binary(8331 cargo.rust_binary(
8350 name = "generic-array-0.14-build-script-build",8332 name = "generic-array-0.14-build-script-build",
8351- srcs = [":generic-array-0.14.7.crate"],8333+ srcs = [":generic-array-0.14.9.crate"],
8352 crate = "build_script_build",8334 crate = "build_script_build",
8353- crate_root = "generic-array-0.14.7.crate/build.rs",8335+ crate_root = "generic-array-0.14.9.crate/build.rs",
8354 edition = "2015",8336 edition = "2015",
8355 env = {8337 env = {
8356 "CARGO_BIN_NAME": "build-script-build",8338 "CARGO_BIN_NAME": "build-script-build",
8357 "CARGO_CRATE_NAME": "build_script_build",8339 "CARGO_CRATE_NAME": "build_script_build",
8358- "CARGO_MANIFEST_DIR": "generic-array-0.14.7.crate",8340+ "CARGO_MANIFEST_DIR": "generic-array-0.14.9.crate",
8359 "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>",8341 "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>",
8360 "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays",8342 "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays",
8361 "CARGO_PKG_HOMEPAGE": "",8343 "CARGO_PKG_HOMEPAGE": "",
@@ -8363,10 +8345,10 @@ cargo.rust_binary(
8363 "CARGO_PKG_README": "README.md",8345 "CARGO_PKG_README": "README.md",
8364 "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git",8346 "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git",
8365 "CARGO_PKG_RUST_VERSION": "",8347 "CARGO_PKG_RUST_VERSION": "",
8366- "CARGO_PKG_VERSION": "0.14.7",8348+ "CARGO_PKG_VERSION": "0.14.9",
8367 "CARGO_PKG_VERSION_MAJOR": "0",8349 "CARGO_PKG_VERSION_MAJOR": "0",
8368 "CARGO_PKG_VERSION_MINOR": "14",8350 "CARGO_PKG_VERSION_MINOR": "14",
8369- "CARGO_PKG_VERSION_PATCH": "7",8351+ "CARGO_PKG_VERSION_PATCH": "9",
8370 "CARGO_PKG_VERSION_PRE": "",8352 "CARGO_PKG_VERSION_PRE": "",
8371 },8353 },
8372 features = ["more_lengths"],8354 features = ["more_lengths"],
@@ -8387,11 +8369,12 @@ buildscript_run(
8387 "CARGO_PKG_RUST_VERSION": "",8369 "CARGO_PKG_RUST_VERSION": "",
8388 "CARGO_PKG_VERSION_MAJOR": "0",8370 "CARGO_PKG_VERSION_MAJOR": "0",
8389 "CARGO_PKG_VERSION_MINOR": "14",8371 "CARGO_PKG_VERSION_MINOR": "14",
8390- "CARGO_PKG_VERSION_PATCH": "7",8372+ "CARGO_PKG_VERSION_PATCH": "9",
8391 "CARGO_PKG_VERSION_PRE": "",8373 "CARGO_PKG_VERSION_PRE": "",
8374+ "OPT_LEVEL": "2",
8392 },8375 },
8393 features = ["more_lengths"],8376 features = ["more_lengths"],
8394- version = "0.14.7",8377+ version = "0.14.9",
8395 )8378 )
8396 8379
8397 http_archive(8380 http_archive(
@@ -8551,6 +8534,7 @@ buildscript_run(
8551 "CARGO_PKG_VERSION_MINOR": "3",8534 "CARGO_PKG_VERSION_MINOR": "3",
8552 "CARGO_PKG_VERSION_PATCH": "4",8535 "CARGO_PKG_VERSION_PATCH": "4",
8553 "CARGO_PKG_VERSION_PRE": "",8536 "CARGO_PKG_VERSION_PRE": "",
8537+ "OPT_LEVEL": "2",
8554 },8538 },
8555 features = ["std"],8539 features = ["std"],
8556 version = "0.3.4",8540 version = "0.3.4",
@@ -8646,6 +8630,7 @@ buildscript_run(
8646 "CARGO_PKG_VERSION_MINOR": "4",8630 "CARGO_PKG_VERSION_MINOR": "4",
8647 "CARGO_PKG_VERSION_PATCH": "3",8631 "CARGO_PKG_VERSION_PATCH": "3",
8648 "CARGO_PKG_VERSION_PRE": "",8632 "CARGO_PKG_VERSION_PRE": "",
8633+ "OPT_LEVEL": "2",
8649 },8634 },
8650 features = [8635 features = [
8651 "std",8636 "std",
@@ -9001,6 +8986,7 @@ buildscript_run(
9001 "CARGO_PKG_VERSION_MINOR": "32",8986 "CARGO_PKG_VERSION_MINOR": "32",
9002 "CARGO_PKG_VERSION_PATCH": "3",8987 "CARGO_PKG_VERSION_PATCH": "3",
9003 "CARGO_PKG_VERSION_PRE": "",8988 "CARGO_PKG_VERSION_PRE": "",
8989+ "OPT_LEVEL": "2",
9004 },8990 },
9005 features = [8991 features = [
9006 "default",8992 "default",
@@ -9125,6 +9111,7 @@ buildscript_run(
9125 "CARGO_PKG_VERSION_MINOR": "5",9111 "CARGO_PKG_VERSION_MINOR": "5",
9126 "CARGO_PKG_VERSION_PATCH": "0",9112 "CARGO_PKG_VERSION_PATCH": "0",
9127 "CARGO_PKG_VERSION_PRE": "",9113 "CARGO_PKG_VERSION_PRE": "",
9114+ "OPT_LEVEL": "2",
9128 },9115 },
9129 features = [9116 features = [
9130 "default",9117 "default",
@@ -9215,6 +9202,7 @@ buildscript_run(
9215 "CARGO_PKG_VERSION_MINOR": "7",9202 "CARGO_PKG_VERSION_MINOR": "7",
9216 "CARGO_PKG_VERSION_PATCH": "1",9203 "CARGO_PKG_VERSION_PATCH": "1",
9217 "CARGO_PKG_VERSION_PRE": "",9204 "CARGO_PKG_VERSION_PRE": "",
9205+ "OPT_LEVEL": "2",
9218 },9206 },
9219 version = "0.7.1",9207 version = "0.7.1",
9220 )9208 )
@@ -9298,28 +9286,29 @@ buildscript_run(
9298 "CARGO_PKG_VERSION_MINOR": "6",9286 "CARGO_PKG_VERSION_MINOR": "6",
9299 "CARGO_PKG_VERSION_PATCH": "1",9287 "CARGO_PKG_VERSION_PATCH": "1",
9300 "CARGO_PKG_VERSION_PRE": "",9288 "CARGO_PKG_VERSION_PRE": "",
9289+ "OPT_LEVEL": "2",
9301 },9290 },
9302 version = "0.6.1",9291 version = "0.6.1",
9303 )9292 )
9304 9293
9305 http_archive(9294 http_archive(
9306- name = "h2-0.4.19.crate",9295+ name = "h2-0.4.15.crate",
9307- sha256 = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16",9296+ sha256 = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155",
9308- strip_prefix = "h2-0.4.19",9297+ strip_prefix = "h2-0.4.15",
9309- urls = ["https://static.crates.io/crates/h2/0.4.19/download"],9298+ urls = ["https://static.crates.io/crates/h2/0.4.15/download"],
9310 visibility = [],9299 visibility = [],
9311 )9300 )
9312 9301
9313 cargo.rust_library(9302 cargo.rust_library(
9314 name = "h2-0.4",9303 name = "h2-0.4",
9315- srcs = [":h2-0.4.19.crate"],9304+ srcs = [":h2-0.4.15.crate"],
9316 crate = "h2",9305 crate = "h2",
9317- crate_root = "h2-0.4.19.crate/src/lib.rs",9306+ crate_root = "h2-0.4.15.crate/src/lib.rs",
9318 edition = "2021",9307 edition = "2021",
9319 env = {9308 env = {
9320 "CARGO_BIN_NAME": "h2",9309 "CARGO_BIN_NAME": "h2",
9321 "CARGO_CRATE_NAME": "h2",9310 "CARGO_CRATE_NAME": "h2",
9322- "CARGO_MANIFEST_DIR": "h2-0.4.19.crate",9311+ "CARGO_MANIFEST_DIR": "h2-0.4.15.crate",
9323 "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>",9312 "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>",
9324 "CARGO_PKG_DESCRIPTION": "An HTTP/2 client and server",9313 "CARGO_PKG_DESCRIPTION": "An HTTP/2 client and server",
9325 "CARGO_PKG_HOMEPAGE": "",9314 "CARGO_PKG_HOMEPAGE": "",
@@ -9327,10 +9316,10 @@ cargo.rust_library(
9327 "CARGO_PKG_README": "README.md",9316 "CARGO_PKG_README": "README.md",
9328 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/h2",9317 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/h2",
9329 "CARGO_PKG_RUST_VERSION": "1.63",9318 "CARGO_PKG_RUST_VERSION": "1.63",
9330- "CARGO_PKG_VERSION": "0.4.19",9319+ "CARGO_PKG_VERSION": "0.4.15",
9331 "CARGO_PKG_VERSION_MAJOR": "0",9320 "CARGO_PKG_VERSION_MAJOR": "0",
9332 "CARGO_PKG_VERSION_MINOR": "4",9321 "CARGO_PKG_VERSION_MINOR": "4",
9333- "CARGO_PKG_VERSION_PATCH": "19",9322+ "CARGO_PKG_VERSION_PATCH": "15",
9334 "CARGO_PKG_VERSION_PRE": "",9323 "CARGO_PKG_VERSION_PRE": "",
9335 },9324 },
9336 features = ["stream"],9325 features = ["stream"],
@@ -9653,6 +9642,7 @@ buildscript_run(
9653 "CARGO_PKG_VERSION_MINOR": "7",9642 "CARGO_PKG_VERSION_MINOR": "7",
9654 "CARGO_PKG_VERSION_PATCH": "17",9643 "CARGO_PKG_VERSION_PATCH": "17",
9655 "CARGO_PKG_VERSION_PRE": "",9644 "CARGO_PKG_VERSION_PRE": "",
9645+ "OPT_LEVEL": "2",
9656 },9646 },
9657 features = [9647 features = [
9658 "atomic-polyfill",9648 "atomic-polyfill",
@@ -9940,23 +9930,23 @@ cargo.rust_library(
9940 )9930 )
9941 9931
9942 http_archive(9932 http_archive(
9943- name = "http-body-util-0.1.5.crate",9933+ name = "http-body-util-0.1.4.crate",
9944- sha256 = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c",9934+ sha256 = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2",
9945- strip_prefix = "http-body-util-0.1.5",9935+ strip_prefix = "http-body-util-0.1.4",
9946- urls = ["https://static.crates.io/crates/http-body-util/0.1.5/download"],9936+ urls = ["https://static.crates.io/crates/http-body-util/0.1.4/download"],
9947 visibility = [],9937 visibility = [],
9948 )9938 )
9949 9939
9950 cargo.rust_library(9940 cargo.rust_library(
9951 name = "http-body-util-0.1",9941 name = "http-body-util-0.1",
9952- srcs = [":http-body-util-0.1.5.crate"],9942+ srcs = [":http-body-util-0.1.4.crate"],
9953 crate = "http_body_util",9943 crate = "http_body_util",
9954- crate_root = "http-body-util-0.1.5.crate/src/lib.rs",9944+ crate_root = "http-body-util-0.1.4.crate/src/lib.rs",
9955 edition = "2018",9945 edition = "2018",
9956 env = {9946 env = {
9957 "CARGO_BIN_NAME": "http_body_util",9947 "CARGO_BIN_NAME": "http_body_util",
9958 "CARGO_CRATE_NAME": "http_body_util",9948 "CARGO_CRATE_NAME": "http_body_util",
9959- "CARGO_MANIFEST_DIR": "http-body-util-0.1.5.crate",9949+ "CARGO_MANIFEST_DIR": "http-body-util-0.1.4.crate",
9960 "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Lucio Franco <luciofranco14@gmail.com>:Sean McArthur <sean@seanmonstar.com>",9950 "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Lucio Franco <luciofranco14@gmail.com>:Sean McArthur <sean@seanmonstar.com>",
9961 "CARGO_PKG_DESCRIPTION": "Combinators and adapters for HTTP request or response bodies.\n",9951 "CARGO_PKG_DESCRIPTION": "Combinators and adapters for HTTP request or response bodies.\n",
9962 "CARGO_PKG_HOMEPAGE": "",9952 "CARGO_PKG_HOMEPAGE": "",
@@ -9964,10 +9954,10 @@ cargo.rust_library(
9964 "CARGO_PKG_README": "README.md",9954 "CARGO_PKG_README": "README.md",
9965 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/http-body",9955 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/http-body",
9966 "CARGO_PKG_RUST_VERSION": "1.61",9956 "CARGO_PKG_RUST_VERSION": "1.61",
9967- "CARGO_PKG_VERSION": "0.1.5",9957+ "CARGO_PKG_VERSION": "0.1.4",
9968 "CARGO_PKG_VERSION_MAJOR": "0",9958 "CARGO_PKG_VERSION_MAJOR": "0",
9969 "CARGO_PKG_VERSION_MINOR": "1",9959 "CARGO_PKG_VERSION_MINOR": "1",
9970- "CARGO_PKG_VERSION_PATCH": "5",9960+ "CARGO_PKG_VERSION_PATCH": "4",
9971 "CARGO_PKG_VERSION_PRE": "",9961 "CARGO_PKG_VERSION_PRE": "",
9972 },9962 },
9973 features = ["default"],9963 features = ["default"],
@@ -10066,6 +10056,7 @@ buildscript_run(
10066 "CARGO_PKG_VERSION_MINOR": "10",10056 "CARGO_PKG_VERSION_MINOR": "10",
10067 "CARGO_PKG_VERSION_PATCH": "1",10057 "CARGO_PKG_VERSION_PATCH": "1",
10068 "CARGO_PKG_VERSION_PRE": "",10058 "CARGO_PKG_VERSION_PRE": "",
10059+ "OPT_LEVEL": "2",
10069 },10060 },
10070 features = [10061 features = [
10071 "default",10062 "default",
@@ -10181,23 +10172,23 @@ cargo.rust_library(
10181 )10172 )
10182 10173
10183 http_archive(10174 http_archive(
10184- name = "hybrid-array-0.4.14.crate",10175+ name = "hybrid-array-0.4.13.crate",
10185- sha256 = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b",10176+ sha256 = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c",
10186- strip_prefix = "hybrid-array-0.4.14",10177+ strip_prefix = "hybrid-array-0.4.13",
10187- urls = ["https://static.crates.io/crates/hybrid-array/0.4.14/download"],10178+ urls = ["https://static.crates.io/crates/hybrid-array/0.4.13/download"],
10188 visibility = [],10179 visibility = [],
10189 )10180 )
10190 10181
10191 cargo.rust_library(10182 cargo.rust_library(
10192 name = "hybrid-array-0.4",10183 name = "hybrid-array-0.4",
10193- srcs = [":hybrid-array-0.4.14.crate"],10184+ srcs = [":hybrid-array-0.4.13.crate"],
10194 crate = "hybrid_array",10185 crate = "hybrid_array",
10195- crate_root = "hybrid-array-0.4.14.crate/src/lib.rs",10186+ crate_root = "hybrid-array-0.4.13.crate/src/lib.rs",
10196 edition = "2024",10187 edition = "2024",
10197 env = {10188 env = {
10198 "CARGO_BIN_NAME": "hybrid_array",10189 "CARGO_BIN_NAME": "hybrid_array",
10199 "CARGO_CRATE_NAME": "hybrid_array",10190 "CARGO_CRATE_NAME": "hybrid_array",
10200- "CARGO_MANIFEST_DIR": "hybrid-array-0.4.14.crate",10191+ "CARGO_MANIFEST_DIR": "hybrid-array-0.4.13.crate",
10201 "CARGO_PKG_AUTHORS": "RustCrypto Developers",10192 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
10202 "CARGO_PKG_DESCRIPTION": "Hybrid typenum-based and const generic array types designed to provide the\nflexibility of typenum-based expressions while also allowing interoperability\nand a transition path to const generics\n",10193 "CARGO_PKG_DESCRIPTION": "Hybrid typenum-based and const generic array types designed to provide the\nflexibility of typenum-based expressions while also allowing interoperability\nand a transition path to const generics\n",
10203 "CARGO_PKG_HOMEPAGE": "",10194 "CARGO_PKG_HOMEPAGE": "",
@@ -10205,10 +10196,10 @@ cargo.rust_library(
10205 "CARGO_PKG_README": "README.md",10196 "CARGO_PKG_README": "README.md",
10206 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/hybrid-array",10197 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/hybrid-array",
10207 "CARGO_PKG_RUST_VERSION": "1.85",10198 "CARGO_PKG_RUST_VERSION": "1.85",
10208- "CARGO_PKG_VERSION": "0.4.14",10199+ "CARGO_PKG_VERSION": "0.4.13",
10209 "CARGO_PKG_VERSION_MAJOR": "0",10200 "CARGO_PKG_VERSION_MAJOR": "0",
10210 "CARGO_PKG_VERSION_MINOR": "4",10201 "CARGO_PKG_VERSION_MINOR": "4",
10211- "CARGO_PKG_VERSION_PATCH": "14",10202+ "CARGO_PKG_VERSION_PATCH": "13",
10212 "CARGO_PKG_VERSION_PRE": "",10203 "CARGO_PKG_VERSION_PRE": "",
10213 },10204 },
10214 visibility = [],10205 visibility = [],
@@ -10216,23 +10207,23 @@ cargo.rust_library(
10216 )10207 )
10217 10208
10218 http_archive(10209 http_archive(
10219- name = "hyper-1.11.1.crate",10210+ name = "hyper-1.11.0.crate",
10220- sha256 = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43",10211+ sha256 = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72",
10221- strip_prefix = "hyper-1.11.1",10212+ strip_prefix = "hyper-1.11.0",
10222- urls = ["https://static.crates.io/crates/hyper/1.11.1/download"],10213+ urls = ["https://static.crates.io/crates/hyper/1.11.0/download"],
10223 visibility = [],10214 visibility = [],
10224 )10215 )
10225 10216
10226 cargo.rust_library(10217 cargo.rust_library(
10227 name = "hyper-1",10218 name = "hyper-1",
10228- srcs = [":hyper-1.11.1.crate"],10219+ srcs = [":hyper-1.11.0.crate"],
10229 crate = "hyper",10220 crate = "hyper",
10230- crate_root = "hyper-1.11.1.crate/src/lib.rs",10221+ crate_root = "hyper-1.11.0.crate/src/lib.rs",
10231 edition = "2021",10222 edition = "2021",
10232 env = {10223 env = {
10233 "CARGO_BIN_NAME": "hyper",10224 "CARGO_BIN_NAME": "hyper",
10234 "CARGO_CRATE_NAME": "hyper",10225 "CARGO_CRATE_NAME": "hyper",
10235- "CARGO_MANIFEST_DIR": "hyper-1.11.1.crate",10226+ "CARGO_MANIFEST_DIR": "hyper-1.11.0.crate",
10236 "CARGO_PKG_AUTHORS": "Sean McArthur <sean@seanmonstar.com>",10227 "CARGO_PKG_AUTHORS": "Sean McArthur <sean@seanmonstar.com>",
10237 "CARGO_PKG_DESCRIPTION": "A protective and efficient HTTP library for all.",10228 "CARGO_PKG_DESCRIPTION": "A protective and efficient HTTP library for all.",
10238 "CARGO_PKG_HOMEPAGE": "https://hyper.rs",10229 "CARGO_PKG_HOMEPAGE": "https://hyper.rs",
@@ -10240,10 +10231,10 @@ cargo.rust_library(
10240 "CARGO_PKG_README": "README.md",10231 "CARGO_PKG_README": "README.md",
10241 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/hyper",10232 "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/hyper",
10242 "CARGO_PKG_RUST_VERSION": "1.63",10233 "CARGO_PKG_RUST_VERSION": "1.63",
10243- "CARGO_PKG_VERSION": "1.11.1",10234+ "CARGO_PKG_VERSION": "1.11.0",
10244 "CARGO_PKG_VERSION_MAJOR": "1",10235 "CARGO_PKG_VERSION_MAJOR": "1",
10245 "CARGO_PKG_VERSION_MINOR": "11",10236 "CARGO_PKG_VERSION_MINOR": "11",
10246- "CARGO_PKG_VERSION_PATCH": "1",10237+ "CARGO_PKG_VERSION_PATCH": "0",
10247 "CARGO_PKG_VERSION_PRE": "",10238 "CARGO_PKG_VERSION_PRE": "",
10248 },10239 },
10249 features = [10240 features = [
@@ -10380,33 +10371,33 @@ cargo.rust_library(
10380 )10371 )
10381 10372
10382 http_archive(10373 http_archive(
10383- name = "icu_collections-2.3.0.crate",10374+ name = "icu_collections-2.2.0.crate",
10384- sha256 = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513",10375+ sha256 = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c",
10385- strip_prefix = "icu_collections-2.3.0",10376+ strip_prefix = "icu_collections-2.2.0",
10386- urls = ["https://static.crates.io/crates/icu_collections/2.3.0/download"],10377+ urls = ["https://static.crates.io/crates/icu_collections/2.2.0/download"],
10387 visibility = [],10378 visibility = [],
10388 )10379 )
10389 10380
10390 cargo.rust_library(10381 cargo.rust_library(
10391 name = "icu_collections-2",10382 name = "icu_collections-2",
10392- srcs = [":icu_collections-2.3.0.crate"],10383+ srcs = [":icu_collections-2.2.0.crate"],
10393 crate = "icu_collections",10384 crate = "icu_collections",
10394- crate_root = "icu_collections-2.3.0.crate/src/lib.rs",10385+ crate_root = "icu_collections-2.2.0.crate/src/lib.rs",
10395- edition = "2024",10386+ edition = "2021",
10396 env = {10387 env = {
10397 "CARGO_BIN_NAME": "icu_collections",10388 "CARGO_BIN_NAME": "icu_collections",
10398 "CARGO_CRATE_NAME": "icu_collections",10389 "CARGO_CRATE_NAME": "icu_collections",
10399- "CARGO_MANIFEST_DIR": "icu_collections-2.3.0.crate",10390+ "CARGO_MANIFEST_DIR": "icu_collections-2.2.0.crate",
10400 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10391 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10401 "CARGO_PKG_DESCRIPTION": "Collection of API for use in ICU libraries.",10392 "CARGO_PKG_DESCRIPTION": "Collection of API for use in ICU libraries.",
10402 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10393 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10403 "CARGO_PKG_NAME": "icu_collections",10394 "CARGO_PKG_NAME": "icu_collections",
10404 "CARGO_PKG_README": "README.md",10395 "CARGO_PKG_README": "README.md",
10405 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10396 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10406- "CARGO_PKG_RUST_VERSION": "1.88",10397+ "CARGO_PKG_RUST_VERSION": "1.86",
10407- "CARGO_PKG_VERSION": "2.3.0",10398+ "CARGO_PKG_VERSION": "2.2.0",
10408 "CARGO_PKG_VERSION_MAJOR": "2",10399 "CARGO_PKG_VERSION_MAJOR": "2",
10409- "CARGO_PKG_VERSION_MINOR": "3",10400+ "CARGO_PKG_VERSION_MINOR": "2",
10410 "CARGO_PKG_VERSION_PATCH": "0",10401 "CARGO_PKG_VERSION_PATCH": "0",
10411 "CARGO_PKG_VERSION_PRE": "",10402 "CARGO_PKG_VERSION_PRE": "",
10412 },10403 },
@@ -10422,33 +10413,33 @@ cargo.rust_library(
10422 )10413 )
10423 10414
10424 http_archive(10415 http_archive(
10425- name = "icu_locale_core-2.3.0.crate",10416+ name = "icu_locale_core-2.2.0.crate",
10426- sha256 = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb",10417+ sha256 = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29",
10427- strip_prefix = "icu_locale_core-2.3.0",10418+ strip_prefix = "icu_locale_core-2.2.0",
10428- urls = ["https://static.crates.io/crates/icu_locale_core/2.3.0/download"],10419+ urls = ["https://static.crates.io/crates/icu_locale_core/2.2.0/download"],
10429 visibility = [],10420 visibility = [],
10430 )10421 )
10431 10422
10432 cargo.rust_library(10423 cargo.rust_library(
10433 name = "icu_locale_core-2",10424 name = "icu_locale_core-2",
10434- srcs = [":icu_locale_core-2.3.0.crate"],10425+ srcs = [":icu_locale_core-2.2.0.crate"],
10435 crate = "icu_locale_core",10426 crate = "icu_locale_core",
10436- crate_root = "icu_locale_core-2.3.0.crate/src/lib.rs",10427+ crate_root = "icu_locale_core-2.2.0.crate/src/lib.rs",
10437- edition = "2024",10428+ edition = "2021",
10438 env = {10429 env = {
10439 "CARGO_BIN_NAME": "icu_locale_core",10430 "CARGO_BIN_NAME": "icu_locale_core",
10440 "CARGO_CRATE_NAME": "icu_locale_core",10431 "CARGO_CRATE_NAME": "icu_locale_core",
10441- "CARGO_MANIFEST_DIR": "icu_locale_core-2.3.0.crate",10432+ "CARGO_MANIFEST_DIR": "icu_locale_core-2.2.0.crate",
10442 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10433 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10443 "CARGO_PKG_DESCRIPTION": "API for managing Unicode Language and Locale Identifiers",10434 "CARGO_PKG_DESCRIPTION": "API for managing Unicode Language and Locale Identifiers",
10444 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10435 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10445 "CARGO_PKG_NAME": "icu_locale_core",10436 "CARGO_PKG_NAME": "icu_locale_core",
10446 "CARGO_PKG_README": "README.md",10437 "CARGO_PKG_README": "README.md",
10447 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10438 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10448- "CARGO_PKG_RUST_VERSION": "1.88",10439+ "CARGO_PKG_RUST_VERSION": "1.86",
10449- "CARGO_PKG_VERSION": "2.3.0",10440+ "CARGO_PKG_VERSION": "2.2.0",
10450 "CARGO_PKG_VERSION_MAJOR": "2",10441 "CARGO_PKG_VERSION_MAJOR": "2",
10451- "CARGO_PKG_VERSION_MINOR": "3",10442+ "CARGO_PKG_VERSION_MINOR": "2",
10452 "CARGO_PKG_VERSION_PATCH": "0",10443 "CARGO_PKG_VERSION_PATCH": "0",
10453 "CARGO_PKG_VERSION_PRE": "",10444 "CARGO_PKG_VERSION_PRE": "",
10454 },10445 },
@@ -10464,33 +10455,33 @@ cargo.rust_library(
10464 )10455 )
10465 10456
10466 http_archive(10457 http_archive(
10467- name = "icu_normalizer-2.3.0.crate",10458+ name = "icu_normalizer-2.2.0.crate",
10468- sha256 = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f",10459+ sha256 = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4",
10469- strip_prefix = "icu_normalizer-2.3.0",10460+ strip_prefix = "icu_normalizer-2.2.0",
10470- urls = ["https://static.crates.io/crates/icu_normalizer/2.3.0/download"],10461+ urls = ["https://static.crates.io/crates/icu_normalizer/2.2.0/download"],
10471 visibility = [],10462 visibility = [],
10472 )10463 )
10473 10464
10474 cargo.rust_library(10465 cargo.rust_library(
10475 name = "icu_normalizer-2",10466 name = "icu_normalizer-2",
10476- srcs = [":icu_normalizer-2.3.0.crate"],10467+ srcs = [":icu_normalizer-2.2.0.crate"],
10477 crate = "icu_normalizer",10468 crate = "icu_normalizer",
10478- crate_root = "icu_normalizer-2.3.0.crate/src/lib.rs",10469+ crate_root = "icu_normalizer-2.2.0.crate/src/lib.rs",
10479- edition = "2024",10470+ edition = "2021",
10480 env = {10471 env = {
10481 "CARGO_BIN_NAME": "icu_normalizer",10472 "CARGO_BIN_NAME": "icu_normalizer",
10482 "CARGO_CRATE_NAME": "icu_normalizer",10473 "CARGO_CRATE_NAME": "icu_normalizer",
10483- "CARGO_MANIFEST_DIR": "icu_normalizer-2.3.0.crate",10474+ "CARGO_MANIFEST_DIR": "icu_normalizer-2.2.0.crate",
10484 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10475 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10485 "CARGO_PKG_DESCRIPTION": "API for normalizing text into Unicode Normalization Forms",10476 "CARGO_PKG_DESCRIPTION": "API for normalizing text into Unicode Normalization Forms",
10486 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10477 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10487 "CARGO_PKG_NAME": "icu_normalizer",10478 "CARGO_PKG_NAME": "icu_normalizer",
10488 "CARGO_PKG_README": "README.md",10479 "CARGO_PKG_README": "README.md",
10489 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10480 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10490- "CARGO_PKG_RUST_VERSION": "1.88",10481+ "CARGO_PKG_RUST_VERSION": "1.86",
10491- "CARGO_PKG_VERSION": "2.3.0",10482+ "CARGO_PKG_VERSION": "2.2.0",
10492 "CARGO_PKG_VERSION_MAJOR": "2",10483 "CARGO_PKG_VERSION_MAJOR": "2",
10493- "CARGO_PKG_VERSION_MINOR": "3",10484+ "CARGO_PKG_VERSION_MINOR": "2",
10494 "CARGO_PKG_VERSION_PATCH": "0",10485 "CARGO_PKG_VERSION_PATCH": "0",
10495 "CARGO_PKG_VERSION_PRE": "",10486 "CARGO_PKG_VERSION_PRE": "",
10496 },10487 },
@@ -10506,33 +10497,33 @@ cargo.rust_library(
10506 )10497 )
10507 10498
10508 http_archive(10499 http_archive(
10509- name = "icu_normalizer_data-2.3.0.crate",10500+ name = "icu_normalizer_data-2.2.0.crate",
10510- sha256 = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0",10501+ sha256 = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38",
10511- strip_prefix = "icu_normalizer_data-2.3.0",10502+ strip_prefix = "icu_normalizer_data-2.2.0",
10512- urls = ["https://static.crates.io/crates/icu_normalizer_data/2.3.0/download"],10503+ urls = ["https://static.crates.io/crates/icu_normalizer_data/2.2.0/download"],
10513 visibility = [],10504 visibility = [],
10514 )10505 )
10515 10506
10516 cargo.rust_library(10507 cargo.rust_library(
10517 name = "icu_normalizer_data-2",10508 name = "icu_normalizer_data-2",
10518- srcs = [":icu_normalizer_data-2.3.0.crate"],10509+ srcs = [":icu_normalizer_data-2.2.0.crate"],
10519 crate = "icu_normalizer_data",10510 crate = "icu_normalizer_data",
10520- crate_root = "icu_normalizer_data-2.3.0.crate/src/lib.rs",10511+ crate_root = "icu_normalizer_data-2.2.0.crate/src/lib.rs",
10521- edition = "2024",10512+ edition = "2021",
10522 env = {10513 env = {
10523 "CARGO_BIN_NAME": "icu_normalizer_data",10514 "CARGO_BIN_NAME": "icu_normalizer_data",
10524 "CARGO_CRATE_NAME": "icu_normalizer_data",10515 "CARGO_CRATE_NAME": "icu_normalizer_data",
10525- "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.3.0.crate",10516+ "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.2.0.crate",
10526 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10517 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10527 "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate",10518 "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate",
10528 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10519 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10529 "CARGO_PKG_NAME": "icu_normalizer_data",10520 "CARGO_PKG_NAME": "icu_normalizer_data",
10530 "CARGO_PKG_README": "README.md",10521 "CARGO_PKG_README": "README.md",
10531 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10522 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10532- "CARGO_PKG_RUST_VERSION": "1.88",10523+ "CARGO_PKG_RUST_VERSION": "1.86",
10533- "CARGO_PKG_VERSION": "2.3.0",10524+ "CARGO_PKG_VERSION": "2.2.0",
10534 "CARGO_PKG_VERSION_MAJOR": "2",10525 "CARGO_PKG_VERSION_MAJOR": "2",
10535- "CARGO_PKG_VERSION_MINOR": "3",10526+ "CARGO_PKG_VERSION_MINOR": "2",
10536 "CARGO_PKG_VERSION_PATCH": "0",10527 "CARGO_PKG_VERSION_PATCH": "0",
10537 "CARGO_PKG_VERSION_PRE": "",10528 "CARGO_PKG_VERSION_PRE": "",
10538 "OUT_DIR": "$(location :icu_normalizer_data-2-build-script-run[out_dir])",10529 "OUT_DIR": "$(location :icu_normalizer_data-2-build-script-run[out_dir])",
@@ -10543,24 +10534,24 @@ cargo.rust_library(
10543 10534
10544 cargo.rust_binary(10535 cargo.rust_binary(
10545 name = "icu_normalizer_data-2-build-script-build",10536 name = "icu_normalizer_data-2-build-script-build",
10546- srcs = [":icu_normalizer_data-2.3.0.crate"],10537+ srcs = [":icu_normalizer_data-2.2.0.crate"],
10547 crate = "build_script_build",10538 crate = "build_script_build",
10548- crate_root = "icu_normalizer_data-2.3.0.crate/build.rs",10539+ crate_root = "icu_normalizer_data-2.2.0.crate/build.rs",
10549- edition = "2024",10540+ edition = "2021",
10550 env = {10541 env = {
10551 "CARGO_BIN_NAME": "build-script-build",10542 "CARGO_BIN_NAME": "build-script-build",
10552 "CARGO_CRATE_NAME": "build_script_build",10543 "CARGO_CRATE_NAME": "build_script_build",
10553- "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.3.0.crate",10544+ "CARGO_MANIFEST_DIR": "icu_normalizer_data-2.2.0.crate",
10554 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10545 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10555 "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate",10546 "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate",
10556 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10547 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10557 "CARGO_PKG_NAME": "icu_normalizer_data",10548 "CARGO_PKG_NAME": "icu_normalizer_data",
10558 "CARGO_PKG_README": "README.md",10549 "CARGO_PKG_README": "README.md",
10559 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10550 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10560- "CARGO_PKG_RUST_VERSION": "1.88",10551+ "CARGO_PKG_RUST_VERSION": "1.86",
10561- "CARGO_PKG_VERSION": "2.3.0",10552+ "CARGO_PKG_VERSION": "2.2.0",
10562 "CARGO_PKG_VERSION_MAJOR": "2",10553 "CARGO_PKG_VERSION_MAJOR": "2",
10563- "CARGO_PKG_VERSION_MINOR": "3",10554+ "CARGO_PKG_VERSION_MINOR": "2",
10564 "CARGO_PKG_VERSION_PATCH": "0",10555 "CARGO_PKG_VERSION_PATCH": "0",
10565 "CARGO_PKG_VERSION_PRE": "",10556 "CARGO_PKG_VERSION_PRE": "",
10566 },10557 },
@@ -10577,50 +10568,50 @@ buildscript_run(
10577 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10568 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10578 "CARGO_PKG_README": "README.md",10569 "CARGO_PKG_README": "README.md",
10579 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10570 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10580- "CARGO_PKG_RUST_VERSION": "1.88",10571+ "CARGO_PKG_RUST_VERSION": "1.86",
10581 "CARGO_PKG_VERSION_MAJOR": "2",10572 "CARGO_PKG_VERSION_MAJOR": "2",
10582- "CARGO_PKG_VERSION_MINOR": "3",10573+ "CARGO_PKG_VERSION_MINOR": "2",
10583 "CARGO_PKG_VERSION_PATCH": "0",10574 "CARGO_PKG_VERSION_PATCH": "0",
10584 "CARGO_PKG_VERSION_PRE": "",10575 "CARGO_PKG_VERSION_PRE": "",
10576+ "OPT_LEVEL": "2",
10585 },10577 },
10586- version = "2.3.0",10578+ version = "2.2.0",
10587 )10579 )
10588 10580
10589 http_archive(10581 http_archive(
10590- name = "icu_properties-2.3.0.crate",10582+ name = "icu_properties-2.2.0.crate",
10591- sha256 = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148",10583+ sha256 = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de",
10592- strip_prefix = "icu_properties-2.3.0",10584+ strip_prefix = "icu_properties-2.2.0",
10593- urls = ["https://static.crates.io/crates/icu_properties/2.3.0/download"],10585+ urls = ["https://static.crates.io/crates/icu_properties/2.2.0/download"],
10594 visibility = [],10586 visibility = [],
10595 )10587 )
10596 10588
10597 cargo.rust_library(10589 cargo.rust_library(
10598 name = "icu_properties-2",10590 name = "icu_properties-2",
10599- srcs = [":icu_properties-2.3.0.crate"],10591+ srcs = [":icu_properties-2.2.0.crate"],
10600 crate = "icu_properties",10592 crate = "icu_properties",
10601- crate_root = "icu_properties-2.3.0.crate/src/lib.rs",10593+ crate_root = "icu_properties-2.2.0.crate/src/lib.rs",
10602- edition = "2024",10594+ edition = "2021",
10603 env = {10595 env = {
10604 "CARGO_BIN_NAME": "icu_properties",10596 "CARGO_BIN_NAME": "icu_properties",
10605 "CARGO_CRATE_NAME": "icu_properties",10597 "CARGO_CRATE_NAME": "icu_properties",
10606- "CARGO_MANIFEST_DIR": "icu_properties-2.3.0.crate",10598+ "CARGO_MANIFEST_DIR": "icu_properties-2.2.0.crate",
10607 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10599 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10608 "CARGO_PKG_DESCRIPTION": "Definitions for Unicode properties",10600 "CARGO_PKG_DESCRIPTION": "Definitions for Unicode properties",
10609 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10601 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10610 "CARGO_PKG_NAME": "icu_properties",10602 "CARGO_PKG_NAME": "icu_properties",
10611 "CARGO_PKG_README": "README.md",10603 "CARGO_PKG_README": "README.md",
10612 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10604 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10613- "CARGO_PKG_RUST_VERSION": "1.88",10605+ "CARGO_PKG_RUST_VERSION": "1.86",
10614- "CARGO_PKG_VERSION": "2.3.0",10606+ "CARGO_PKG_VERSION": "2.2.0",
10615 "CARGO_PKG_VERSION_MAJOR": "2",10607 "CARGO_PKG_VERSION_MAJOR": "2",
10616- "CARGO_PKG_VERSION_MINOR": "3",10608+ "CARGO_PKG_VERSION_MINOR": "2",
10617 "CARGO_PKG_VERSION_PATCH": "0",10609 "CARGO_PKG_VERSION_PATCH": "0",
10618 "CARGO_PKG_VERSION_PRE": "",10610 "CARGO_PKG_VERSION_PRE": "",
10619 },10611 },
10620 features = ["compiled_data"],10612 features = ["compiled_data"],
10621 visibility = [],10613 visibility = [],
10622 deps = [10614 deps = [
10623- ":displaydoc-0.2",
10624 ":icu_collections-2",10615 ":icu_collections-2",
10625 ":icu_locale_core-2",10616 ":icu_locale_core-2",
10626 ":icu_properties_data-2",10617 ":icu_properties_data-2",
@@ -10631,33 +10622,33 @@ cargo.rust_library(
10631 )10622 )
10632 10623
10633 http_archive(10624 http_archive(
10634- name = "icu_properties_data-2.3.0.crate",10625+ name = "icu_properties_data-2.2.0.crate",
10635- sha256 = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa",10626+ sha256 = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14",
10636- strip_prefix = "icu_properties_data-2.3.0",10627+ strip_prefix = "icu_properties_data-2.2.0",
10637- urls = ["https://static.crates.io/crates/icu_properties_data/2.3.0/download"],10628+ urls = ["https://static.crates.io/crates/icu_properties_data/2.2.0/download"],
10638 visibility = [],10629 visibility = [],
10639 )10630 )
10640 10631
10641 cargo.rust_library(10632 cargo.rust_library(
10642 name = "icu_properties_data-2",10633 name = "icu_properties_data-2",
10643- srcs = [":icu_properties_data-2.3.0.crate"],10634+ srcs = [":icu_properties_data-2.2.0.crate"],
10644 crate = "icu_properties_data",10635 crate = "icu_properties_data",
10645- crate_root = "icu_properties_data-2.3.0.crate/src/lib.rs",10636+ crate_root = "icu_properties_data-2.2.0.crate/src/lib.rs",
10646- edition = "2024",10637+ edition = "2021",
10647 env = {10638 env = {
10648 "CARGO_BIN_NAME": "icu_properties_data",10639 "CARGO_BIN_NAME": "icu_properties_data",
10649 "CARGO_CRATE_NAME": "icu_properties_data",10640 "CARGO_CRATE_NAME": "icu_properties_data",
10650- "CARGO_MANIFEST_DIR": "icu_properties_data-2.3.0.crate",10641+ "CARGO_MANIFEST_DIR": "icu_properties_data-2.2.0.crate",
10651 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10642 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10652 "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate",10643 "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate",
10653 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10644 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10654 "CARGO_PKG_NAME": "icu_properties_data",10645 "CARGO_PKG_NAME": "icu_properties_data",
10655 "CARGO_PKG_README": "README.md",10646 "CARGO_PKG_README": "README.md",
10656 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10647 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10657- "CARGO_PKG_RUST_VERSION": "1.88",10648+ "CARGO_PKG_RUST_VERSION": "1.86",
10658- "CARGO_PKG_VERSION": "2.3.0",10649+ "CARGO_PKG_VERSION": "2.2.0",
10659 "CARGO_PKG_VERSION_MAJOR": "2",10650 "CARGO_PKG_VERSION_MAJOR": "2",
10660- "CARGO_PKG_VERSION_MINOR": "3",10651+ "CARGO_PKG_VERSION_MINOR": "2",
10661 "CARGO_PKG_VERSION_PATCH": "0",10652 "CARGO_PKG_VERSION_PATCH": "0",
10662 "CARGO_PKG_VERSION_PRE": "",10653 "CARGO_PKG_VERSION_PRE": "",
10663 "OUT_DIR": "$(location :icu_properties_data-2-build-script-run[out_dir])",10654 "OUT_DIR": "$(location :icu_properties_data-2-build-script-run[out_dir])",
@@ -10668,24 +10659,24 @@ cargo.rust_library(
10668 10659
10669 cargo.rust_binary(10660 cargo.rust_binary(
10670 name = "icu_properties_data-2-build-script-build",10661 name = "icu_properties_data-2-build-script-build",
10671- srcs = [":icu_properties_data-2.3.0.crate"],10662+ srcs = [":icu_properties_data-2.2.0.crate"],
10672 crate = "build_script_build",10663 crate = "build_script_build",
10673- crate_root = "icu_properties_data-2.3.0.crate/build.rs",10664+ crate_root = "icu_properties_data-2.2.0.crate/build.rs",
10674- edition = "2024",10665+ edition = "2021",
10675 env = {10666 env = {
10676 "CARGO_BIN_NAME": "build-script-build",10667 "CARGO_BIN_NAME": "build-script-build",
10677 "CARGO_CRATE_NAME": "build_script_build",10668 "CARGO_CRATE_NAME": "build_script_build",
10678- "CARGO_MANIFEST_DIR": "icu_properties_data-2.3.0.crate",10669+ "CARGO_MANIFEST_DIR": "icu_properties_data-2.2.0.crate",
10679 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10670 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10680 "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate",10671 "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate",
10681 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10672 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10682 "CARGO_PKG_NAME": "icu_properties_data",10673 "CARGO_PKG_NAME": "icu_properties_data",
10683 "CARGO_PKG_README": "README.md",10674 "CARGO_PKG_README": "README.md",
10684 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10675 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10685- "CARGO_PKG_RUST_VERSION": "1.88",10676+ "CARGO_PKG_RUST_VERSION": "1.86",
10686- "CARGO_PKG_VERSION": "2.3.0",10677+ "CARGO_PKG_VERSION": "2.2.0",
10687 "CARGO_PKG_VERSION_MAJOR": "2",10678 "CARGO_PKG_VERSION_MAJOR": "2",
10688- "CARGO_PKG_VERSION_MINOR": "3",10679+ "CARGO_PKG_VERSION_MINOR": "2",
10689 "CARGO_PKG_VERSION_PATCH": "0",10680 "CARGO_PKG_VERSION_PATCH": "0",
10690 "CARGO_PKG_VERSION_PRE": "",10681 "CARGO_PKG_VERSION_PRE": "",
10691 },10682 },
@@ -10702,44 +10693,45 @@ buildscript_run(
10702 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10693 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10703 "CARGO_PKG_README": "README.md",10694 "CARGO_PKG_README": "README.md",
10704 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10695 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10705- "CARGO_PKG_RUST_VERSION": "1.88",10696+ "CARGO_PKG_RUST_VERSION": "1.86",
10706 "CARGO_PKG_VERSION_MAJOR": "2",10697 "CARGO_PKG_VERSION_MAJOR": "2",
10707- "CARGO_PKG_VERSION_MINOR": "3",10698+ "CARGO_PKG_VERSION_MINOR": "2",
10708 "CARGO_PKG_VERSION_PATCH": "0",10699 "CARGO_PKG_VERSION_PATCH": "0",
10709 "CARGO_PKG_VERSION_PRE": "",10700 "CARGO_PKG_VERSION_PRE": "",
10701+ "OPT_LEVEL": "2",
10710 },10702 },
10711- version = "2.3.0",10703+ version = "2.2.0",
10712 )10704 )
10713 10705
10714 http_archive(10706 http_archive(
10715- name = "icu_provider-2.3.1.crate",10707+ name = "icu_provider-2.2.0.crate",
10716- sha256 = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73",10708+ sha256 = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421",
10717- strip_prefix = "icu_provider-2.3.1",10709+ strip_prefix = "icu_provider-2.2.0",
10718- urls = ["https://static.crates.io/crates/icu_provider/2.3.1/download"],10710+ urls = ["https://static.crates.io/crates/icu_provider/2.2.0/download"],
10719 visibility = [],10711 visibility = [],
10720 )10712 )
10721 10713
10722 cargo.rust_library(10714 cargo.rust_library(
10723 name = "icu_provider-2",10715 name = "icu_provider-2",
10724- srcs = [":icu_provider-2.3.1.crate"],10716+ srcs = [":icu_provider-2.2.0.crate"],
10725 crate = "icu_provider",10717 crate = "icu_provider",
10726- crate_root = "icu_provider-2.3.1.crate/src/lib.rs",10718+ crate_root = "icu_provider-2.2.0.crate/src/lib.rs",
10727- edition = "2024",10719+ edition = "2021",
10728 env = {10720 env = {
10729 "CARGO_BIN_NAME": "icu_provider",10721 "CARGO_BIN_NAME": "icu_provider",
10730 "CARGO_CRATE_NAME": "icu_provider",10722 "CARGO_CRATE_NAME": "icu_provider",
10731- "CARGO_MANIFEST_DIR": "icu_provider-2.3.1.crate",10723+ "CARGO_MANIFEST_DIR": "icu_provider-2.2.0.crate",
10732 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",10724 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
10733 "CARGO_PKG_DESCRIPTION": "Trait and struct definitions for the ICU data provider",10725 "CARGO_PKG_DESCRIPTION": "Trait and struct definitions for the ICU data provider",
10734 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",10726 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
10735 "CARGO_PKG_NAME": "icu_provider",10727 "CARGO_PKG_NAME": "icu_provider",
10736 "CARGO_PKG_README": "README.md",10728 "CARGO_PKG_README": "README.md",
10737 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",10729 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
10738- "CARGO_PKG_RUST_VERSION": "1.88",10730+ "CARGO_PKG_RUST_VERSION": "1.86",
10739- "CARGO_PKG_VERSION": "2.3.1",10731+ "CARGO_PKG_VERSION": "2.2.0",
10740 "CARGO_PKG_VERSION_MAJOR": "2",10732 "CARGO_PKG_VERSION_MAJOR": "2",
10741- "CARGO_PKG_VERSION_MINOR": "3",10733+ "CARGO_PKG_VERSION_MINOR": "2",
10742- "CARGO_PKG_VERSION_PATCH": "1",10734+ "CARGO_PKG_VERSION_PATCH": "0",
10743 "CARGO_PKG_VERSION_PRE": "",10735 "CARGO_PKG_VERSION_PRE": "",
10744 },10736 },
10745 features = ["baked"],10737 features = ["baked"],
@@ -11039,23 +11031,23 @@ cargo.rust_library(
11039 )11031 )
11040 11032
11041 http_archive(11033 http_archive(
11042- name = "indexmap-2.14.1.crate",11034+ name = "indexmap-2.14.0.crate",
11043- sha256 = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb",11035+ sha256 = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9",
11044- strip_prefix = "indexmap-2.14.1",11036+ strip_prefix = "indexmap-2.14.0",
11045- urls = ["https://static.crates.io/crates/indexmap/2.14.1/download"],11037+ urls = ["https://static.crates.io/crates/indexmap/2.14.0/download"],
11046 visibility = [],11038 visibility = [],
11047 )11039 )
11048 11040
11049 cargo.rust_library(11041 cargo.rust_library(
11050 name = "indexmap-2",11042 name = "indexmap-2",
11051- srcs = [":indexmap-2.14.1.crate"],11043+ srcs = [":indexmap-2.14.0.crate"],
11052 crate = "indexmap",11044 crate = "indexmap",
11053- crate_root = "indexmap-2.14.1.crate/src/lib.rs",11045+ crate_root = "indexmap-2.14.0.crate/src/lib.rs",
11054 edition = "2024",11046 edition = "2024",
11055 env = {11047 env = {
11056 "CARGO_BIN_NAME": "indexmap",11048 "CARGO_BIN_NAME": "indexmap",
11057 "CARGO_CRATE_NAME": "indexmap",11049 "CARGO_CRATE_NAME": "indexmap",
11058- "CARGO_MANIFEST_DIR": "indexmap-2.14.1.crate",11050+ "CARGO_MANIFEST_DIR": "indexmap-2.14.0.crate",
11059 "CARGO_PKG_AUTHORS": "",11051 "CARGO_PKG_AUTHORS": "",
11060 "CARGO_PKG_DESCRIPTION": "A hash table with consistent order and fast iteration.",11052 "CARGO_PKG_DESCRIPTION": "A hash table with consistent order and fast iteration.",
11061 "CARGO_PKG_HOMEPAGE": "",11053 "CARGO_PKG_HOMEPAGE": "",
@@ -11063,10 +11055,10 @@ cargo.rust_library(
11063 "CARGO_PKG_README": "README.md",11055 "CARGO_PKG_README": "README.md",
11064 "CARGO_PKG_REPOSITORY": "https://github.com/indexmap-rs/indexmap",11056 "CARGO_PKG_REPOSITORY": "https://github.com/indexmap-rs/indexmap",
11065 "CARGO_PKG_RUST_VERSION": "1.85",11057 "CARGO_PKG_RUST_VERSION": "1.85",
11066- "CARGO_PKG_VERSION": "2.14.1",11058+ "CARGO_PKG_VERSION": "2.14.0",
11067 "CARGO_PKG_VERSION_MAJOR": "2",11059 "CARGO_PKG_VERSION_MAJOR": "2",
11068 "CARGO_PKG_VERSION_MINOR": "14",11060 "CARGO_PKG_VERSION_MINOR": "14",
11069- "CARGO_PKG_VERSION_PATCH": "1",11061+ "CARGO_PKG_VERSION_PATCH": "0",
11070 "CARGO_PKG_VERSION_PRE": "",11062 "CARGO_PKG_VERSION_PRE": "",
11071 },11063 },
11072 features = [11064 features = [
@@ -11116,23 +11108,23 @@ cargo.rust_library(
11116 )11108 )
11117 11109
11118 http_archive(11110 http_archive(
11119- name = "ipnet-2.12.1.crate",11111+ name = "ipnet-2.12.0.crate",
11120- sha256 = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78",11112+ sha256 = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2",
11121- strip_prefix = "ipnet-2.12.1",11113+ strip_prefix = "ipnet-2.12.0",
11122- urls = ["https://static.crates.io/crates/ipnet/2.12.1/download"],11114+ urls = ["https://static.crates.io/crates/ipnet/2.12.0/download"],
11123 visibility = [],11115 visibility = [],
11124 )11116 )
11125 11117
11126 cargo.rust_library(11118 cargo.rust_library(
11127 name = "ipnet-2",11119 name = "ipnet-2",
11128- srcs = [":ipnet-2.12.1.crate"],11120+ srcs = [":ipnet-2.12.0.crate"],
11129 crate = "ipnet",11121 crate = "ipnet",
11130- crate_root = "ipnet-2.12.1.crate/src/lib.rs",11122+ crate_root = "ipnet-2.12.0.crate/src/lib.rs",
11131 edition = "2018",11123 edition = "2018",
11132 env = {11124 env = {
11133 "CARGO_BIN_NAME": "ipnet",11125 "CARGO_BIN_NAME": "ipnet",
11134 "CARGO_CRATE_NAME": "ipnet",11126 "CARGO_CRATE_NAME": "ipnet",
11135- "CARGO_MANIFEST_DIR": "ipnet-2.12.1.crate",11127+ "CARGO_MANIFEST_DIR": "ipnet-2.12.0.crate",
11136 "CARGO_PKG_AUTHORS": "Kris Price <kris@krisprice.nz>",11128 "CARGO_PKG_AUTHORS": "Kris Price <kris@krisprice.nz>",
11137 "CARGO_PKG_DESCRIPTION": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.",11129 "CARGO_PKG_DESCRIPTION": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.",
11138 "CARGO_PKG_HOMEPAGE": "",11130 "CARGO_PKG_HOMEPAGE": "",
@@ -11140,10 +11132,10 @@ cargo.rust_library(
11140 "CARGO_PKG_README": "README.md",11132 "CARGO_PKG_README": "README.md",
11141 "CARGO_PKG_REPOSITORY": "https://github.com/krisprice/ipnet",11133 "CARGO_PKG_REPOSITORY": "https://github.com/krisprice/ipnet",
11142 "CARGO_PKG_RUST_VERSION": "",11134 "CARGO_PKG_RUST_VERSION": "",
11143- "CARGO_PKG_VERSION": "2.12.1",11135+ "CARGO_PKG_VERSION": "2.12.0",
11144 "CARGO_PKG_VERSION_MAJOR": "2",11136 "CARGO_PKG_VERSION_MAJOR": "2",
11145 "CARGO_PKG_VERSION_MINOR": "12",11137 "CARGO_PKG_VERSION_MINOR": "12",
11146- "CARGO_PKG_VERSION_PATCH": "1",11138+ "CARGO_PKG_VERSION_PATCH": "0",
11147 "CARGO_PKG_VERSION_PRE": "",11139 "CARGO_PKG_VERSION_PRE": "",
11148 },11140 },
11149 features = [11141 features = [
@@ -11283,6 +11275,7 @@ buildscript_run(
11283 "CARGO_PKG_VERSION_MINOR": "97",11275 "CARGO_PKG_VERSION_MINOR": "97",
11284 "CARGO_PKG_VERSION_PATCH": "0",11276 "CARGO_PKG_VERSION_PATCH": "0",
11285 "CARGO_PKG_VERSION_PRE": "",11277 "CARGO_PKG_VERSION_PRE": "",
11278+ "OPT_LEVEL": "2",
11286 },11279 },
11287 features = [11280 features = [
11288 "fast-apple-datapath",11281 "fast-apple-datapath",
@@ -11701,6 +11694,7 @@ buildscript_run(
11701 "CARGO_PKG_VERSION_MINOR": "97",11694 "CARGO_PKG_VERSION_MINOR": "97",
11702 "CARGO_PKG_VERSION_PATCH": "0",11695 "CARGO_PKG_VERSION_PATCH": "0",
11703 "CARGO_PKG_VERSION_PRE": "",11696 "CARGO_PKG_VERSION_PRE": "",
11697+ "OPT_LEVEL": "2",
11704 },11698 },
11705 features = [11699 features = [
11706 "metrics",11700 "metrics",
@@ -12029,10 +12023,6 @@ cargo.rust_library(
12029 features = [12023 features = [
12030 "alloc",12024 "alloc",
12031 "std",12025 "std",
12032- "tz-system",
12033- "tzdb-bundle-platform",
12034- "tzdb-concatenated",
12035- "tzdb-zoneinfo",
12036 ],12026 ],
12037 named_deps = {12027 named_deps = {
12038 "jcore": ":jiff-core-0.1",12028 "jcore": ":jiff-core-0.1",
@@ -12190,6 +12180,7 @@ buildscript_run(
12190 "CARGO_PKG_VERSION_MINOR": "1",12180 "CARGO_PKG_VERSION_MINOR": "1",
12191 "CARGO_PKG_VERSION_PATCH": "0",12181 "CARGO_PKG_VERSION_PATCH": "0",
12192 "CARGO_PKG_VERSION_PRE": "",12182 "CARGO_PKG_VERSION_PRE": "",
12183+ "OPT_LEVEL": "2",
12193 },12184 },
12194 version = "3.1.0",12185 version = "3.1.0",
12195 )12186 )
@@ -12321,6 +12312,7 @@ buildscript_run(
12321 "CARGO_PKG_VERSION_MINOR": "2",12312 "CARGO_PKG_VERSION_MINOR": "2",
12322 "CARGO_PKG_VERSION_PATCH": "189",12313 "CARGO_PKG_VERSION_PATCH": "189",
12323 "CARGO_PKG_VERSION_PRE": "",12314 "CARGO_PKG_VERSION_PRE": "",
12315+ "OPT_LEVEL": "2",
12324 },12316 },
12325 features = [12317 features = [
12326 "default",12318 "default",
@@ -12450,6 +12442,7 @@ buildscript_run(
12450 "CARGO_PKG_VERSION_MINOR": "2",12442 "CARGO_PKG_VERSION_MINOR": "2",
12451 "CARGO_PKG_VERSION_PATCH": "16",12443 "CARGO_PKG_VERSION_PATCH": "16",
12452 "CARGO_PKG_VERSION_PRE": "",12444 "CARGO_PKG_VERSION_PRE": "",
12445+ "OPT_LEVEL": "2",
12453 },12446 },
12454 features = [12447 features = [
12455 "arch",12448 "arch",
@@ -12550,23 +12543,23 @@ cargo.rust_library(
12550 )12543 )
12551 12544
12552 http_archive(12545 http_archive(
12553- name = "litemap-0.8.3.crate",12546+ name = "litemap-0.8.2.crate",
12554- sha256 = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae",12547+ sha256 = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0",
12555- strip_prefix = "litemap-0.8.3",12548+ strip_prefix = "litemap-0.8.2",
12556- urls = ["https://static.crates.io/crates/litemap/0.8.3/download"],12549+ urls = ["https://static.crates.io/crates/litemap/0.8.2/download"],
12557 visibility = [],12550 visibility = [],
12558 )12551 )
12559 12552
12560 cargo.rust_library(12553 cargo.rust_library(
12561 name = "litemap-0.8",12554 name = "litemap-0.8",
12562- srcs = [":litemap-0.8.3.crate"],12555+ srcs = [":litemap-0.8.2.crate"],
12563 crate = "litemap",12556 crate = "litemap",
12564- crate_root = "litemap-0.8.3.crate/src/lib.rs",12557+ crate_root = "litemap-0.8.2.crate/src/lib.rs",
12565 edition = "2021",12558 edition = "2021",
12566 env = {12559 env = {
12567 "CARGO_BIN_NAME": "litemap",12560 "CARGO_BIN_NAME": "litemap",
12568 "CARGO_CRATE_NAME": "litemap",12561 "CARGO_CRATE_NAME": "litemap",
12569- "CARGO_MANIFEST_DIR": "litemap-0.8.3.crate",12562+ "CARGO_MANIFEST_DIR": "litemap-0.8.2.crate",
12570 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",12563 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
12571 "CARGO_PKG_DESCRIPTION": "A key-value Map implementation based on a flat, sorted Vec.",12564 "CARGO_PKG_DESCRIPTION": "A key-value Map implementation based on a flat, sorted Vec.",
12572 "CARGO_PKG_HOMEPAGE": "",12565 "CARGO_PKG_HOMEPAGE": "",
@@ -12574,10 +12567,10 @@ cargo.rust_library(
12574 "CARGO_PKG_README": "README.md",12567 "CARGO_PKG_README": "README.md",
12575 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",12568 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
12576 "CARGO_PKG_RUST_VERSION": "1.82",12569 "CARGO_PKG_RUST_VERSION": "1.82",
12577- "CARGO_PKG_VERSION": "0.8.3",12570+ "CARGO_PKG_VERSION": "0.8.2",
12578 "CARGO_PKG_VERSION_MAJOR": "0",12571 "CARGO_PKG_VERSION_MAJOR": "0",
12579 "CARGO_PKG_VERSION_MINOR": "8",12572 "CARGO_PKG_VERSION_MINOR": "8",
12580- "CARGO_PKG_VERSION_PATCH": "3",12573+ "CARGO_PKG_VERSION_PATCH": "2",
12581 "CARGO_PKG_VERSION_PRE": "",12574 "CARGO_PKG_VERSION_PRE": "",
12582 },12575 },
12583 visibility = [],12576 visibility = [],
@@ -12663,23 +12656,23 @@ alias(
12663 )12656 )
12664 12657
12665 http_archive(12658 http_archive(
12666- name = "log-0.4.34.crate",12659+ name = "log-0.4.33.crate",
12667- sha256 = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6",12660+ sha256 = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad",
12668- strip_prefix = "log-0.4.34",12661+ strip_prefix = "log-0.4.33",
12669- urls = ["https://static.crates.io/crates/log/0.4.34/download"],12662+ urls = ["https://static.crates.io/crates/log/0.4.33/download"],
12670 visibility = [],12663 visibility = [],
12671 )12664 )
12672 12665
12673 cargo.rust_library(12666 cargo.rust_library(
12674 name = "log-0.4",12667 name = "log-0.4",
12675- srcs = [":log-0.4.34.crate"],12668+ srcs = [":log-0.4.33.crate"],
12676 crate = "log",12669 crate = "log",
12677- crate_root = "log-0.4.34.crate/src/lib.rs",12670+ crate_root = "log-0.4.33.crate/src/lib.rs",
12678 edition = "2021",12671 edition = "2021",
12679 env = {12672 env = {
12680 "CARGO_BIN_NAME": "log",12673 "CARGO_BIN_NAME": "log",
12681 "CARGO_CRATE_NAME": "log",12674 "CARGO_CRATE_NAME": "log",
12682- "CARGO_MANIFEST_DIR": "log-0.4.34.crate",12675+ "CARGO_MANIFEST_DIR": "log-0.4.33.crate",
12683 "CARGO_PKG_AUTHORS": "The Rust Project Developers",12676 "CARGO_PKG_AUTHORS": "The Rust Project Developers",
12684 "CARGO_PKG_DESCRIPTION": "A lightweight logging facade for Rust\n",12677 "CARGO_PKG_DESCRIPTION": "A lightweight logging facade for Rust\n",
12685 "CARGO_PKG_HOMEPAGE": "",12678 "CARGO_PKG_HOMEPAGE": "",
@@ -12687,16 +12680,13 @@ cargo.rust_library(
12687 "CARGO_PKG_README": "README.md",12680 "CARGO_PKG_README": "README.md",
12688 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/log",12681 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/log",
12689 "CARGO_PKG_RUST_VERSION": "1.71.0",12682 "CARGO_PKG_RUST_VERSION": "1.71.0",
12690- "CARGO_PKG_VERSION": "0.4.34",12683+ "CARGO_PKG_VERSION": "0.4.33",
12691 "CARGO_PKG_VERSION_MAJOR": "0",12684 "CARGO_PKG_VERSION_MAJOR": "0",
12692 "CARGO_PKG_VERSION_MINOR": "4",12685 "CARGO_PKG_VERSION_MINOR": "4",
12693- "CARGO_PKG_VERSION_PATCH": "34",12686+ "CARGO_PKG_VERSION_PATCH": "33",
12694 "CARGO_PKG_VERSION_PRE": "",12687 "CARGO_PKG_VERSION_PRE": "",
12695 },12688 },
12696- features = [12689+ features = ["std"],
12697- "alloc",
12698- "std",
12699- ],
12700 visibility = [],12690 visibility = [],
12701 )12691 )
12702 12692
@@ -13042,6 +13032,7 @@ buildscript_run(
13042 "CARGO_PKG_VERSION_MINOR": "9",13032 "CARGO_PKG_VERSION_MINOR": "9",
13043 "CARGO_PKG_VERSION_PATCH": "1",13033 "CARGO_PKG_VERSION_PATCH": "1",
13044 "CARGO_PKG_VERSION_PRE": "",13034 "CARGO_PKG_VERSION_PRE": "",
13035+ "OPT_LEVEL": "2",
13045 },13036 },
13046 features = ["default"],13037 features = ["default"],
13047 version = "0.9.1",13038 version = "0.9.1",
@@ -13211,23 +13202,23 @@ cargo.rust_library(
13211 )13202 )
13212 13203
13213 http_archive(13204 http_archive(
13214- name = "moka-0.12.16.crate",13205+ name = "moka-0.12.15.crate",
13215- sha256 = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9",13206+ sha256 = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046",
13216- strip_prefix = "moka-0.12.16",13207+ strip_prefix = "moka-0.12.15",
13217- urls = ["https://static.crates.io/crates/moka/0.12.16/download"],13208+ urls = ["https://static.crates.io/crates/moka/0.12.15/download"],
13218 visibility = [],13209 visibility = [],
13219 )13210 )
13220 13211
13221 cargo.rust_library(13212 cargo.rust_library(
13222 name = "moka-0.12",13213 name = "moka-0.12",
13223- srcs = [":moka-0.12.16.crate"],13214+ srcs = [":moka-0.12.15.crate"],
13224 crate = "moka",13215 crate = "moka",
13225- crate_root = "moka-0.12.16.crate/src/lib.rs",13216+ crate_root = "moka-0.12.15.crate/src/lib.rs",
13226 edition = "2021",13217 edition = "2021",
13227 env = {13218 env = {
13228 "CARGO_BIN_NAME": "moka",13219 "CARGO_BIN_NAME": "moka",
13229 "CARGO_CRATE_NAME": "moka",13220 "CARGO_CRATE_NAME": "moka",
13230- "CARGO_MANIFEST_DIR": "moka-0.12.16.crate",13221+ "CARGO_MANIFEST_DIR": "moka-0.12.15.crate",
13231 "CARGO_PKG_AUTHORS": "",13222 "CARGO_PKG_AUTHORS": "",
13232 "CARGO_PKG_DESCRIPTION": "A fast and concurrent cache library inspired by Java Caffeine",13223 "CARGO_PKG_DESCRIPTION": "A fast and concurrent cache library inspired by Java Caffeine",
13233 "CARGO_PKG_HOMEPAGE": "",13224 "CARGO_PKG_HOMEPAGE": "",
@@ -13235,10 +13226,10 @@ cargo.rust_library(
13235 "CARGO_PKG_README": "README.md",13226 "CARGO_PKG_README": "README.md",
13236 "CARGO_PKG_REPOSITORY": "https://github.com/moka-rs/moka",13227 "CARGO_PKG_REPOSITORY": "https://github.com/moka-rs/moka",
13237 "CARGO_PKG_RUST_VERSION": "1.71.1",13228 "CARGO_PKG_RUST_VERSION": "1.71.1",
13238- "CARGO_PKG_VERSION": "0.12.16",13229+ "CARGO_PKG_VERSION": "0.12.15",
13239 "CARGO_PKG_VERSION_MAJOR": "0",13230 "CARGO_PKG_VERSION_MAJOR": "0",
13240 "CARGO_PKG_VERSION_MINOR": "12",13231 "CARGO_PKG_VERSION_MINOR": "12",
13241- "CARGO_PKG_VERSION_PATCH": "16",13232+ "CARGO_PKG_VERSION_PATCH": "15",
13242 "CARGO_PKG_VERSION_PRE": "",13233 "CARGO_PKG_VERSION_PRE": "",
13243 },13234 },
13244 features = [13235 features = [
@@ -13409,6 +13400,7 @@ buildscript_run(
13409 "CARGO_PKG_VERSION_MINOR": "1",13400 "CARGO_PKG_VERSION_MINOR": "1",
13410 "CARGO_PKG_VERSION_PATCH": "0",13401 "CARGO_PKG_VERSION_PATCH": "0",
13411 "CARGO_PKG_VERSION_PRE": "",13402 "CARGO_PKG_VERSION_PRE": "",
13403+ "OPT_LEVEL": "2",
13412 },13404 },
13413 features = [13405 features = [
13414 "capture-camera",13406 "capture-camera",
@@ -13760,6 +13752,7 @@ buildscript_run(
13760 "CARGO_PKG_VERSION_MINOR": "3",13752 "CARGO_PKG_VERSION_MINOR": "3",
13761 "CARGO_PKG_VERSION_PATCH": "2",13753 "CARGO_PKG_VERSION_PATCH": "2",
13762 "CARGO_PKG_VERSION_PRE": "",13754 "CARGO_PKG_VERSION_PRE": "",
13755+ "OPT_LEVEL": "2",
13763 },13756 },
13764 version = "0.3.2",13757 version = "0.3.2",
13765 )13758 )
@@ -13912,23 +13905,23 @@ cargo.rust_library(
13912 )13905 )
13913 13906
13914 http_archive(13907 http_archive(
13915- name = "netlink-packet-core-0.8.2.crate",13908+ name = "netlink-packet-core-0.8.1.crate",
13916- sha256 = "b897d7bd4f0af82e68d40d0344cf37e97f9c97ddf74a098de3e4da05e96ca395",13909+ sha256 = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4",
13917- strip_prefix = "netlink-packet-core-0.8.2",13910+ strip_prefix = "netlink-packet-core-0.8.1",
13918- urls = ["https://static.crates.io/crates/netlink-packet-core/0.8.2/download"],13911+ urls = ["https://static.crates.io/crates/netlink-packet-core/0.8.1/download"],
13919 visibility = [],13912 visibility = [],
13920 )13913 )
13921 13914
13922 cargo.rust_library(13915 cargo.rust_library(
13923 name = "netlink-packet-core-0.8",13916 name = "netlink-packet-core-0.8",
13924- srcs = [":netlink-packet-core-0.8.2.crate"],13917+ srcs = [":netlink-packet-core-0.8.1.crate"],
13925 crate = "netlink_packet_core",13918 crate = "netlink_packet_core",
13926- crate_root = "netlink-packet-core-0.8.2.crate/src/lib.rs",13919+ crate_root = "netlink-packet-core-0.8.1.crate/src/lib.rs",
13927 edition = "2021",13920 edition = "2021",
13928 env = {13921 env = {
13929 "CARGO_BIN_NAME": "netlink_packet_core",13922 "CARGO_BIN_NAME": "netlink_packet_core",
13930 "CARGO_CRATE_NAME": "netlink_packet_core",13923 "CARGO_CRATE_NAME": "netlink_packet_core",
13931- "CARGO_MANIFEST_DIR": "netlink-packet-core-0.8.2.crate",13924+ "CARGO_MANIFEST_DIR": "netlink-packet-core-0.8.1.crate",
13932 "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>",13925 "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>",
13933 "CARGO_PKG_DESCRIPTION": "netlink packet types",13926 "CARGO_PKG_DESCRIPTION": "netlink packet types",
13934 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-packet-core",13927 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-packet-core",
@@ -13936,10 +13929,10 @@ cargo.rust_library(
13936 "CARGO_PKG_README": "README.md",13929 "CARGO_PKG_README": "README.md",
13937 "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-packet-core",13930 "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-packet-core",
13938 "CARGO_PKG_RUST_VERSION": "",13931 "CARGO_PKG_RUST_VERSION": "",
13939- "CARGO_PKG_VERSION": "0.8.2",13932+ "CARGO_PKG_VERSION": "0.8.1",
13940 "CARGO_PKG_VERSION_MAJOR": "0",13933 "CARGO_PKG_VERSION_MAJOR": "0",
13941 "CARGO_PKG_VERSION_MINOR": "8",13934 "CARGO_PKG_VERSION_MINOR": "8",
13942- "CARGO_PKG_VERSION_PATCH": "2",13935+ "CARGO_PKG_VERSION_PATCH": "1",
13943 "CARGO_PKG_VERSION_PRE": "",13936 "CARGO_PKG_VERSION_PRE": "",
13944 },13937 },
13945 visibility = [],13938 visibility = [],
@@ -13987,23 +13980,23 @@ cargo.rust_library(
13987 )13980 )
13988 13981
13989 http_archive(13982 http_archive(
13990- name = "netlink-proto-0.12.2.crate",13983+ name = "netlink-proto-0.12.1.crate",
13991- sha256 = "93af8261786086024cd5e96e0a991dd65ced07bbf7c233a487bbc96b971d5539",13984+ sha256 = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6",
13992- strip_prefix = "netlink-proto-0.12.2",13985+ strip_prefix = "netlink-proto-0.12.1",
13993- urls = ["https://static.crates.io/crates/netlink-proto/0.12.2/download"],13986+ urls = ["https://static.crates.io/crates/netlink-proto/0.12.1/download"],
13994 visibility = [],13987 visibility = [],
13995 )13988 )
13996 13989
13997 cargo.rust_library(13990 cargo.rust_library(
13998 name = "netlink-proto-0.12",13991 name = "netlink-proto-0.12",
13999- srcs = [":netlink-proto-0.12.2.crate"],13992+ srcs = [":netlink-proto-0.12.1.crate"],
14000 crate = "netlink_proto",13993 crate = "netlink_proto",
14001- crate_root = "netlink-proto-0.12.2.crate/src/lib.rs",13994+ crate_root = "netlink-proto-0.12.1.crate/src/lib.rs",
14002 edition = "2021",13995 edition = "2021",
14003 env = {13996 env = {
14004 "CARGO_BIN_NAME": "netlink_proto",13997 "CARGO_BIN_NAME": "netlink_proto",
14005 "CARGO_CRATE_NAME": "netlink_proto",13998 "CARGO_CRATE_NAME": "netlink_proto",
14006- "CARGO_MANIFEST_DIR": "netlink-proto-0.12.2.crate",13999+ "CARGO_MANIFEST_DIR": "netlink-proto-0.12.1.crate",
14007 "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>",14000 "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>",
14008 "CARGO_PKG_DESCRIPTION": "async netlink protocol",14001 "CARGO_PKG_DESCRIPTION": "async netlink protocol",
14009 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-proto",14002 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-proto",
@@ -14011,10 +14004,10 @@ cargo.rust_library(
14011 "CARGO_PKG_README": "README.md",14004 "CARGO_PKG_README": "README.md",
14012 "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-proto",14005 "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-proto",
14013 "CARGO_PKG_RUST_VERSION": "1.75",14006 "CARGO_PKG_RUST_VERSION": "1.75",
14014- "CARGO_PKG_VERSION": "0.12.2",14007+ "CARGO_PKG_VERSION": "0.12.1",
14015 "CARGO_PKG_VERSION_MAJOR": "0",14008 "CARGO_PKG_VERSION_MAJOR": "0",
14016 "CARGO_PKG_VERSION_MINOR": "12",14009 "CARGO_PKG_VERSION_MINOR": "12",
14017- "CARGO_PKG_VERSION_PATCH": "2",14010+ "CARGO_PKG_VERSION_PATCH": "1",
14018 "CARGO_PKG_VERSION_PRE": "",14011 "CARGO_PKG_VERSION_PRE": "",
14019 },14012 },
14020 features = [14013 features = [
@@ -14204,6 +14197,7 @@ buildscript_run(
14204 "CARGO_PKG_VERSION_MINOR": "15",14197 "CARGO_PKG_VERSION_MINOR": "15",
14205 "CARGO_PKG_VERSION_PATCH": "0",14198 "CARGO_PKG_VERSION_PATCH": "0",
14206 "CARGO_PKG_VERSION_PRE": "",14199 "CARGO_PKG_VERSION_PRE": "",
14200+ "OPT_LEVEL": "2",
14207 },14201 },
14208 version = "0.15.0",14202 version = "0.15.0",
14209 )14203 )
@@ -14307,6 +14301,7 @@ buildscript_run(
14307 "CARGO_PKG_VERSION_MINOR": "28",14301 "CARGO_PKG_VERSION_MINOR": "28",
14308 "CARGO_PKG_VERSION_PATCH": "0",14302 "CARGO_PKG_VERSION_PATCH": "0",
14309 "CARGO_PKG_VERSION_PRE": "",14303 "CARGO_PKG_VERSION_PRE": "",
14304+ "OPT_LEVEL": "2",
14310 },14305 },
14311 features = [14306 features = [
14312 "default",14307 "default",
@@ -14412,6 +14407,7 @@ buildscript_run(
14412 "CARGO_PKG_VERSION_MINOR": "30",14407 "CARGO_PKG_VERSION_MINOR": "30",
14413 "CARGO_PKG_VERSION_PATCH": "1",14408 "CARGO_PKG_VERSION_PATCH": "1",
14414 "CARGO_PKG_VERSION_PRE": "",14409 "CARGO_PKG_VERSION_PRE": "",
14410+ "OPT_LEVEL": "2",
14415 },14411 },
14416 features = [14412 features = [
14417 "fs",14413 "fs",
@@ -14606,6 +14602,7 @@ buildscript_run(
14606 "CARGO_PKG_VERSION_MINOR": "17",14602 "CARGO_PKG_VERSION_MINOR": "17",
14607 "CARGO_PKG_VERSION_PATCH": "0",14603 "CARGO_PKG_VERSION_PATCH": "0",
14608 "CARGO_PKG_VERSION_PRE": "",14604 "CARGO_PKG_VERSION_PRE": "",
14605+ "OPT_LEVEL": "2",
14609 },14606 },
14610 features = [14607 features = [
14611 "aws-lc-rs",14608 "aws-lc-rs",
@@ -14759,6 +14756,7 @@ buildscript_run(
14759 "CARGO_PKG_VERSION_MINOR": "9",14756 "CARGO_PKG_VERSION_MINOR": "9",
14760 "CARGO_PKG_VERSION_PATCH": "0",14757 "CARGO_PKG_VERSION_PATCH": "0",
14761 "CARGO_PKG_VERSION_PRE": "",14758 "CARGO_PKG_VERSION_PRE": "",
14759+ "OPT_LEVEL": "2",
14762 },14760 },
14763 features = [14761 features = [
14764 "default",14762 "default",
@@ -15050,23 +15048,23 @@ cargo.rust_library(
15050 )15048 )
15051 15049
15052 http_archive(15050 http_archive(
15053- name = "num-integer-0.1.47.crate",15051+ name = "num-integer-0.1.46.crate",
15054- sha256 = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b",15052+ sha256 = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f",
15055- strip_prefix = "num-integer-0.1.47",15053+ strip_prefix = "num-integer-0.1.46",
15056- urls = ["https://static.crates.io/crates/num-integer/0.1.47/download"],15054+ urls = ["https://static.crates.io/crates/num-integer/0.1.46/download"],
15057 visibility = [],15055 visibility = [],
15058 )15056 )
15059 15057
15060 cargo.rust_library(15058 cargo.rust_library(
15061 name = "num-integer-0.1",15059 name = "num-integer-0.1",
15062- srcs = [":num-integer-0.1.47.crate"],15060+ srcs = [":num-integer-0.1.46.crate"],
15063 crate = "num_integer",15061 crate = "num_integer",
15064- crate_root = "num-integer-0.1.47.crate/src/lib.rs",15062+ crate_root = "num-integer-0.1.46.crate/src/lib.rs",
15065 edition = "2018",15063 edition = "2018",
15066 env = {15064 env = {
15067 "CARGO_BIN_NAME": "num_integer",15065 "CARGO_BIN_NAME": "num_integer",
15068 "CARGO_CRATE_NAME": "num_integer",15066 "CARGO_CRATE_NAME": "num_integer",
15069- "CARGO_MANIFEST_DIR": "num-integer-0.1.47.crate",15067+ "CARGO_MANIFEST_DIR": "num-integer-0.1.46.crate",
15070 "CARGO_PKG_AUTHORS": "The Rust Project Developers",15068 "CARGO_PKG_AUTHORS": "The Rust Project Developers",
15071 "CARGO_PKG_DESCRIPTION": "Integer traits and functions",15069 "CARGO_PKG_DESCRIPTION": "Integer traits and functions",
15072 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-num/num-integer",15070 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-num/num-integer",
@@ -15074,10 +15072,10 @@ cargo.rust_library(
15074 "CARGO_PKG_README": "README.md",15072 "CARGO_PKG_README": "README.md",
15075 "CARGO_PKG_REPOSITORY": "https://github.com/rust-num/num-integer",15073 "CARGO_PKG_REPOSITORY": "https://github.com/rust-num/num-integer",
15076 "CARGO_PKG_RUST_VERSION": "1.31",15074 "CARGO_PKG_RUST_VERSION": "1.31",
15077- "CARGO_PKG_VERSION": "0.1.47",15075+ "CARGO_PKG_VERSION": "0.1.46",
15078 "CARGO_PKG_VERSION_MAJOR": "0",15076 "CARGO_PKG_VERSION_MAJOR": "0",
15079 "CARGO_PKG_VERSION_MINOR": "1",15077 "CARGO_PKG_VERSION_MINOR": "1",
15080- "CARGO_PKG_VERSION_PATCH": "47",15078+ "CARGO_PKG_VERSION_PATCH": "46",
15081 "CARGO_PKG_VERSION_PRE": "",15079 "CARGO_PKG_VERSION_PRE": "",
15082 },15080 },
15083 features = [15081 features = [
@@ -15229,6 +15227,7 @@ buildscript_run(
15229 "CARGO_PKG_VERSION_MINOR": "2",15227 "CARGO_PKG_VERSION_MINOR": "2",
15230 "CARGO_PKG_VERSION_PATCH": "19",15228 "CARGO_PKG_VERSION_PATCH": "19",
15231 "CARGO_PKG_VERSION_PRE": "",15229 "CARGO_PKG_VERSION_PRE": "",
15230+ "OPT_LEVEL": "2",
15232 },15231 },
15233 features = [15232 features = [
15234 "default",15233 "default",
@@ -15488,6 +15487,7 @@ buildscript_run(
15488 "CARGO_PKG_VERSION_MINOR": "3",15487 "CARGO_PKG_VERSION_MINOR": "3",
15489 "CARGO_PKG_VERSION_PATCH": "5",15488 "CARGO_PKG_VERSION_PATCH": "5",
15490 "CARGO_PKG_VERSION_PRE": "",15489 "CARGO_PKG_VERSION_PRE": "",
15490+ "OPT_LEVEL": "2",
15491 },15491 },
15492 features = [15492 features = [
15493 "alloc",15493 "alloc",
@@ -15634,6 +15634,7 @@ buildscript_run(
15634 "CARGO_PKG_VERSION_MINOR": "6",15634 "CARGO_PKG_VERSION_MINOR": "6",
15635 "CARGO_PKG_VERSION_PATCH": "4",15635 "CARGO_PKG_VERSION_PATCH": "4",
15636 "CARGO_PKG_VERSION_PRE": "",15636 "CARGO_PKG_VERSION_PRE": "",
15637+ "OPT_LEVEL": "2",
15637 },15638 },
15638 features = [15639 features = [
15639 "alloc",15640 "alloc",
@@ -17289,6 +17290,7 @@ buildscript_run(
17289 "CARGO_PKG_VERSION_MINOR": "37",17290 "CARGO_PKG_VERSION_MINOR": "37",
17290 "CARGO_PKG_VERSION_PATCH": "3",17291 "CARGO_PKG_VERSION_PATCH": "3",
17291 "CARGO_PKG_VERSION_PRE": "",17292 "CARGO_PKG_VERSION_PRE": "",
17293+ "OPT_LEVEL": "2",
17292 },17294 },
17293 features = [17295 features = [
17294 "archive",17296 "archive",
@@ -17390,23 +17392,23 @@ alias(
17390 )17392 )
17391 17393
17392 http_archive(17394 http_archive(
17393- name = "openh264-0.9.8.crate",17395+ name = "openh264-0.9.7.crate",
17394- sha256 = "fcc9071a0b5f9c501ddd01066c2600d922cc799dc450a52975222bcda7755a08",17396+ sha256 = "e6b2b561d2103303e233779545da757ecd35bad82188d619a6d8901f3007e1ff",
17395- strip_prefix = "openh264-0.9.8",17397+ strip_prefix = "openh264-0.9.7",
17396- urls = ["https://static.crates.io/crates/openh264/0.9.8/download"],17398+ urls = ["https://static.crates.io/crates/openh264/0.9.7/download"],
17397 visibility = [],17399 visibility = [],
17398 )17400 )
17399 17401
17400 cargo.rust_library(17402 cargo.rust_library(
17401 name = "openh264-0.9",17403 name = "openh264-0.9",
17402- srcs = [":openh264-0.9.8.crate"],17404+ srcs = [":openh264-0.9.7.crate"],
17403 crate = "openh264",17405 crate = "openh264",
17404- crate_root = "openh264-0.9.8.crate/src/lib.rs",17406+ crate_root = "openh264-0.9.7.crate/src/lib.rs",
17405 edition = "2024",17407 edition = "2024",
17406 env = {17408 env = {
17407 "CARGO_BIN_NAME": "openh264",17409 "CARGO_BIN_NAME": "openh264",
17408 "CARGO_CRATE_NAME": "openh264",17410 "CARGO_CRATE_NAME": "openh264",
17409- "CARGO_MANIFEST_DIR": "openh264-0.9.8.crate",17411+ "CARGO_MANIFEST_DIR": "openh264-0.9.7.crate",
17410 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",17412 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",
17411 "CARGO_PKG_DESCRIPTION": "Idiomatic bindings for OpenH264.",17413 "CARGO_PKG_DESCRIPTION": "Idiomatic bindings for OpenH264.",
17412 "CARGO_PKG_HOMEPAGE": "",17414 "CARGO_PKG_HOMEPAGE": "",
@@ -17414,10 +17416,10 @@ cargo.rust_library(
17414 "CARGO_PKG_README": "README.md",17416 "CARGO_PKG_README": "README.md",
17415 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",17417 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",
17416 "CARGO_PKG_RUST_VERSION": "1.85",17418 "CARGO_PKG_RUST_VERSION": "1.85",
17417- "CARGO_PKG_VERSION": "0.9.8",17419+ "CARGO_PKG_VERSION": "0.9.7",
17418 "CARGO_PKG_VERSION_MAJOR": "0",17420 "CARGO_PKG_VERSION_MAJOR": "0",
17419 "CARGO_PKG_VERSION_MINOR": "9",17421 "CARGO_PKG_VERSION_MINOR": "9",
17420- "CARGO_PKG_VERSION_PATCH": "8",17422+ "CARGO_PKG_VERSION_PATCH": "7",
17421 "CARGO_PKG_VERSION_PRE": "",17423 "CARGO_PKG_VERSION_PRE": "",
17422 },17424 },
17423 features = [17425 features = [
@@ -17432,23 +17434,23 @@ cargo.rust_library(
17432 )17434 )
17433 17435
17434 http_archive(17436 http_archive(
17435- name = "openh264-sys2-0.9.8.crate",17437+ name = "openh264-sys2-0.9.7.crate",
17436- sha256 = "6ada29a4cadc13d4d326737af87c13e224210d7d99fe47594e9f3f9b0102fd70",17438+ sha256 = "75a8867e48183bbd9147380227448c065fe456eb30b0ebc68929809c36c30985",
17437- strip_prefix = "openh264-sys2-0.9.8",17439+ strip_prefix = "openh264-sys2-0.9.7",
17438- urls = ["https://static.crates.io/crates/openh264-sys2/0.9.8/download"],17440+ urls = ["https://static.crates.io/crates/openh264-sys2/0.9.7/download"],
17439 visibility = [],17441 visibility = [],
17440 )17442 )
17441 17443
17442 cargo.rust_library(17444 cargo.rust_library(
17443 name = "openh264-sys2-0.9",17445 name = "openh264-sys2-0.9",
17444- srcs = [":openh264-sys2-0.9.8.crate"],17446+ srcs = [":openh264-sys2-0.9.7.crate"],
17445 crate = "openh264_sys2",17447 crate = "openh264_sys2",
17446- crate_root = "openh264-sys2-0.9.8.crate/src/lib.rs",17448+ crate_root = "openh264-sys2-0.9.7.crate/src/lib.rs",
17447 edition = "2024",17449 edition = "2024",
17448 env = {17450 env = {
17449 "CARGO_BIN_NAME": "openh264_sys2",17451 "CARGO_BIN_NAME": "openh264_sys2",
17450 "CARGO_CRATE_NAME": "openh264_sys2",17452 "CARGO_CRATE_NAME": "openh264_sys2",
17451- "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.8.crate",17453+ "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.7.crate",
17452 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",17454 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",
17453 "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.",17455 "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.",
17454 "CARGO_PKG_HOMEPAGE": "",17456 "CARGO_PKG_HOMEPAGE": "",
@@ -17456,10 +17458,10 @@ cargo.rust_library(
17456 "CARGO_PKG_README": "README.md",17458 "CARGO_PKG_README": "README.md",
17457 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",17459 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",
17458 "CARGO_PKG_RUST_VERSION": "1.85",17460 "CARGO_PKG_RUST_VERSION": "1.85",
17459- "CARGO_PKG_VERSION": "0.9.8",17461+ "CARGO_PKG_VERSION": "0.9.7",
17460 "CARGO_PKG_VERSION_MAJOR": "0",17462 "CARGO_PKG_VERSION_MAJOR": "0",
17461 "CARGO_PKG_VERSION_MINOR": "9",17463 "CARGO_PKG_VERSION_MINOR": "9",
17462- "CARGO_PKG_VERSION_PATCH": "8",17464+ "CARGO_PKG_VERSION_PATCH": "7",
17463 "CARGO_PKG_VERSION_PRE": "",17465 "CARGO_PKG_VERSION_PRE": "",
17464 "OUT_DIR": "$(location :openh264-sys2-0.9-build-script-run[out_dir])",17466 "OUT_DIR": "$(location :openh264-sys2-0.9-build-script-run[out_dir])",
17465 },17467 },
@@ -17470,14 +17472,14 @@ cargo.rust_library(
17470 17472
17471 cargo.rust_binary(17473 cargo.rust_binary(
17472 name = "openh264-sys2-0.9-build-script-build",17474 name = "openh264-sys2-0.9-build-script-build",
17473- srcs = [":openh264-sys2-0.9.8.crate"],17475+ srcs = [":openh264-sys2-0.9.7.crate"],
17474 crate = "build_script_build",17476 crate = "build_script_build",
17475- crate_root = "openh264-sys2-0.9.8.crate/build.rs",17477+ crate_root = "openh264-sys2-0.9.7.crate/build.rs",
17476 edition = "2024",17478 edition = "2024",
17477 env = {17479 env = {
17478 "CARGO_BIN_NAME": "build-script-build",17480 "CARGO_BIN_NAME": "build-script-build",
17479 "CARGO_CRATE_NAME": "build_script_build",17481 "CARGO_CRATE_NAME": "build_script_build",
17480- "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.8.crate",17482+ "CARGO_MANIFEST_DIR": "openh264-sys2-0.9.7.crate",
17481 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",17483 "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>",
17482 "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.",17484 "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.",
17483 "CARGO_PKG_HOMEPAGE": "",17485 "CARGO_PKG_HOMEPAGE": "",
@@ -17485,10 +17487,10 @@ cargo.rust_binary(
17485 "CARGO_PKG_README": "README.md",17487 "CARGO_PKG_README": "README.md",
17486 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",17488 "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs",
17487 "CARGO_PKG_RUST_VERSION": "1.85",17489 "CARGO_PKG_RUST_VERSION": "1.85",
17488- "CARGO_PKG_VERSION": "0.9.8",17490+ "CARGO_PKG_VERSION": "0.9.7",
17489 "CARGO_PKG_VERSION_MAJOR": "0",17491 "CARGO_PKG_VERSION_MAJOR": "0",
17490 "CARGO_PKG_VERSION_MINOR": "9",17492 "CARGO_PKG_VERSION_MINOR": "9",
17491- "CARGO_PKG_VERSION_PATCH": "8",17493+ "CARGO_PKG_VERSION_PATCH": "7",
17492 "CARGO_PKG_VERSION_PRE": "",17494 "CARGO_PKG_VERSION_PRE": "",
17493 },17495 },
17494 features = ["source"],17496 features = ["source"],
@@ -17513,11 +17515,12 @@ buildscript_run(
17513 "CARGO_PKG_RUST_VERSION": "1.85",17515 "CARGO_PKG_RUST_VERSION": "1.85",
17514 "CARGO_PKG_VERSION_MAJOR": "0",17516 "CARGO_PKG_VERSION_MAJOR": "0",
17515 "CARGO_PKG_VERSION_MINOR": "9",17517 "CARGO_PKG_VERSION_MINOR": "9",
17516- "CARGO_PKG_VERSION_PATCH": "8",17518+ "CARGO_PKG_VERSION_PATCH": "7",
17517 "CARGO_PKG_VERSION_PRE": "",17519 "CARGO_PKG_VERSION_PRE": "",
17520+ "OPT_LEVEL": "2",
17518 },17521 },
17519 features = ["source"],17522 features = ["source"],
17520- version = "0.9.8",17523+ version = "0.9.7",
17521 )17524 )
17522 17525
17523 http_archive(17526 http_archive(
@@ -17599,23 +17602,23 @@ cargo.rust_library(
17599 )17602 )
17600 17603
17601 http_archive(17604 http_archive(
17602- name = "papaya-0.2.5.crate",17605+ name = "papaya-0.2.4.crate",
17603- sha256 = "da2442474a9404698c42509b8967f437249dbc7b50493e83020333d3943ec0ae",17606+ sha256 = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7",
17604- strip_prefix = "papaya-0.2.5",17607+ strip_prefix = "papaya-0.2.4",
17605- urls = ["https://static.crates.io/crates/papaya/0.2.5/download"],17608+ urls = ["https://static.crates.io/crates/papaya/0.2.4/download"],
17606 visibility = [],17609 visibility = [],
17607 )17610 )
17608 17611
17609 cargo.rust_library(17612 cargo.rust_library(
17610 name = "papaya-0.2",17613 name = "papaya-0.2",
17611- srcs = [":papaya-0.2.5.crate"],17614+ srcs = [":papaya-0.2.4.crate"],
17612 crate = "papaya",17615 crate = "papaya",
17613- crate_root = "papaya-0.2.5.crate/src/lib.rs",17616+ crate_root = "papaya-0.2.4.crate/src/lib.rs",
17614 edition = "2021",17617 edition = "2021",
17615 env = {17618 env = {
17616 "CARGO_BIN_NAME": "papaya",17619 "CARGO_BIN_NAME": "papaya",
17617 "CARGO_CRATE_NAME": "papaya",17620 "CARGO_CRATE_NAME": "papaya",
17618- "CARGO_MANIFEST_DIR": "papaya-0.2.5.crate",17621+ "CARGO_MANIFEST_DIR": "papaya-0.2.4.crate",
17619 "CARGO_PKG_AUTHORS": "Ibraheem Ahmed <ibraheem@ibraheem.ca>",17622 "CARGO_PKG_AUTHORS": "Ibraheem Ahmed <ibraheem@ibraheem.ca>",
17620 "CARGO_PKG_DESCRIPTION": "A fast and ergonomic concurrent hash-table for read-heavy workloads.",17623 "CARGO_PKG_DESCRIPTION": "A fast and ergonomic concurrent hash-table for read-heavy workloads.",
17621 "CARGO_PKG_HOMEPAGE": "",17624 "CARGO_PKG_HOMEPAGE": "",
@@ -17623,10 +17626,10 @@ cargo.rust_library(
17623 "CARGO_PKG_README": "README.md",17626 "CARGO_PKG_README": "README.md",
17624 "CARGO_PKG_REPOSITORY": "https://github.com/ibraheemdev/papaya",17627 "CARGO_PKG_REPOSITORY": "https://github.com/ibraheemdev/papaya",
17625 "CARGO_PKG_RUST_VERSION": "1.72.0",17628 "CARGO_PKG_RUST_VERSION": "1.72.0",
17626- "CARGO_PKG_VERSION": "0.2.5",17629+ "CARGO_PKG_VERSION": "0.2.4",
17627 "CARGO_PKG_VERSION_MAJOR": "0",17630 "CARGO_PKG_VERSION_MAJOR": "0",
17628 "CARGO_PKG_VERSION_MINOR": "2",17631 "CARGO_PKG_VERSION_MINOR": "2",
17629- "CARGO_PKG_VERSION_PATCH": "5",17632+ "CARGO_PKG_VERSION_PATCH": "4",
17630 "CARGO_PKG_VERSION_PRE": "",17633 "CARGO_PKG_VERSION_PRE": "",
17631 },17634 },
17632 visibility = [],17635 visibility = [],
@@ -17806,6 +17809,7 @@ buildscript_run(
17806 "CARGO_PKG_VERSION_MINOR": "9",17809 "CARGO_PKG_VERSION_MINOR": "9",
17807 "CARGO_PKG_VERSION_PATCH": "12",17810 "CARGO_PKG_VERSION_PATCH": "12",
17808 "CARGO_PKG_VERSION_PRE": "",17811 "CARGO_PKG_VERSION_PRE": "",
17812+ "OPT_LEVEL": "2",
17809 },17813 },
17810 features = [17814 features = [
17811 "backtrace",17815 "backtrace",
@@ -17934,6 +17938,7 @@ buildscript_run(
17934 "CARGO_PKG_VERSION_MINOR": "0",17938 "CARGO_PKG_VERSION_MINOR": "0",
17935 "CARGO_PKG_VERSION_PATCH": "15",17939 "CARGO_PKG_VERSION_PATCH": "15",
17936 "CARGO_PKG_VERSION_PRE": "",17940 "CARGO_PKG_VERSION_PRE": "",
17941+ "OPT_LEVEL": "2",
17937 },17942 },
17938 version = "1.0.15",17943 version = "1.0.15",
17939 )17944 )
@@ -18312,6 +18317,7 @@ buildscript_run(
18312 "CARGO_PKG_VERSION_MINOR": "0",18317 "CARGO_PKG_VERSION_MINOR": "0",
18313 "CARGO_PKG_VERSION_PATCH": "3",18318 "CARGO_PKG_VERSION_PATCH": "3",
18314 "CARGO_PKG_VERSION_PRE": "",18319 "CARGO_PKG_VERSION_PRE": "",
18320+ "OPT_LEVEL": "2",
18315 },18321 },
18316 features = [18322 features = [
18317 "keys",18323 "keys",
@@ -18321,23 +18327,23 @@ buildscript_run(
18321 )18327 )
18322 18328
18323 http_archive(18329 http_archive(
18324- name = "pkcs8-0.11.0.crate",18330+ name = "pkcs8-0.11.0-rc.11.crate",
18325- sha256 = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7",18331+ sha256 = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577",
18326- strip_prefix = "pkcs8-0.11.0",18332+ strip_prefix = "pkcs8-0.11.0-rc.11",
18327- urls = ["https://static.crates.io/crates/pkcs8/0.11.0/download"],18333+ urls = ["https://static.crates.io/crates/pkcs8/0.11.0-rc.11/download"],
18328 visibility = [],18334 visibility = [],
18329 )18335 )
18330 18336
18331 cargo.rust_library(18337 cargo.rust_library(
18332 name = "pkcs8-0.11",18338 name = "pkcs8-0.11",
18333- srcs = [":pkcs8-0.11.0.crate"],18339+ srcs = [":pkcs8-0.11.0-rc.11.crate"],
18334 crate = "pkcs8",18340 crate = "pkcs8",
18335- crate_root = "pkcs8-0.11.0.crate/src/lib.rs",18341+ crate_root = "pkcs8-0.11.0-rc.11.crate/src/lib.rs",
18336 edition = "2024",18342 edition = "2024",
18337 env = {18343 env = {
18338 "CARGO_BIN_NAME": "pkcs8",18344 "CARGO_BIN_NAME": "pkcs8",
18339 "CARGO_CRATE_NAME": "pkcs8",18345 "CARGO_CRATE_NAME": "pkcs8",
18340- "CARGO_MANIFEST_DIR": "pkcs8-0.11.0.crate",18346+ "CARGO_MANIFEST_DIR": "pkcs8-0.11.0-rc.11.crate",
18341 "CARGO_PKG_AUTHORS": "RustCrypto Developers",18347 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
18342 "CARGO_PKG_DESCRIPTION": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n",18348 "CARGO_PKG_DESCRIPTION": "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n",
18343 "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/pkcs8",18349 "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/pkcs8",
@@ -18345,11 +18351,11 @@ cargo.rust_library(
18345 "CARGO_PKG_README": "README.md",18351 "CARGO_PKG_README": "README.md",
18346 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",18352 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",
18347 "CARGO_PKG_RUST_VERSION": "1.85",18353 "CARGO_PKG_RUST_VERSION": "1.85",
18348- "CARGO_PKG_VERSION": "0.11.0",18354+ "CARGO_PKG_VERSION": "0.11.0-rc.11",
18349 "CARGO_PKG_VERSION_MAJOR": "0",18355 "CARGO_PKG_VERSION_MAJOR": "0",
18350 "CARGO_PKG_VERSION_MINOR": "11",18356 "CARGO_PKG_VERSION_MINOR": "11",
18351 "CARGO_PKG_VERSION_PATCH": "0",18357 "CARGO_PKG_VERSION_PATCH": "0",
18352- "CARGO_PKG_VERSION_PRE": "",18358+ "CARGO_PKG_VERSION_PRE": "rc.11",
18353 },18359 },
18354 features = [18360 features = [
18355 "alloc",18361 "alloc",
@@ -18363,34 +18369,34 @@ cargo.rust_library(
18363 )18369 )
18364 18370
18365 http_archive(18371 http_archive(
18366- name = "pkg-config-0.3.34.crate",18372+ name = "pkg-config-0.3.33.crate",
18367- sha256 = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548",18373+ sha256 = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e",
18368- strip_prefix = "pkg-config-0.3.34",18374+ strip_prefix = "pkg-config-0.3.33",
18369- urls = ["https://static.crates.io/crates/pkg-config/0.3.34/download"],18375+ urls = ["https://static.crates.io/crates/pkg-config/0.3.33/download"],
18370 visibility = [],18376 visibility = [],
18371 )18377 )
18372 18378
18373 cargo.rust_library(18379 cargo.rust_library(
18374 name = "pkg-config-0.3",18380 name = "pkg-config-0.3",
18375- srcs = [":pkg-config-0.3.34.crate"],18381+ srcs = [":pkg-config-0.3.33.crate"],
18376 crate = "pkg_config",18382 crate = "pkg_config",
18377- crate_root = "pkg-config-0.3.34.crate/src/lib.rs",18383+ crate_root = "pkg-config-0.3.33.crate/src/lib.rs",
18378- edition = "2021",18384+ edition = "2018",
18379 env = {18385 env = {
18380 "CARGO_BIN_NAME": "pkg_config",18386 "CARGO_BIN_NAME": "pkg_config",
18381 "CARGO_CRATE_NAME": "pkg_config",18387 "CARGO_CRATE_NAME": "pkg_config",
18382- "CARGO_MANIFEST_DIR": "pkg-config-0.3.34.crate",18388+ "CARGO_MANIFEST_DIR": "pkg-config-0.3.33.crate",
18383 "CARGO_PKG_AUTHORS": "Alex Crichton <alex@alexcrichton.com>",18389 "CARGO_PKG_AUTHORS": "Alex Crichton <alex@alexcrichton.com>",
18384 "CARGO_PKG_DESCRIPTION": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n",18390 "CARGO_PKG_DESCRIPTION": "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n",
18385 "CARGO_PKG_HOMEPAGE": "",18391 "CARGO_PKG_HOMEPAGE": "",
18386 "CARGO_PKG_NAME": "pkg-config",18392 "CARGO_PKG_NAME": "pkg-config",
18387 "CARGO_PKG_README": "README.md",18393 "CARGO_PKG_README": "README.md",
18388 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/pkg-config-rs",18394 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/pkg-config-rs",
18389- "CARGO_PKG_RUST_VERSION": "1.63",18395+ "CARGO_PKG_RUST_VERSION": "1.31",
18390- "CARGO_PKG_VERSION": "0.3.34",18396+ "CARGO_PKG_VERSION": "0.3.33",
18391 "CARGO_PKG_VERSION_MAJOR": "0",18397 "CARGO_PKG_VERSION_MAJOR": "0",
18392 "CARGO_PKG_VERSION_MINOR": "3",18398 "CARGO_PKG_VERSION_MINOR": "3",
18393- "CARGO_PKG_VERSION_PATCH": "34",18399+ "CARGO_PKG_VERSION_PATCH": "33",
18394 "CARGO_PKG_VERSION_PRE": "",18400 "CARGO_PKG_VERSION_PRE": "",
18395 },18401 },
18396 visibility = [],18402 visibility = [],
@@ -18608,23 +18614,23 @@ cargo.rust_library(
18608 )18614 )
18609 18615
18610 http_archive(18616 http_archive(
18611- name = "portable-atomic-1.15.0.crate",18617+ name = "portable-atomic-1.14.0.crate",
18612- sha256 = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85",18618+ sha256 = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3",
18613- strip_prefix = "portable-atomic-1.15.0",18619+ strip_prefix = "portable-atomic-1.14.0",
18614- urls = ["https://static.crates.io/crates/portable-atomic/1.15.0/download"],18620+ urls = ["https://static.crates.io/crates/portable-atomic/1.14.0/download"],
18615 visibility = [],18621 visibility = [],
18616 )18622 )
18617 18623
18618 cargo.rust_library(18624 cargo.rust_library(
18619 name = "portable-atomic-1",18625 name = "portable-atomic-1",
18620- srcs = [":portable-atomic-1.15.0.crate"],18626+ srcs = [":portable-atomic-1.14.0.crate"],
18621 crate = "portable_atomic",18627 crate = "portable_atomic",
18622- crate_root = "portable-atomic-1.15.0.crate/src/lib.rs",18628+ crate_root = "portable-atomic-1.14.0.crate/src/lib.rs",
18623 edition = "2018",18629 edition = "2018",
18624 env = {18630 env = {
18625 "CARGO_BIN_NAME": "portable_atomic",18631 "CARGO_BIN_NAME": "portable_atomic",
18626 "CARGO_CRATE_NAME": "portable_atomic",18632 "CARGO_CRATE_NAME": "portable_atomic",
18627- "CARGO_MANIFEST_DIR": "portable-atomic-1.15.0.crate",18633+ "CARGO_MANIFEST_DIR": "portable-atomic-1.14.0.crate",
18628 "CARGO_PKG_AUTHORS": "",18634 "CARGO_PKG_AUTHORS": "",
18629 "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n",18635 "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n",
18630 "CARGO_PKG_HOMEPAGE": "",18636 "CARGO_PKG_HOMEPAGE": "",
@@ -18632,9 +18638,9 @@ cargo.rust_library(
18632 "CARGO_PKG_README": "README.md",18638 "CARGO_PKG_README": "README.md",
18633 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",18639 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",
18634 "CARGO_PKG_RUST_VERSION": "1.34",18640 "CARGO_PKG_RUST_VERSION": "1.34",
18635- "CARGO_PKG_VERSION": "1.15.0",18641+ "CARGO_PKG_VERSION": "1.14.0",
18636 "CARGO_PKG_VERSION_MAJOR": "1",18642 "CARGO_PKG_VERSION_MAJOR": "1",
18637- "CARGO_PKG_VERSION_MINOR": "15",18643+ "CARGO_PKG_VERSION_MINOR": "14",
18638 "CARGO_PKG_VERSION_PATCH": "0",18644 "CARGO_PKG_VERSION_PATCH": "0",
18639 "CARGO_PKG_VERSION_PRE": "",18645 "CARGO_PKG_VERSION_PRE": "",
18640 "OUT_DIR": "$(location :portable-atomic-1-build-script-run[out_dir])",18646 "OUT_DIR": "$(location :portable-atomic-1-build-script-run[out_dir])",
@@ -18652,14 +18658,14 @@ cargo.rust_library(
18652 18658
18653 cargo.rust_binary(18659 cargo.rust_binary(
18654 name = "portable-atomic-1-build-script-build",18660 name = "portable-atomic-1-build-script-build",
18655- srcs = [":portable-atomic-1.15.0.crate"],18661+ srcs = [":portable-atomic-1.14.0.crate"],
18656 crate = "build_script_build",18662 crate = "build_script_build",
18657- crate_root = "portable-atomic-1.15.0.crate/build.rs",18663+ crate_root = "portable-atomic-1.14.0.crate/build.rs",
18658 edition = "2018",18664 edition = "2018",
18659 env = {18665 env = {
18660 "CARGO_BIN_NAME": "build-script-build",18666 "CARGO_BIN_NAME": "build-script-build",
18661 "CARGO_CRATE_NAME": "build_script_build",18667 "CARGO_CRATE_NAME": "build_script_build",
18662- "CARGO_MANIFEST_DIR": "portable-atomic-1.15.0.crate",18668+ "CARGO_MANIFEST_DIR": "portable-atomic-1.14.0.crate",
18663 "CARGO_PKG_AUTHORS": "",18669 "CARGO_PKG_AUTHORS": "",
18664 "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n",18670 "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n",
18665 "CARGO_PKG_HOMEPAGE": "",18671 "CARGO_PKG_HOMEPAGE": "",
@@ -18667,9 +18673,9 @@ cargo.rust_binary(
18667 "CARGO_PKG_README": "README.md",18673 "CARGO_PKG_README": "README.md",
18668 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",18674 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",
18669 "CARGO_PKG_RUST_VERSION": "1.34",18675 "CARGO_PKG_RUST_VERSION": "1.34",
18670- "CARGO_PKG_VERSION": "1.15.0",18676+ "CARGO_PKG_VERSION": "1.14.0",
18671 "CARGO_PKG_VERSION_MAJOR": "1",18677 "CARGO_PKG_VERSION_MAJOR": "1",
18672- "CARGO_PKG_VERSION_MINOR": "15",18678+ "CARGO_PKG_VERSION_MINOR": "14",
18673 "CARGO_PKG_VERSION_PATCH": "0",18679 "CARGO_PKG_VERSION_PATCH": "0",
18674 "CARGO_PKG_VERSION_PRE": "",18680 "CARGO_PKG_VERSION_PRE": "",
18675 },18681 },
@@ -18694,9 +18700,10 @@ buildscript_run(
18694 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",18700 "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic",
18695 "CARGO_PKG_RUST_VERSION": "1.34",18701 "CARGO_PKG_RUST_VERSION": "1.34",
18696 "CARGO_PKG_VERSION_MAJOR": "1",18702 "CARGO_PKG_VERSION_MAJOR": "1",
18697- "CARGO_PKG_VERSION_MINOR": "15",18703+ "CARGO_PKG_VERSION_MINOR": "14",
18698 "CARGO_PKG_VERSION_PATCH": "0",18704 "CARGO_PKG_VERSION_PATCH": "0",
18699 "CARGO_PKG_VERSION_PRE": "",18705 "CARGO_PKG_VERSION_PRE": "",
18706+ "OPT_LEVEL": "2",
18700 },18707 },
18701 features = [18708 features = [
18702 "default",18709 "default",
@@ -18704,7 +18711,7 @@ buildscript_run(
18704 "serde",18711 "serde",
18705 "std",18712 "std",
18706 ],18713 ],
18707- version = "1.15.0",18714+ version = "1.14.0",
18708 )18715 )
18709 18716
18710 http_archive(18717 http_archive(
@@ -18856,23 +18863,23 @@ cargo.rust_library(
18856 )18863 )
18857 18864
18858 http_archive(18865 http_archive(
18859- name = "potential_utf-0.1.6.crate",18866+ name = "potential_utf-0.1.5.crate",
18860- sha256 = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661",18867+ sha256 = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564",
18861- strip_prefix = "potential_utf-0.1.6",18868+ strip_prefix = "potential_utf-0.1.5",
18862- urls = ["https://static.crates.io/crates/potential_utf/0.1.6/download"],18869+ urls = ["https://static.crates.io/crates/potential_utf/0.1.5/download"],
18863 visibility = [],18870 visibility = [],
18864 )18871 )
18865 18872
18866 cargo.rust_library(18873 cargo.rust_library(
18867 name = "potential_utf-0.1",18874 name = "potential_utf-0.1",
18868- srcs = [":potential_utf-0.1.6.crate"],18875+ srcs = [":potential_utf-0.1.5.crate"],
18869 crate = "potential_utf",18876 crate = "potential_utf",
18870- crate_root = "potential_utf-0.1.6.crate/src/lib.rs",18877+ crate_root = "potential_utf-0.1.5.crate/src/lib.rs",
18871 edition = "2021",18878 edition = "2021",
18872 env = {18879 env = {
18873 "CARGO_BIN_NAME": "potential_utf",18880 "CARGO_BIN_NAME": "potential_utf",
18874 "CARGO_CRATE_NAME": "potential_utf",18881 "CARGO_CRATE_NAME": "potential_utf",
18875- "CARGO_MANIFEST_DIR": "potential_utf-0.1.6.crate",18882+ "CARGO_MANIFEST_DIR": "potential_utf-0.1.5.crate",
18876 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",18883 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
18877 "CARGO_PKG_DESCRIPTION": "Unvalidated string and character types",18884 "CARGO_PKG_DESCRIPTION": "Unvalidated string and character types",
18878 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",18885 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
@@ -18880,10 +18887,10 @@ cargo.rust_library(
18880 "CARGO_PKG_README": "README.md",18887 "CARGO_PKG_README": "README.md",
18881 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",18888 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
18882 "CARGO_PKG_RUST_VERSION": "1.82",18889 "CARGO_PKG_RUST_VERSION": "1.82",
18883- "CARGO_PKG_VERSION": "0.1.6",18890+ "CARGO_PKG_VERSION": "0.1.5",
18884 "CARGO_PKG_VERSION_MAJOR": "0",18891 "CARGO_PKG_VERSION_MAJOR": "0",
18885 "CARGO_PKG_VERSION_MINOR": "1",18892 "CARGO_PKG_VERSION_MINOR": "1",
18886- "CARGO_PKG_VERSION_PATCH": "6",18893+ "CARGO_PKG_VERSION_PATCH": "5",
18887 "CARGO_PKG_VERSION_PRE": "",18894 "CARGO_PKG_VERSION_PRE": "",
18888 },18895 },
18889 features = ["zerovec"],18896 features = ["zerovec"],
@@ -19048,6 +19055,7 @@ buildscript_run(
19048 "CARGO_PKG_VERSION_MINOR": "2",19055 "CARGO_PKG_VERSION_MINOR": "2",
19049 "CARGO_PKG_VERSION_PATCH": "37",19056 "CARGO_PKG_VERSION_PATCH": "37",
19050 "CARGO_PKG_VERSION_PRE": "",19057 "CARGO_PKG_VERSION_PRE": "",
19058+ "OPT_LEVEL": "2",
19051 },19059 },
19052 features = ["verbatim"],19060 features = ["verbatim"],
19053 version = "0.2.37",19061 version = "0.2.37",
@@ -19209,6 +19217,7 @@ buildscript_run(
19209 "CARGO_PKG_VERSION_MINOR": "0",19217 "CARGO_PKG_VERSION_MINOR": "0",
19210 "CARGO_PKG_VERSION_PATCH": "107",19218 "CARGO_PKG_VERSION_PATCH": "107",
19211 "CARGO_PKG_VERSION_PRE": "",19219 "CARGO_PKG_VERSION_PRE": "",
19220+ "OPT_LEVEL": "2",
19212 },19221 },
19213 features = [19222 features = [
19214 "default",19223 "default",
@@ -19493,6 +19502,7 @@ buildscript_run(
19493 "CARGO_PKG_VERSION_MINOR": "0",19502 "CARGO_PKG_VERSION_MINOR": "0",
19494 "CARGO_PKG_VERSION_PATCH": "47",19503 "CARGO_PKG_VERSION_PATCH": "47",
19495 "CARGO_PKG_VERSION_PRE": "",19504 "CARGO_PKG_VERSION_PRE": "",
19505+ "OPT_LEVEL": "2",
19496 },19506 },
19497 features = [19507 features = [
19498 "default",19508 "default",
@@ -19508,23 +19518,23 @@ alias(
19508 )19518 )
19509 19519
19510 http_archive(19520 http_archive(
19511- name = "rand-0.8.8.crate",19521+ name = "rand-0.8.7.crate",
19512- sha256 = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c",19522+ sha256 = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a",
19513- strip_prefix = "rand-0.8.8",19523+ strip_prefix = "rand-0.8.7",
19514- urls = ["https://static.crates.io/crates/rand/0.8.8/download"],19524+ urls = ["https://static.crates.io/crates/rand/0.8.7/download"],
19515 visibility = [],19525 visibility = [],
19516 )19526 )
19517 19527
19518 cargo.rust_library(19528 cargo.rust_library(
19519 name = "rand-0.8",19529 name = "rand-0.8",
19520- srcs = [":rand-0.8.8.crate"],19530+ srcs = [":rand-0.8.7.crate"],
19521 crate = "rand",19531 crate = "rand",
19522- crate_root = "rand-0.8.8.crate/src/lib.rs",19532+ crate_root = "rand-0.8.7.crate/src/lib.rs",
19523 edition = "2018",19533 edition = "2018",
19524 env = {19534 env = {
19525 "CARGO_BIN_NAME": "rand",19535 "CARGO_BIN_NAME": "rand",
19526 "CARGO_CRATE_NAME": "rand",19536 "CARGO_CRATE_NAME": "rand",
19527- "CARGO_MANIFEST_DIR": "rand-0.8.8.crate",19537+ "CARGO_MANIFEST_DIR": "rand-0.8.7.crate",
19528 "CARGO_PKG_AUTHORS": "The Rand Project Developers:The Rust Project Developers",19538 "CARGO_PKG_AUTHORS": "The Rand Project Developers:The Rust Project Developers",
19529 "CARGO_PKG_DESCRIPTION": "Random number generators and other randomness functionality.\n",19539 "CARGO_PKG_DESCRIPTION": "Random number generators and other randomness functionality.\n",
19530 "CARGO_PKG_HOMEPAGE": "https://rust-random.github.io/book",19540 "CARGO_PKG_HOMEPAGE": "https://rust-random.github.io/book",
@@ -19532,10 +19542,10 @@ cargo.rust_library(
19532 "CARGO_PKG_README": "README.md",19542 "CARGO_PKG_README": "README.md",
19533 "CARGO_PKG_REPOSITORY": "https://github.com/rust-random/rand",19543 "CARGO_PKG_REPOSITORY": "https://github.com/rust-random/rand",
19534 "CARGO_PKG_RUST_VERSION": "",19544 "CARGO_PKG_RUST_VERSION": "",
19535- "CARGO_PKG_VERSION": "0.8.8",19545+ "CARGO_PKG_VERSION": "0.8.7",
19536 "CARGO_PKG_VERSION_MAJOR": "0",19546 "CARGO_PKG_VERSION_MAJOR": "0",
19537 "CARGO_PKG_VERSION_MINOR": "8",19547 "CARGO_PKG_VERSION_MINOR": "8",
19538- "CARGO_PKG_VERSION_PATCH": "8",19548+ "CARGO_PKG_VERSION_PATCH": "7",
19539 "CARGO_PKG_VERSION_PRE": "",19549 "CARGO_PKG_VERSION_PRE": "",
19540 },19550 },
19541 features = [19551 features = [
@@ -19998,28 +20008,29 @@ buildscript_run(
19998 "CARGO_PKG_VERSION_MINOR": "13",20008 "CARGO_PKG_VERSION_MINOR": "13",
19999 "CARGO_PKG_VERSION_PATCH": "0",20009 "CARGO_PKG_VERSION_PATCH": "0",
20000 "CARGO_PKG_VERSION_PRE": "",20010 "CARGO_PKG_VERSION_PRE": "",
20011+ "OPT_LEVEL": "2",
20001 },20012 },
20002 version = "1.13.0",20013 version = "1.13.0",
20003 )20014 )
20004 20015
20005 http_archive(20016 http_archive(
20006- name = "rcgen-0.14.10.crate",20017+ name = "rcgen-0.14.8.crate",
20007- sha256 = "8774e05a7d0de114588e6a28fe7e71694b82614ed569d86d8b389dfbc98b8ad8",20018+ sha256 = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055",
20008- strip_prefix = "rcgen-0.14.10",20019+ strip_prefix = "rcgen-0.14.8",
20009- urls = ["https://static.crates.io/crates/rcgen/0.14.10/download"],20020+ urls = ["https://static.crates.io/crates/rcgen/0.14.8/download"],
20010 visibility = [],20021 visibility = [],
20011 )20022 )
20012 20023
20013 cargo.rust_library(20024 cargo.rust_library(
20014 name = "rcgen-0.14",20025 name = "rcgen-0.14",
20015- srcs = [":rcgen-0.14.10.crate"],20026+ srcs = [":rcgen-0.14.8.crate"],
20016 crate = "rcgen",20027 crate = "rcgen",
20017- crate_root = "rcgen-0.14.10.crate/src/lib.rs",20028+ crate_root = "rcgen-0.14.8.crate/src/lib.rs",
20018 edition = "2021",20029 edition = "2021",
20019 env = {20030 env = {
20020 "CARGO_BIN_NAME": "rcgen",20031 "CARGO_BIN_NAME": "rcgen",
20021 "CARGO_CRATE_NAME": "rcgen",20032 "CARGO_CRATE_NAME": "rcgen",
20022- "CARGO_MANIFEST_DIR": "rcgen-0.14.10.crate",20033+ "CARGO_MANIFEST_DIR": "rcgen-0.14.8.crate",
20023 "CARGO_PKG_AUTHORS": "",20034 "CARGO_PKG_AUTHORS": "",
20024 "CARGO_PKG_DESCRIPTION": "Rust X.509 certificate generator",20035 "CARGO_PKG_DESCRIPTION": "Rust X.509 certificate generator",
20025 "CARGO_PKG_HOMEPAGE": "",20036 "CARGO_PKG_HOMEPAGE": "",
@@ -20027,10 +20038,10 @@ cargo.rust_library(
20027 "CARGO_PKG_README": "README.md",20038 "CARGO_PKG_README": "README.md",
20028 "CARGO_PKG_REPOSITORY": "https://github.com/rustls/rcgen",20039 "CARGO_PKG_REPOSITORY": "https://github.com/rustls/rcgen",
20029 "CARGO_PKG_RUST_VERSION": "1.88",20040 "CARGO_PKG_RUST_VERSION": "1.88",
20030- "CARGO_PKG_VERSION": "0.14.10",20041+ "CARGO_PKG_VERSION": "0.14.8",
20031 "CARGO_PKG_VERSION_MAJOR": "0",20042 "CARGO_PKG_VERSION_MAJOR": "0",
20032 "CARGO_PKG_VERSION_MINOR": "14",20043 "CARGO_PKG_VERSION_MINOR": "14",
20033- "CARGO_PKG_VERSION_PATCH": "10",20044+ "CARGO_PKG_VERSION_PATCH": "8",
20034 "CARGO_PKG_VERSION_PRE": "",20045 "CARGO_PKG_VERSION_PRE": "",
20035 },20046 },
20036 features = [20047 features = [
@@ -20085,23 +20096,23 @@ cargo.rust_library(
20085 )20096 )
20086 20097
20087 http_archive(20098 http_archive(
20088- name = "ref-cast-1.0.27.crate",20099+ name = "ref-cast-1.0.26.crate",
20089- sha256 = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3",20100+ sha256 = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d",
20090- strip_prefix = "ref-cast-1.0.27",20101+ strip_prefix = "ref-cast-1.0.26",
20091- urls = ["https://static.crates.io/crates/ref-cast/1.0.27/download"],20102+ urls = ["https://static.crates.io/crates/ref-cast/1.0.26/download"],
20092 visibility = [],20103 visibility = [],
20093 )20104 )
20094 20105
20095 cargo.rust_library(20106 cargo.rust_library(
20096 name = "ref-cast-1",20107 name = "ref-cast-1",
20097- srcs = [":ref-cast-1.0.27.crate"],20108+ srcs = [":ref-cast-1.0.26.crate"],
20098 crate = "ref_cast",20109 crate = "ref_cast",
20099- crate_root = "ref-cast-1.0.27.crate/src/lib.rs",20110+ crate_root = "ref-cast-1.0.26.crate/src/lib.rs",
20100 edition = "2021",20111 edition = "2021",
20101 env = {20112 env = {
20102 "CARGO_BIN_NAME": "ref_cast",20113 "CARGO_BIN_NAME": "ref_cast",
20103 "CARGO_CRATE_NAME": "ref_cast",20114 "CARGO_CRATE_NAME": "ref_cast",
20104- "CARGO_MANIFEST_DIR": "ref-cast-1.0.27.crate",20115+ "CARGO_MANIFEST_DIR": "ref-cast-1.0.26.crate",
20105 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",20116 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
20106 "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.",20117 "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.",
20107 "CARGO_PKG_HOMEPAGE": "",20118 "CARGO_PKG_HOMEPAGE": "",
@@ -20109,10 +20120,10 @@ cargo.rust_library(
20109 "CARGO_PKG_README": "README.md",20120 "CARGO_PKG_README": "README.md",
20110 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",20121 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",
20111 "CARGO_PKG_RUST_VERSION": "1.71",20122 "CARGO_PKG_RUST_VERSION": "1.71",
20112- "CARGO_PKG_VERSION": "1.0.27",20123+ "CARGO_PKG_VERSION": "1.0.26",
20113 "CARGO_PKG_VERSION_MAJOR": "1",20124 "CARGO_PKG_VERSION_MAJOR": "1",
20114 "CARGO_PKG_VERSION_MINOR": "0",20125 "CARGO_PKG_VERSION_MINOR": "0",
20115- "CARGO_PKG_VERSION_PATCH": "27",20126+ "CARGO_PKG_VERSION_PATCH": "26",
20116 "CARGO_PKG_VERSION_PRE": "",20127 "CARGO_PKG_VERSION_PRE": "",
20117 "OUT_DIR": "$(location :ref-cast-1-build-script-run[out_dir])",20128 "OUT_DIR": "$(location :ref-cast-1-build-script-run[out_dir])",
20118 },20129 },
@@ -20123,14 +20134,14 @@ cargo.rust_library(
20123 20134
20124 cargo.rust_binary(20135 cargo.rust_binary(
20125 name = "ref-cast-1-build-script-build",20136 name = "ref-cast-1-build-script-build",
20126- srcs = [":ref-cast-1.0.27.crate"],20137+ srcs = [":ref-cast-1.0.26.crate"],
20127 crate = "build_script_build",20138 crate = "build_script_build",
20128- crate_root = "ref-cast-1.0.27.crate/build.rs",20139+ crate_root = "ref-cast-1.0.26.crate/build.rs",
20129 edition = "2021",20140 edition = "2021",
20130 env = {20141 env = {
20131 "CARGO_BIN_NAME": "build-script-build",20142 "CARGO_BIN_NAME": "build-script-build",
20132 "CARGO_CRATE_NAME": "build_script_build",20143 "CARGO_CRATE_NAME": "build_script_build",
20133- "CARGO_MANIFEST_DIR": "ref-cast-1.0.27.crate",20144+ "CARGO_MANIFEST_DIR": "ref-cast-1.0.26.crate",
20134 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",20145 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
20135 "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.",20146 "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.",
20136 "CARGO_PKG_HOMEPAGE": "",20147 "CARGO_PKG_HOMEPAGE": "",
@@ -20138,10 +20149,10 @@ cargo.rust_binary(
20138 "CARGO_PKG_README": "README.md",20149 "CARGO_PKG_README": "README.md",
20139 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",20150 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",
20140 "CARGO_PKG_RUST_VERSION": "1.71",20151 "CARGO_PKG_RUST_VERSION": "1.71",
20141- "CARGO_PKG_VERSION": "1.0.27",20152+ "CARGO_PKG_VERSION": "1.0.26",
20142 "CARGO_PKG_VERSION_MAJOR": "1",20153 "CARGO_PKG_VERSION_MAJOR": "1",
20143 "CARGO_PKG_VERSION_MINOR": "0",20154 "CARGO_PKG_VERSION_MINOR": "0",
20144- "CARGO_PKG_VERSION_PATCH": "27",20155+ "CARGO_PKG_VERSION_PATCH": "26",
20145 "CARGO_PKG_VERSION_PRE": "",20156 "CARGO_PKG_VERSION_PRE": "",
20146 },20157 },
20147 visibility = [],20158 visibility = [],
@@ -20160,30 +20171,31 @@ buildscript_run(
20160 "CARGO_PKG_RUST_VERSION": "1.71",20171 "CARGO_PKG_RUST_VERSION": "1.71",
20161 "CARGO_PKG_VERSION_MAJOR": "1",20172 "CARGO_PKG_VERSION_MAJOR": "1",
20162 "CARGO_PKG_VERSION_MINOR": "0",20173 "CARGO_PKG_VERSION_MINOR": "0",
20163- "CARGO_PKG_VERSION_PATCH": "27",20174+ "CARGO_PKG_VERSION_PATCH": "26",
20164 "CARGO_PKG_VERSION_PRE": "",20175 "CARGO_PKG_VERSION_PRE": "",
20176+ "OPT_LEVEL": "2",
20165 },20177 },
20166- version = "1.0.27",20178+ version = "1.0.26",
20167 )20179 )
20168 20180
20169 http_archive(20181 http_archive(
20170- name = "ref-cast-impl-1.0.27.crate",20182+ name = "ref-cast-impl-1.0.26.crate",
20171- sha256 = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a",20183+ sha256 = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c",
20172- strip_prefix = "ref-cast-impl-1.0.27",20184+ strip_prefix = "ref-cast-impl-1.0.26",
20173- urls = ["https://static.crates.io/crates/ref-cast-impl/1.0.27/download"],20185+ urls = ["https://static.crates.io/crates/ref-cast-impl/1.0.26/download"],
20174 visibility = [],20186 visibility = [],
20175 )20187 )
20176 20188
20177 cargo.rust_library(20189 cargo.rust_library(
20178 name = "ref-cast-impl-1",20190 name = "ref-cast-impl-1",
20179- srcs = [":ref-cast-impl-1.0.27.crate"],20191+ srcs = [":ref-cast-impl-1.0.26.crate"],
20180 crate = "ref_cast_impl",20192 crate = "ref_cast_impl",
20181- crate_root = "ref-cast-impl-1.0.27.crate/src/lib.rs",20193+ crate_root = "ref-cast-impl-1.0.26.crate/src/lib.rs",
20182 edition = "2021",20194 edition = "2021",
20183 env = {20195 env = {
20184 "CARGO_BIN_NAME": "ref_cast_impl",20196 "CARGO_BIN_NAME": "ref_cast_impl",
20185 "CARGO_CRATE_NAME": "ref_cast_impl",20197 "CARGO_CRATE_NAME": "ref_cast_impl",
20186- "CARGO_MANIFEST_DIR": "ref-cast-impl-1.0.27.crate",20198+ "CARGO_MANIFEST_DIR": "ref-cast-impl-1.0.26.crate",
20187 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",20199 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
20188 "CARGO_PKG_DESCRIPTION": "Derive implementation for ref_cast::RefCast.",20200 "CARGO_PKG_DESCRIPTION": "Derive implementation for ref_cast::RefCast.",
20189 "CARGO_PKG_HOMEPAGE": "",20201 "CARGO_PKG_HOMEPAGE": "",
@@ -20191,10 +20203,10 @@ cargo.rust_library(
20191 "CARGO_PKG_README": "",20203 "CARGO_PKG_README": "",
20192 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",20204 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast",
20193 "CARGO_PKG_RUST_VERSION": "1.71",20205 "CARGO_PKG_RUST_VERSION": "1.71",
20194- "CARGO_PKG_VERSION": "1.0.27",20206+ "CARGO_PKG_VERSION": "1.0.26",
20195 "CARGO_PKG_VERSION_MAJOR": "1",20207 "CARGO_PKG_VERSION_MAJOR": "1",
20196 "CARGO_PKG_VERSION_MINOR": "0",20208 "CARGO_PKG_VERSION_MINOR": "0",
20197- "CARGO_PKG_VERSION_PATCH": "27",20209+ "CARGO_PKG_VERSION_PATCH": "26",
20198 "CARGO_PKG_VERSION_PRE": "",20210 "CARGO_PKG_VERSION_PRE": "",
20199 },20211 },
20200 proc_macro = True,20212 proc_macro = True,
@@ -20266,23 +20278,23 @@ cargo.rust_library(
20266 )20278 )
20267 20279
20268 http_archive(20280 http_archive(
20269- name = "regex-automata-0.4.18.crate",20281+ name = "regex-automata-0.4.16.crate",
20270- sha256 = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2",20282+ sha256 = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad",
20271- strip_prefix = "regex-automata-0.4.18",20283+ strip_prefix = "regex-automata-0.4.16",
20272- urls = ["https://static.crates.io/crates/regex-automata/0.4.18/download"],20284+ urls = ["https://static.crates.io/crates/regex-automata/0.4.16/download"],
20273 visibility = [],20285 visibility = [],
20274 )20286 )
20275 20287
20276 cargo.rust_library(20288 cargo.rust_library(
20277 name = "regex-automata-0.4",20289 name = "regex-automata-0.4",
20278- srcs = [":regex-automata-0.4.18.crate"],20290+ srcs = [":regex-automata-0.4.16.crate"],
20279 crate = "regex_automata",20291 crate = "regex_automata",
20280- crate_root = "regex-automata-0.4.18.crate/src/lib.rs",20292+ crate_root = "regex-automata-0.4.16.crate/src/lib.rs",
20281 edition = "2021",20293 edition = "2021",
20282 env = {20294 env = {
20283 "CARGO_BIN_NAME": "regex_automata",20295 "CARGO_BIN_NAME": "regex_automata",
20284 "CARGO_CRATE_NAME": "regex_automata",20296 "CARGO_CRATE_NAME": "regex_automata",
20285- "CARGO_MANIFEST_DIR": "regex-automata-0.4.18.crate",20297+ "CARGO_MANIFEST_DIR": "regex-automata-0.4.16.crate",
20286 "CARGO_PKG_AUTHORS": "The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>",20298 "CARGO_PKG_AUTHORS": "The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>",
20287 "CARGO_PKG_DESCRIPTION": "Automata construction and matching using regular expressions.",20299 "CARGO_PKG_DESCRIPTION": "Automata construction and matching using regular expressions.",
20288 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/regex/tree/master/regex-automata",20300 "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/regex/tree/master/regex-automata",
@@ -20290,10 +20302,10 @@ cargo.rust_library(
20290 "CARGO_PKG_README": "README.md",20302 "CARGO_PKG_README": "README.md",
20291 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/regex",20303 "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/regex",
20292 "CARGO_PKG_RUST_VERSION": "1.65",20304 "CARGO_PKG_RUST_VERSION": "1.65",
20293- "CARGO_PKG_VERSION": "0.4.18",20305+ "CARGO_PKG_VERSION": "0.4.16",
20294 "CARGO_PKG_VERSION_MAJOR": "0",20306 "CARGO_PKG_VERSION_MAJOR": "0",
20295 "CARGO_PKG_VERSION_MINOR": "4",20307 "CARGO_PKG_VERSION_MINOR": "4",
20296- "CARGO_PKG_VERSION_PATCH": "18",20308+ "CARGO_PKG_VERSION_PATCH": "16",
20297 "CARGO_PKG_VERSION_PRE": "",20309 "CARGO_PKG_VERSION_PRE": "",
20298 },20310 },
20299 features = [20311 features = [
@@ -21019,6 +21031,7 @@ buildscript_run(
21019 "CARGO_PKG_VERSION_MINOR": "38",21031 "CARGO_PKG_VERSION_MINOR": "38",
21020 "CARGO_PKG_VERSION_PATCH": "44",21032 "CARGO_PKG_VERSION_PATCH": "44",
21021 "CARGO_PKG_VERSION_PRE": "",21033 "CARGO_PKG_VERSION_PRE": "",
21034+ "OPT_LEVEL": "2",
21022 },21035 },
21023 features = [21036 features = [
21024 "alloc",21037 "alloc",
@@ -21144,6 +21157,7 @@ buildscript_run(
21144 "CARGO_PKG_VERSION_MINOR": "1",21157 "CARGO_PKG_VERSION_MINOR": "1",
21145 "CARGO_PKG_VERSION_PATCH": "4",21158 "CARGO_PKG_VERSION_PATCH": "4",
21146 "CARGO_PKG_VERSION_PRE": "",21159 "CARGO_PKG_VERSION_PRE": "",
21160+ "OPT_LEVEL": "2",
21147 },21161 },
21148 features = [21162 features = [
21149 "alloc",21163 "alloc",
@@ -21275,6 +21289,7 @@ buildscript_run(
21275 "CARGO_PKG_VERSION_MINOR": "23",21289 "CARGO_PKG_VERSION_MINOR": "23",
21276 "CARGO_PKG_VERSION_PATCH": "43",21290 "CARGO_PKG_VERSION_PATCH": "43",
21277 "CARGO_PKG_VERSION_PRE": "",21291 "CARGO_PKG_VERSION_PRE": "",
21292+ "OPT_LEVEL": "2",
21278 },21293 },
21279 features = [21294 features = [
21280 "aws-lc-rs",21295 "aws-lc-rs",
@@ -21558,23 +21573,23 @@ cargo.rust_library(
21558 )21573 )
21559 21574
21560 http_archive(21575 http_archive(
21561- name = "rustls-webpki-0.103.15.crate",21576+ name = "rustls-webpki-0.103.13.crate",
21562- sha256 = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2",21577+ sha256 = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e",
21563- strip_prefix = "rustls-webpki-0.103.15",21578+ strip_prefix = "rustls-webpki-0.103.13",
21564- urls = ["https://static.crates.io/crates/rustls-webpki/0.103.15/download"],21579+ urls = ["https://static.crates.io/crates/rustls-webpki/0.103.13/download"],
21565 visibility = [],21580 visibility = [],
21566 )21581 )
21567 21582
21568 cargo.rust_library(21583 cargo.rust_library(
21569 name = "rustls-webpki-0.103",21584 name = "rustls-webpki-0.103",
21570- srcs = [":rustls-webpki-0.103.15.crate"],21585+ srcs = [":rustls-webpki-0.103.13.crate"],
21571 crate = "webpki",21586 crate = "webpki",
21572- crate_root = "rustls-webpki-0.103.15.crate/src/lib.rs",21587+ crate_root = "rustls-webpki-0.103.13.crate/src/lib.rs",
21573 edition = "2021",21588 edition = "2021",
21574 env = {21589 env = {
21575 "CARGO_BIN_NAME": "webpki",21590 "CARGO_BIN_NAME": "webpki",
21576 "CARGO_CRATE_NAME": "webpki",21591 "CARGO_CRATE_NAME": "webpki",
21577- "CARGO_MANIFEST_DIR": "rustls-webpki-0.103.15.crate",21592+ "CARGO_MANIFEST_DIR": "rustls-webpki-0.103.13.crate",
21578 "CARGO_PKG_AUTHORS": "",21593 "CARGO_PKG_AUTHORS": "",
21579 "CARGO_PKG_DESCRIPTION": "Web PKI X.509 Certificate Verification.",21594 "CARGO_PKG_DESCRIPTION": "Web PKI X.509 Certificate Verification.",
21580 "CARGO_PKG_HOMEPAGE": "",21595 "CARGO_PKG_HOMEPAGE": "",
@@ -21582,10 +21597,10 @@ cargo.rust_library(
21582 "CARGO_PKG_README": "README.md",21597 "CARGO_PKG_README": "README.md",
21583 "CARGO_PKG_REPOSITORY": "https://github.com/rustls/webpki",21598 "CARGO_PKG_REPOSITORY": "https://github.com/rustls/webpki",
21584 "CARGO_PKG_RUST_VERSION": "1.71",21599 "CARGO_PKG_RUST_VERSION": "1.71",
21585- "CARGO_PKG_VERSION": "0.103.15",21600+ "CARGO_PKG_VERSION": "0.103.13",
21586 "CARGO_PKG_VERSION_MAJOR": "0",21601 "CARGO_PKG_VERSION_MAJOR": "0",
21587 "CARGO_PKG_VERSION_MINOR": "103",21602 "CARGO_PKG_VERSION_MINOR": "103",
21588- "CARGO_PKG_VERSION_PATCH": "15",21603+ "CARGO_PKG_VERSION_PATCH": "13",
21589 "CARGO_PKG_VERSION_PRE": "",21604 "CARGO_PKG_VERSION_PRE": "",
21590 },21605 },
21591 features = [21606 features = [
@@ -21682,6 +21697,7 @@ buildscript_run(
21682 "CARGO_PKG_VERSION_MINOR": "0",21697 "CARGO_PKG_VERSION_MINOR": "0",
21683 "CARGO_PKG_VERSION_PATCH": "23",21698 "CARGO_PKG_VERSION_PATCH": "23",
21684 "CARGO_PKG_VERSION_PRE": "",21699 "CARGO_PKG_VERSION_PRE": "",
21700+ "OPT_LEVEL": "2",
21685 },21701 },
21686 version = "1.0.23",21702 version = "1.0.23",
21687 )21703 )
@@ -21809,6 +21825,7 @@ buildscript_run(
21809 "CARGO_PKG_VERSION_MINOR": "1",21825 "CARGO_PKG_VERSION_MINOR": "1",
21810 "CARGO_PKG_VERSION_PATCH": "0",21826 "CARGO_PKG_VERSION_PATCH": "0",
21811 "CARGO_PKG_VERSION_PRE": "",21827 "CARGO_PKG_VERSION_PRE": "",
21828+ "OPT_LEVEL": "2",
21812 },21829 },
21813 features = [21830 features = [
21814 "camera-apple",21831 "camera-apple",
@@ -21916,6 +21933,7 @@ buildscript_run(
21916 "CARGO_PKG_VERSION_MINOR": "1",21933 "CARGO_PKG_VERSION_MINOR": "1",
21917 "CARGO_PKG_VERSION_PATCH": "0",21934 "CARGO_PKG_VERSION_PATCH": "0",
21918 "CARGO_PKG_VERSION_PRE": "",21935 "CARGO_PKG_VERSION_PRE": "",
21936+ "OPT_LEVEL": "2",
21919 },21937 },
21920 features = [21938 features = [
21921 "h264",21939 "h264",
@@ -21961,23 +21979,23 @@ cargo.rust_library(
21961 )21979 )
21962 21980
21963 http_archive(21981 http_archive(
21964- name = "safe_arch-1.2.0.crate",21982+ name = "safe_arch-1.1.0.crate",
21965- sha256 = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f",21983+ sha256 = "3a52ec151f024d703f9fd65abb7cbe81e7cdb39f18917a3a37e3014470dc7c59",
21966- strip_prefix = "safe_arch-1.2.0",21984+ strip_prefix = "safe_arch-1.1.0",
21967- urls = ["https://static.crates.io/crates/safe_arch/1.2.0/download"],21985+ urls = ["https://static.crates.io/crates/safe_arch/1.1.0/download"],
21968 visibility = [],21986 visibility = [],
21969 )21987 )
21970 21988
21971 cargo.rust_library(21989 cargo.rust_library(
21972 name = "safe_arch-1",21990 name = "safe_arch-1",
21973- srcs = [":safe_arch-1.2.0.crate"],21991+ srcs = [":safe_arch-1.1.0.crate"],
21974 crate = "safe_arch",21992 crate = "safe_arch",
21975- crate_root = "safe_arch-1.2.0.crate/src/lib.rs",21993+ crate_root = "safe_arch-1.1.0.crate/src/lib.rs",
21976 edition = "2024",21994 edition = "2024",
21977 env = {21995 env = {
21978 "CARGO_BIN_NAME": "safe_arch",21996 "CARGO_BIN_NAME": "safe_arch",
21979 "CARGO_CRATE_NAME": "safe_arch",21997 "CARGO_CRATE_NAME": "safe_arch",
21980- "CARGO_MANIFEST_DIR": "safe_arch-1.2.0.crate",21998+ "CARGO_MANIFEST_DIR": "safe_arch-1.1.0.crate",
21981 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",21999 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",
21982 "CARGO_PKG_DESCRIPTION": "Crate that exposes `core::arch` safely via `#[cfg()]`.",22000 "CARGO_PKG_DESCRIPTION": "Crate that exposes `core::arch` safely via `#[cfg()]`.",
21983 "CARGO_PKG_HOMEPAGE": "",22001 "CARGO_PKG_HOMEPAGE": "",
@@ -21985,9 +22003,9 @@ cargo.rust_library(
21985 "CARGO_PKG_README": "README.md",22003 "CARGO_PKG_README": "README.md",
21986 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/safe_arch",22004 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/safe_arch",
21987 "CARGO_PKG_RUST_VERSION": "1.89",22005 "CARGO_PKG_RUST_VERSION": "1.89",
21988- "CARGO_PKG_VERSION": "1.2.0",22006+ "CARGO_PKG_VERSION": "1.1.0",
21989 "CARGO_PKG_VERSION_MAJOR": "1",22007 "CARGO_PKG_VERSION_MAJOR": "1",
21990- "CARGO_PKG_VERSION_MINOR": "2",22008+ "CARGO_PKG_VERSION_MINOR": "1",
21991 "CARGO_PKG_VERSION_PATCH": "0",22009 "CARGO_PKG_VERSION_PATCH": "0",
21992 "CARGO_PKG_VERSION_PRE": "",22010 "CARGO_PKG_VERSION_PRE": "",
21993 },22011 },
@@ -22266,7 +22284,14 @@ cargo.rust_library(
22266 "CARGO_PKG_VERSION_PATCH": "1",22284 "CARGO_PKG_VERSION_PATCH": "1",
22267 "CARGO_PKG_VERSION_PRE": "",22285 "CARGO_PKG_VERSION_PRE": "",
22268 },22286 },
22287+ features = [
22288+ "default",
22289+ "fast-barrier",
22290+ "libc",
22291+ "windows-sys",
22292+ ],
22269 visibility = [],22293 visibility = [],
22294+ deps = [":libc-0.2"],
22270 )22295 )
22271 22296
22272 http_archive(22297 http_archive(
@@ -22438,6 +22463,7 @@ buildscript_run(
22438 "CARGO_PKG_VERSION_MINOR": "0",22463 "CARGO_PKG_VERSION_MINOR": "0",
22439 "CARGO_PKG_VERSION_PATCH": "229",22464 "CARGO_PKG_VERSION_PATCH": "229",
22440 "CARGO_PKG_VERSION_PRE": "",22465 "CARGO_PKG_VERSION_PRE": "",
22466+ "OPT_LEVEL": "2",
22441 },22467 },
22442 features = [22468 features = [
22443 "alloc",22469 "alloc",
@@ -22613,6 +22639,7 @@ buildscript_run(
22613 "CARGO_PKG_VERSION_MINOR": "0",22639 "CARGO_PKG_VERSION_MINOR": "0",
22614 "CARGO_PKG_VERSION_PATCH": "229",22640 "CARGO_PKG_VERSION_PATCH": "229",
22615 "CARGO_PKG_VERSION_PRE": "",22641 "CARGO_PKG_VERSION_PRE": "",
22642+ "OPT_LEVEL": "2",
22616 },22643 },
22617 features = [22644 features = [
22618 "alloc",22645 "alloc",
@@ -22757,6 +22784,7 @@ buildscript_run(
22757 "CARGO_PKG_VERSION_MINOR": "0",22784 "CARGO_PKG_VERSION_MINOR": "0",
22758 "CARGO_PKG_VERSION_PATCH": "151",22785 "CARGO_PKG_VERSION_PATCH": "151",
22759 "CARGO_PKG_VERSION_PRE": "",22786 "CARGO_PKG_VERSION_PRE": "",
22787+ "OPT_LEVEL": "2",
22760 },22788 },
22761 features = [22789 features = [
22762 "alloc",22790 "alloc",
@@ -22807,23 +22835,23 @@ cargo.rust_library(
22807 )22835 )
22808 22836
22809 http_archive(22837 http_archive(
22810- name = "serde_with-3.22.0.crate",22838+ name = "serde_with-3.21.0.crate",
22811- sha256 = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a",22839+ sha256 = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c",
22812- strip_prefix = "serde_with-3.22.0",22840+ strip_prefix = "serde_with-3.21.0",
22813- urls = ["https://static.crates.io/crates/serde_with/3.22.0/download"],22841+ urls = ["https://static.crates.io/crates/serde_with/3.21.0/download"],
22814 visibility = [],22842 visibility = [],
22815 )22843 )
22816 22844
22817 cargo.rust_library(22845 cargo.rust_library(
22818 name = "serde_with-3",22846 name = "serde_with-3",
22819- srcs = [":serde_with-3.22.0.crate"],22847+ srcs = [":serde_with-3.21.0.crate"],
22820 crate = "serde_with",22848 crate = "serde_with",
22821- crate_root = "serde_with-3.22.0.crate/src/lib.rs",22849+ crate_root = "serde_with-3.21.0.crate/src/lib.rs",
22822 edition = "2021",22850 edition = "2021",
22823 env = {22851 env = {
22824 "CARGO_BIN_NAME": "serde_with",22852 "CARGO_BIN_NAME": "serde_with",
22825 "CARGO_CRATE_NAME": "serde_with",22853 "CARGO_CRATE_NAME": "serde_with",
22826- "CARGO_MANIFEST_DIR": "serde_with-3.22.0.crate",22854+ "CARGO_MANIFEST_DIR": "serde_with-3.21.0.crate",
22827 "CARGO_PKG_AUTHORS": "Jonas Bushart:Marcin Kaźmierczak",22855 "CARGO_PKG_AUTHORS": "Jonas Bushart:Marcin Kaźmierczak",
22828 "CARGO_PKG_DESCRIPTION": "Custom de/serialization functions for Rust's serde",22856 "CARGO_PKG_DESCRIPTION": "Custom de/serialization functions for Rust's serde",
22829 "CARGO_PKG_HOMEPAGE": "",22857 "CARGO_PKG_HOMEPAGE": "",
@@ -22831,9 +22859,9 @@ cargo.rust_library(
22831 "CARGO_PKG_README": "README.md",22859 "CARGO_PKG_README": "README.md",
22832 "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/",22860 "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/",
22833 "CARGO_PKG_RUST_VERSION": "1.88",22861 "CARGO_PKG_RUST_VERSION": "1.88",
22834- "CARGO_PKG_VERSION": "3.22.0",22862+ "CARGO_PKG_VERSION": "3.21.0",
22835 "CARGO_PKG_VERSION_MAJOR": "3",22863 "CARGO_PKG_VERSION_MAJOR": "3",
22836- "CARGO_PKG_VERSION_MINOR": "22",22864+ "CARGO_PKG_VERSION_MINOR": "21",
22837 "CARGO_PKG_VERSION_PATCH": "0",22865 "CARGO_PKG_VERSION_PATCH": "0",
22838 "CARGO_PKG_VERSION_PRE": "",22866 "CARGO_PKG_VERSION_PRE": "",
22839 },22867 },
@@ -22853,23 +22881,23 @@ cargo.rust_library(
22853 )22881 )
22854 22882
22855 http_archive(22883 http_archive(
22856- name = "serde_with_macros-3.22.0.crate",22884+ name = "serde_with_macros-3.21.0.crate",
22857- sha256 = "8705578779c2b6bd90d84d66eb2e206b708b1a4d7b9f17641b293545bf1c7e46",22885+ sha256 = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660",
22858- strip_prefix = "serde_with_macros-3.22.0",22886+ strip_prefix = "serde_with_macros-3.21.0",
22859- urls = ["https://static.crates.io/crates/serde_with_macros/3.22.0/download"],22887+ urls = ["https://static.crates.io/crates/serde_with_macros/3.21.0/download"],
22860 visibility = [],22888 visibility = [],
22861 )22889 )
22862 22890
22863 cargo.rust_library(22891 cargo.rust_library(
22864 name = "serde_with_macros-3",22892 name = "serde_with_macros-3",
22865- srcs = [":serde_with_macros-3.22.0.crate"],22893+ srcs = [":serde_with_macros-3.21.0.crate"],
22866 crate = "serde_with_macros",22894 crate = "serde_with_macros",
22867- crate_root = "serde_with_macros-3.22.0.crate/src/lib.rs",22895+ crate_root = "serde_with_macros-3.21.0.crate/src/lib.rs",
22868 edition = "2021",22896 edition = "2021",
22869 env = {22897 env = {
22870 "CARGO_BIN_NAME": "serde_with_macros",22898 "CARGO_BIN_NAME": "serde_with_macros",
22871 "CARGO_CRATE_NAME": "serde_with_macros",22899 "CARGO_CRATE_NAME": "serde_with_macros",
22872- "CARGO_MANIFEST_DIR": "serde_with_macros-3.22.0.crate",22900+ "CARGO_MANIFEST_DIR": "serde_with_macros-3.21.0.crate",
22873 "CARGO_PKG_AUTHORS": "Jonas Bushart",22901 "CARGO_PKG_AUTHORS": "Jonas Bushart",
22874 "CARGO_PKG_DESCRIPTION": "proc-macro library for serde_with",22902 "CARGO_PKG_DESCRIPTION": "proc-macro library for serde_with",
22875 "CARGO_PKG_HOMEPAGE": "",22903 "CARGO_PKG_HOMEPAGE": "",
@@ -22877,9 +22905,9 @@ cargo.rust_library(
22877 "CARGO_PKG_README": "README.md",22905 "CARGO_PKG_README": "README.md",
22878 "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/",22906 "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/",
22879 "CARGO_PKG_RUST_VERSION": "1.88",22907 "CARGO_PKG_RUST_VERSION": "1.88",
22880- "CARGO_PKG_VERSION": "3.22.0",22908+ "CARGO_PKG_VERSION": "3.21.0",
22881 "CARGO_PKG_VERSION_MAJOR": "3",22909 "CARGO_PKG_VERSION_MAJOR": "3",
22882- "CARGO_PKG_VERSION_MINOR": "22",22910+ "CARGO_PKG_VERSION_MINOR": "21",
22883 "CARGO_PKG_VERSION_PATCH": "0",22911 "CARGO_PKG_VERSION_PATCH": "0",
22884 "CARGO_PKG_VERSION_PRE": "",22912 "CARGO_PKG_VERSION_PRE": "",
22885 },22913 },
@@ -22893,44 +22921,6 @@ cargo.rust_library(
22893 ],22921 ],
22894 )22922 )
22895 22923
22896-http_archive(
22897- name = "serdect-0.4.3.crate",
22898- sha256 = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e",
22899- strip_prefix = "serdect-0.4.3",
22900- urls = ["https://static.crates.io/crates/serdect/0.4.3/download"],
22901- visibility = [],
22902-)
22903-
22904-cargo.rust_library(
22905- name = "serdect-0.4",
22906- srcs = [":serdect-0.4.3.crate"],
22907- crate = "serdect",
22908- crate_root = "serdect-0.4.3.crate/src/lib.rs",
22909- edition = "2024",
22910- env = {
22911- "CARGO_BIN_NAME": "serdect",
22912- "CARGO_CRATE_NAME": "serdect",
22913- "CARGO_MANIFEST_DIR": "serdect-0.4.3.crate",
22914- "CARGO_PKG_AUTHORS": "RustCrypto Developers",
22915- "CARGO_PKG_DESCRIPTION": "Constant-time serde serializer/deserializer helpers for data that potentially\ncontains secrets (e.g. cryptographic keys)\n",
22916- "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/serdect",
22917- "CARGO_PKG_NAME": "serdect",
22918- "CARGO_PKG_README": "README.md",
22919- "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats",
22920- "CARGO_PKG_RUST_VERSION": "1.85",
22921- "CARGO_PKG_VERSION": "0.4.3",
22922- "CARGO_PKG_VERSION_MAJOR": "0",
22923- "CARGO_PKG_VERSION_MINOR": "4",
22924- "CARGO_PKG_VERSION_PATCH": "3",
22925- "CARGO_PKG_VERSION_PRE": "",
22926- },
22927- visibility = [],
22928- deps = [
22929- ":base16ct-1",
22930- ":serde-1",
22931- ],
22932-)
22933-
22934 http_archive(22924 http_archive(
22935 name = "sfv-0.14.0.crate",22925 name = "sfv-0.14.0.crate",
22936 sha256 = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87",22926 sha256 = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87",
@@ -23245,23 +23235,23 @@ cargo.rust_library(
23245 )23235 )
23246 23236
23247 http_archive(23237 http_archive(
23248- name = "signature-3.0.0.crate",23238+ name = "signature-3.0.0-rc.10.crate",
23249- sha256 = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5",23239+ sha256 = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3",
23250- strip_prefix = "signature-3.0.0",23240+ strip_prefix = "signature-3.0.0-rc.10",
23251- urls = ["https://static.crates.io/crates/signature/3.0.0/download"],23241+ urls = ["https://static.crates.io/crates/signature/3.0.0-rc.10/download"],
23252 visibility = [],23242 visibility = [],
23253 )23243 )
23254 23244
23255 cargo.rust_library(23245 cargo.rust_library(
23256 name = "signature-3",23246 name = "signature-3",
23257- srcs = [":signature-3.0.0.crate"],23247+ srcs = [":signature-3.0.0-rc.10.crate"],
23258 crate = "signature",23248 crate = "signature",
23259- crate_root = "signature-3.0.0.crate/src/lib.rs",23249+ crate_root = "signature-3.0.0-rc.10.crate/src/lib.rs",
23260 edition = "2024",23250 edition = "2024",
23261 env = {23251 env = {
23262 "CARGO_BIN_NAME": "signature",23252 "CARGO_BIN_NAME": "signature",
23263 "CARGO_CRATE_NAME": "signature",23253 "CARGO_CRATE_NAME": "signature",
23264- "CARGO_MANIFEST_DIR": "signature-3.0.0.crate",23254+ "CARGO_MANIFEST_DIR": "signature-3.0.0-rc.10.crate",
23265 "CARGO_PKG_AUTHORS": "RustCrypto Developers",23255 "CARGO_PKG_AUTHORS": "RustCrypto Developers",
23266 "CARGO_PKG_DESCRIPTION": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)",23256 "CARGO_PKG_DESCRIPTION": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)",
23267 "CARGO_PKG_HOMEPAGE": "",23257 "CARGO_PKG_HOMEPAGE": "",
@@ -23269,11 +23259,11 @@ cargo.rust_library(
23269 "CARGO_PKG_README": "README.md",23259 "CARGO_PKG_README": "README.md",
23270 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits",23260 "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits",
23271 "CARGO_PKG_RUST_VERSION": "1.85",23261 "CARGO_PKG_RUST_VERSION": "1.85",
23272- "CARGO_PKG_VERSION": "3.0.0",23262+ "CARGO_PKG_VERSION": "3.0.0-rc.10",
23273 "CARGO_PKG_VERSION_MAJOR": "3",23263 "CARGO_PKG_VERSION_MAJOR": "3",
23274 "CARGO_PKG_VERSION_MINOR": "0",23264 "CARGO_PKG_VERSION_MINOR": "0",
23275 "CARGO_PKG_VERSION_PATCH": "0",23265 "CARGO_PKG_VERSION_PATCH": "0",
23276- "CARGO_PKG_VERSION_PRE": "",23266+ "CARGO_PKG_VERSION_PRE": "rc.10",
23277 },23267 },
23278 features = ["alloc"],23268 features = ["alloc"],
23279 visibility = [],23269 visibility = [],
@@ -23614,6 +23604,7 @@ buildscript_run(
23614 "CARGO_PKG_VERSION_MINOR": "19",23604 "CARGO_PKG_VERSION_MINOR": "19",
23615 "CARGO_PKG_VERSION_PATCH": "2",23605 "CARGO_PKG_VERSION_PATCH": "2",
23616 "CARGO_PKG_VERSION_PRE": "",23606 "CARGO_PKG_VERSION_PRE": "",
23607+ "OPT_LEVEL": "2",
23617 },23608 },
23618 features = [23609 features = [
23619 "calloop",23610 "calloop",
@@ -23728,6 +23719,7 @@ buildscript_run(
23728 "CARGO_PKG_VERSION_MINOR": "20",23719 "CARGO_PKG_VERSION_MINOR": "20",
23729 "CARGO_PKG_VERSION_PATCH": "0",23720 "CARGO_PKG_VERSION_PATCH": "0",
23730 "CARGO_PKG_VERSION_PRE": "",23721 "CARGO_PKG_VERSION_PRE": "",
23722+ "OPT_LEVEL": "2",
23731 },23723 },
23732 features = [23724 features = [
23733 "calloop",23725 "calloop",
@@ -24877,23 +24869,23 @@ cargo.rust_library(
24877 )24869 )
24878 24870
24879 http_archive(24871 http_archive(
24880- name = "syn-3.0.4.crate",24872+ name = "syn-3.0.3.crate",
24881- sha256 = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f",24873+ sha256 = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3",
24882- strip_prefix = "syn-3.0.4",24874+ strip_prefix = "syn-3.0.3",
24883- urls = ["https://static.crates.io/crates/syn/3.0.4/download"],24875+ urls = ["https://static.crates.io/crates/syn/3.0.3/download"],
24884 visibility = [],24876 visibility = [],
24885 )24877 )
24886 24878
24887 cargo.rust_library(24879 cargo.rust_library(
24888 name = "syn-3",24880 name = "syn-3",
24889- srcs = [":syn-3.0.4.crate"],24881+ srcs = [":syn-3.0.3.crate"],
24890 crate = "syn",24882 crate = "syn",
24891- crate_root = "syn-3.0.4.crate/src/lib.rs",24883+ crate_root = "syn-3.0.3.crate/src/lib.rs",
24892 edition = "2021",24884 edition = "2021",
24893 env = {24885 env = {
24894 "CARGO_BIN_NAME": "syn",24886 "CARGO_BIN_NAME": "syn",
24895 "CARGO_CRATE_NAME": "syn",24887 "CARGO_CRATE_NAME": "syn",
24896- "CARGO_MANIFEST_DIR": "syn-3.0.4.crate",24888+ "CARGO_MANIFEST_DIR": "syn-3.0.3.crate",
24897 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",24889 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
24898 "CARGO_PKG_DESCRIPTION": "Parser for Rust source code",24890 "CARGO_PKG_DESCRIPTION": "Parser for Rust source code",
24899 "CARGO_PKG_HOMEPAGE": "",24891 "CARGO_PKG_HOMEPAGE": "",
@@ -24901,17 +24893,16 @@ cargo.rust_library(
24901 "CARGO_PKG_README": "README.md",24893 "CARGO_PKG_README": "README.md",
24902 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/syn",24894 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/syn",
24903 "CARGO_PKG_RUST_VERSION": "1.71",24895 "CARGO_PKG_RUST_VERSION": "1.71",
24904- "CARGO_PKG_VERSION": "3.0.4",24896+ "CARGO_PKG_VERSION": "3.0.3",
24905 "CARGO_PKG_VERSION_MAJOR": "3",24897 "CARGO_PKG_VERSION_MAJOR": "3",
24906 "CARGO_PKG_VERSION_MINOR": "0",24898 "CARGO_PKG_VERSION_MINOR": "0",
24907- "CARGO_PKG_VERSION_PATCH": "4",24899+ "CARGO_PKG_VERSION_PATCH": "3",
24908 "CARGO_PKG_VERSION_PRE": "",24900 "CARGO_PKG_VERSION_PRE": "",
24909 },24901 },
24910 features = [24902 features = [
24911 "clone-impls",24903 "clone-impls",
24912 "default",24904 "default",
24913 "derive",24905 "derive",
24914- "extra-traits",
24915 "full",24906 "full",
24916 "parsing",24907 "parsing",
24917 "printing",24908 "printing",
@@ -25120,28 +25111,29 @@ buildscript_run(
25120 "CARGO_PKG_VERSION_MINOR": "0",25111 "CARGO_PKG_VERSION_MINOR": "0",
25121 "CARGO_PKG_VERSION_PATCH": "69",25112 "CARGO_PKG_VERSION_PATCH": "69",
25122 "CARGO_PKG_VERSION_PRE": "",25113 "CARGO_PKG_VERSION_PRE": "",
25114+ "OPT_LEVEL": "2",
25123 },25115 },
25124 version = "1.0.69",25116 version = "1.0.69",
25125 )25117 )
25126 25118
25127 http_archive(25119 http_archive(
25128- name = "thiserror-2.0.20.crate",25120+ name = "thiserror-2.0.19.crate",
25129- sha256 = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f",25121+ sha256 = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9",
25130- strip_prefix = "thiserror-2.0.20",25122+ strip_prefix = "thiserror-2.0.19",
25131- urls = ["https://static.crates.io/crates/thiserror/2.0.20/download"],25123+ urls = ["https://static.crates.io/crates/thiserror/2.0.19/download"],
25132 visibility = [],25124 visibility = [],
25133 )25125 )
25134 25126
25135 cargo.rust_library(25127 cargo.rust_library(
25136 name = "thiserror-2",25128 name = "thiserror-2",
25137- srcs = [":thiserror-2.0.20.crate"],25129+ srcs = [":thiserror-2.0.19.crate"],
25138 crate = "thiserror",25130 crate = "thiserror",
25139- crate_root = "thiserror-2.0.20.crate/src/lib.rs",25131+ crate_root = "thiserror-2.0.19.crate/src/lib.rs",
25140 edition = "2021",25132 edition = "2021",
25141 env = {25133 env = {
25142 "CARGO_BIN_NAME": "thiserror",25134 "CARGO_BIN_NAME": "thiserror",
25143 "CARGO_CRATE_NAME": "thiserror",25135 "CARGO_CRATE_NAME": "thiserror",
25144- "CARGO_MANIFEST_DIR": "thiserror-2.0.20.crate",25136+ "CARGO_MANIFEST_DIR": "thiserror-2.0.19.crate",
25145 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",25137 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
25146 "CARGO_PKG_DESCRIPTION": "derive(Error)",25138 "CARGO_PKG_DESCRIPTION": "derive(Error)",
25147 "CARGO_PKG_HOMEPAGE": "",25139 "CARGO_PKG_HOMEPAGE": "",
@@ -25149,10 +25141,10 @@ cargo.rust_library(
25149 "CARGO_PKG_README": "README.md",25141 "CARGO_PKG_README": "README.md",
25150 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",25142 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",
25151 "CARGO_PKG_RUST_VERSION": "1.71",25143 "CARGO_PKG_RUST_VERSION": "1.71",
25152- "CARGO_PKG_VERSION": "2.0.20",25144+ "CARGO_PKG_VERSION": "2.0.19",
25153 "CARGO_PKG_VERSION_MAJOR": "2",25145 "CARGO_PKG_VERSION_MAJOR": "2",
25154 "CARGO_PKG_VERSION_MINOR": "0",25146 "CARGO_PKG_VERSION_MINOR": "0",
25155- "CARGO_PKG_VERSION_PATCH": "20",25147+ "CARGO_PKG_VERSION_PATCH": "19",
25156 "CARGO_PKG_VERSION_PRE": "",25148 "CARGO_PKG_VERSION_PRE": "",
25157 "OUT_DIR": "$(location :thiserror-2-build-script-run[out_dir])",25149 "OUT_DIR": "$(location :thiserror-2-build-script-run[out_dir])",
25158 },25150 },
@@ -25167,14 +25159,14 @@ cargo.rust_library(
25167 25159
25168 cargo.rust_binary(25160 cargo.rust_binary(
25169 name = "thiserror-2-build-script-build",25161 name = "thiserror-2-build-script-build",
25170- srcs = [":thiserror-2.0.20.crate"],25162+ srcs = [":thiserror-2.0.19.crate"],
25171 crate = "build_script_build",25163 crate = "build_script_build",
25172- crate_root = "thiserror-2.0.20.crate/build.rs",25164+ crate_root = "thiserror-2.0.19.crate/build.rs",
25173 edition = "2021",25165 edition = "2021",
25174 env = {25166 env = {
25175 "CARGO_BIN_NAME": "build-script-build",25167 "CARGO_BIN_NAME": "build-script-build",
25176 "CARGO_CRATE_NAME": "build_script_build",25168 "CARGO_CRATE_NAME": "build_script_build",
25177- "CARGO_MANIFEST_DIR": "thiserror-2.0.20.crate",25169+ "CARGO_MANIFEST_DIR": "thiserror-2.0.19.crate",
25178 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",25170 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
25179 "CARGO_PKG_DESCRIPTION": "derive(Error)",25171 "CARGO_PKG_DESCRIPTION": "derive(Error)",
25180 "CARGO_PKG_HOMEPAGE": "",25172 "CARGO_PKG_HOMEPAGE": "",
@@ -25182,10 +25174,10 @@ cargo.rust_binary(
25182 "CARGO_PKG_README": "README.md",25174 "CARGO_PKG_README": "README.md",
25183 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",25175 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",
25184 "CARGO_PKG_RUST_VERSION": "1.71",25176 "CARGO_PKG_RUST_VERSION": "1.71",
25185- "CARGO_PKG_VERSION": "2.0.20",25177+ "CARGO_PKG_VERSION": "2.0.19",
25186 "CARGO_PKG_VERSION_MAJOR": "2",25178 "CARGO_PKG_VERSION_MAJOR": "2",
25187 "CARGO_PKG_VERSION_MINOR": "0",25179 "CARGO_PKG_VERSION_MINOR": "0",
25188- "CARGO_PKG_VERSION_PATCH": "20",25180+ "CARGO_PKG_VERSION_PATCH": "19",
25189 "CARGO_PKG_VERSION_PRE": "",25181 "CARGO_PKG_VERSION_PRE": "",
25190 },25182 },
25191 features = [25183 features = [
@@ -25208,14 +25200,15 @@ buildscript_run(
25208 "CARGO_PKG_RUST_VERSION": "1.71",25200 "CARGO_PKG_RUST_VERSION": "1.71",
25209 "CARGO_PKG_VERSION_MAJOR": "2",25201 "CARGO_PKG_VERSION_MAJOR": "2",
25210 "CARGO_PKG_VERSION_MINOR": "0",25202 "CARGO_PKG_VERSION_MINOR": "0",
25211- "CARGO_PKG_VERSION_PATCH": "20",25203+ "CARGO_PKG_VERSION_PATCH": "19",
25212 "CARGO_PKG_VERSION_PRE": "",25204 "CARGO_PKG_VERSION_PRE": "",
25205+ "OPT_LEVEL": "2",
25213 },25206 },
25214 features = [25207 features = [
25215 "default",25208 "default",
25216 "std",25209 "std",
25217 ],25210 ],
25218- version = "2.0.20",25211+ version = "2.0.19",
25219 )25212 )
25220 25213
25221 http_archive(25214 http_archive(
@@ -25259,23 +25252,23 @@ cargo.rust_library(
25259 )25252 )
25260 25253
25261 http_archive(25254 http_archive(
25262- name = "thiserror-impl-2.0.20.crate",25255+ name = "thiserror-impl-2.0.19.crate",
25263- sha256 = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af",25256+ sha256 = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd",
25264- strip_prefix = "thiserror-impl-2.0.20",25257+ strip_prefix = "thiserror-impl-2.0.19",
25265- urls = ["https://static.crates.io/crates/thiserror-impl/2.0.20/download"],25258+ urls = ["https://static.crates.io/crates/thiserror-impl/2.0.19/download"],
25266 visibility = [],25259 visibility = [],
25267 )25260 )
25268 25261
25269 cargo.rust_library(25262 cargo.rust_library(
25270 name = "thiserror-impl-2",25263 name = "thiserror-impl-2",
25271- srcs = [":thiserror-impl-2.0.20.crate"],25264+ srcs = [":thiserror-impl-2.0.19.crate"],
25272 crate = "thiserror_impl",25265 crate = "thiserror_impl",
25273- crate_root = "thiserror-impl-2.0.20.crate/src/lib.rs",25266+ crate_root = "thiserror-impl-2.0.19.crate/src/lib.rs",
25274 edition = "2021",25267 edition = "2021",
25275 env = {25268 env = {
25276 "CARGO_BIN_NAME": "thiserror_impl",25269 "CARGO_BIN_NAME": "thiserror_impl",
25277 "CARGO_CRATE_NAME": "thiserror_impl",25270 "CARGO_CRATE_NAME": "thiserror_impl",
25278- "CARGO_MANIFEST_DIR": "thiserror-impl-2.0.20.crate",25271+ "CARGO_MANIFEST_DIR": "thiserror-impl-2.0.19.crate",
25279 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",25272 "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
25280 "CARGO_PKG_DESCRIPTION": "Implementation detail of the `thiserror` crate",25273 "CARGO_PKG_DESCRIPTION": "Implementation detail of the `thiserror` crate",
25281 "CARGO_PKG_HOMEPAGE": "",25274 "CARGO_PKG_HOMEPAGE": "",
@@ -25283,10 +25276,10 @@ cargo.rust_library(
25283 "CARGO_PKG_README": "",25276 "CARGO_PKG_README": "",
25284 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",25277 "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror",
25285 "CARGO_PKG_RUST_VERSION": "1.71",25278 "CARGO_PKG_RUST_VERSION": "1.71",
25286- "CARGO_PKG_VERSION": "2.0.20",25279+ "CARGO_PKG_VERSION": "2.0.19",
25287 "CARGO_PKG_VERSION_MAJOR": "2",25280 "CARGO_PKG_VERSION_MAJOR": "2",
25288 "CARGO_PKG_VERSION_MINOR": "0",25281 "CARGO_PKG_VERSION_MINOR": "0",
25289- "CARGO_PKG_VERSION_PATCH": "20",25282+ "CARGO_PKG_VERSION_PATCH": "19",
25290 "CARGO_PKG_VERSION_PRE": "",25283 "CARGO_PKG_VERSION_PRE": "",
25291 },25284 },
25292 proc_macro = True,25285 proc_macro = True,
@@ -25424,23 +25417,23 @@ cargo.rust_library(
25424 )25417 )
25425 25418
25426 http_archive(25419 http_archive(
25427- name = "time-0.3.55.crate",25420+ name = "time-0.3.54.crate",
25428- sha256 = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134",25421+ sha256 = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244",
25429- strip_prefix = "time-0.3.55",25422+ strip_prefix = "time-0.3.54",
25430- urls = ["https://static.crates.io/crates/time/0.3.55/download"],25423+ urls = ["https://static.crates.io/crates/time/0.3.54/download"],
25431 visibility = [],25424 visibility = [],
25432 )25425 )
25433 25426
25434 cargo.rust_library(25427 cargo.rust_library(
25435 name = "time-0.3",25428 name = "time-0.3",
25436- srcs = [":time-0.3.55.crate"],25429+ srcs = [":time-0.3.54.crate"],
25437 crate = "time",25430 crate = "time",
25438- crate_root = "time-0.3.55.crate/src/lib.rs",25431+ crate_root = "time-0.3.54.crate/src/lib.rs",
25439 edition = "2024",25432 edition = "2024",
25440 env = {25433 env = {
25441 "CARGO_BIN_NAME": "time",25434 "CARGO_BIN_NAME": "time",
25442 "CARGO_CRATE_NAME": "time",25435 "CARGO_CRATE_NAME": "time",
25443- "CARGO_MANIFEST_DIR": "time-0.3.55.crate",25436+ "CARGO_MANIFEST_DIR": "time-0.3.54.crate",
25444 "CARGO_PKG_AUTHORS": "Jacob Pratt <open-source@jhpratt.dev>:Time contributors",25437 "CARGO_PKG_AUTHORS": "Jacob Pratt <open-source@jhpratt.dev>:Time contributors",
25445 "CARGO_PKG_DESCRIPTION": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].",25438 "CARGO_PKG_DESCRIPTION": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].",
25446 "CARGO_PKG_HOMEPAGE": "https://time-rs.github.io",25439 "CARGO_PKG_HOMEPAGE": "https://time-rs.github.io",
@@ -25448,10 +25441,10 @@ cargo.rust_library(
25448 "CARGO_PKG_README": "README.md",25441 "CARGO_PKG_README": "README.md",
25449 "CARGO_PKG_REPOSITORY": "https://github.com/time-rs/time",25442 "CARGO_PKG_REPOSITORY": "https://github.com/time-rs/time",
25450 "CARGO_PKG_RUST_VERSION": "1.88.0",25443 "CARGO_PKG_RUST_VERSION": "1.88.0",
25451- "CARGO_PKG_VERSION": "0.3.55",25444+ "CARGO_PKG_VERSION": "0.3.54",
25452 "CARGO_PKG_VERSION_MAJOR": "0",25445 "CARGO_PKG_VERSION_MAJOR": "0",
25453 "CARGO_PKG_VERSION_MINOR": "3",25446 "CARGO_PKG_VERSION_MINOR": "3",
25454- "CARGO_PKG_VERSION_PATCH": "55",25447+ "CARGO_PKG_VERSION_PATCH": "54",
25455 "CARGO_PKG_VERSION_PRE": "",25448 "CARGO_PKG_VERSION_PRE": "",
25456 },25449 },
25457 features = [25450 features = [
@@ -25597,23 +25590,23 @@ cargo.rust_library(
25597 )25590 )
25598 25591
25599 http_archive(25592 http_archive(
25600- name = "tinystr-0.8.4.crate",25593+ name = "tinystr-0.8.3.crate",
25601- sha256 = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643",25594+ sha256 = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d",
25602- strip_prefix = "tinystr-0.8.4",25595+ strip_prefix = "tinystr-0.8.3",
25603- urls = ["https://static.crates.io/crates/tinystr/0.8.4/download"],25596+ urls = ["https://static.crates.io/crates/tinystr/0.8.3/download"],
25604 visibility = [],25597 visibility = [],
25605 )25598 )
25606 25599
25607 cargo.rust_library(25600 cargo.rust_library(
25608 name = "tinystr-0.8",25601 name = "tinystr-0.8",
25609- srcs = [":tinystr-0.8.4.crate"],25602+ srcs = [":tinystr-0.8.3.crate"],
25610 crate = "tinystr",25603 crate = "tinystr",
25611- crate_root = "tinystr-0.8.4.crate/src/lib.rs",25604+ crate_root = "tinystr-0.8.3.crate/src/lib.rs",
25612 edition = "2021",25605 edition = "2021",
25613 env = {25606 env = {
25614 "CARGO_BIN_NAME": "tinystr",25607 "CARGO_BIN_NAME": "tinystr",
25615 "CARGO_CRATE_NAME": "tinystr",25608 "CARGO_CRATE_NAME": "tinystr",
25616- "CARGO_MANIFEST_DIR": "tinystr-0.8.4.crate",25609+ "CARGO_MANIFEST_DIR": "tinystr-0.8.3.crate",
25617 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",25610 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
25618 "CARGO_PKG_DESCRIPTION": "A small ASCII-only bounded length string representation.",25611 "CARGO_PKG_DESCRIPTION": "A small ASCII-only bounded length string representation.",
25619 "CARGO_PKG_HOMEPAGE": "",25612 "CARGO_PKG_HOMEPAGE": "",
@@ -25621,10 +25614,10 @@ cargo.rust_library(
25621 "CARGO_PKG_README": "README.md",25614 "CARGO_PKG_README": "README.md",
25622 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",25615 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
25623 "CARGO_PKG_RUST_VERSION": "1.82",25616 "CARGO_PKG_RUST_VERSION": "1.82",
25624- "CARGO_PKG_VERSION": "0.8.4",25617+ "CARGO_PKG_VERSION": "0.8.3",
25625 "CARGO_PKG_VERSION_MAJOR": "0",25618 "CARGO_PKG_VERSION_MAJOR": "0",
25626 "CARGO_PKG_VERSION_MINOR": "8",25619 "CARGO_PKG_VERSION_MINOR": "8",
25627- "CARGO_PKG_VERSION_PATCH": "4",25620+ "CARGO_PKG_VERSION_PATCH": "3",
25628 "CARGO_PKG_VERSION_PRE": "",25621 "CARGO_PKG_VERSION_PRE": "",
25629 },25622 },
25630 features = ["zerovec"],25623 features = ["zerovec"],
@@ -27292,23 +27285,23 @@ cargo.rust_library(
27292 )27285 )
27293 27286
27294 http_archive(27287 http_archive(
27295- name = "uuid-1.26.0.crate",27288+ name = "uuid-1.24.0.crate",
27296- sha256 = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812",27289+ sha256 = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239",
27297- strip_prefix = "uuid-1.26.0",27290+ strip_prefix = "uuid-1.24.0",
27298- urls = ["https://static.crates.io/crates/uuid/1.26.0/download"],27291+ urls = ["https://static.crates.io/crates/uuid/1.24.0/download"],
27299 visibility = [],27292 visibility = [],
27300 )27293 )
27301 27294
27302 cargo.rust_library(27295 cargo.rust_library(
27303 name = "uuid-1",27296 name = "uuid-1",
27304- srcs = [":uuid-1.26.0.crate"],27297+ srcs = [":uuid-1.24.0.crate"],
27305 crate = "uuid",27298 crate = "uuid",
27306- crate_root = "uuid-1.26.0.crate/src/lib.rs",27299+ crate_root = "uuid-1.24.0.crate/src/lib.rs",
27307 edition = "2021",27300 edition = "2021",
27308 env = {27301 env = {
27309 "CARGO_BIN_NAME": "uuid",27302 "CARGO_BIN_NAME": "uuid",
27310 "CARGO_CRATE_NAME": "uuid",27303 "CARGO_CRATE_NAME": "uuid",
27311- "CARGO_MANIFEST_DIR": "uuid-1.26.0.crate",27304+ "CARGO_MANIFEST_DIR": "uuid-1.24.0.crate",
27312 "CARGO_PKG_AUTHORS": "Ashley Mannix<ashleymannix@live.com.au>:Dylan DPC<dylan.dpc@gmail.com>:Hunar Roop Kahlon<hunar.roop@gmail.com>",27305 "CARGO_PKG_AUTHORS": "Ashley Mannix<ashleymannix@live.com.au>:Dylan DPC<dylan.dpc@gmail.com>:Hunar Roop Kahlon<hunar.roop@gmail.com>",
27313 "CARGO_PKG_DESCRIPTION": "A library to generate and parse UUIDs.",27306 "CARGO_PKG_DESCRIPTION": "A library to generate and parse UUIDs.",
27314 "CARGO_PKG_HOMEPAGE": "https://github.com/uuid-rs/uuid",27307 "CARGO_PKG_HOMEPAGE": "https://github.com/uuid-rs/uuid",
@@ -27316,9 +27309,9 @@ cargo.rust_library(
27316 "CARGO_PKG_README": "README.md",27309 "CARGO_PKG_README": "README.md",
27317 "CARGO_PKG_REPOSITORY": "https://github.com/uuid-rs/uuid",27310 "CARGO_PKG_REPOSITORY": "https://github.com/uuid-rs/uuid",
27318 "CARGO_PKG_RUST_VERSION": "1.85.0",27311 "CARGO_PKG_RUST_VERSION": "1.85.0",
27319- "CARGO_PKG_VERSION": "1.26.0",27312+ "CARGO_PKG_VERSION": "1.24.0",
27320 "CARGO_PKG_VERSION_MAJOR": "1",27313 "CARGO_PKG_VERSION_MAJOR": "1",
27321- "CARGO_PKG_VERSION_MINOR": "26",27314+ "CARGO_PKG_VERSION_MINOR": "24",
27322 "CARGO_PKG_VERSION_PATCH": "0",27315 "CARGO_PKG_VERSION_PATCH": "0",
27323 "CARGO_PKG_VERSION_PRE": "",27316 "CARGO_PKG_VERSION_PRE": "",
27324 },27317 },
@@ -27425,6 +27418,7 @@ buildscript_run(
27425 "CARGO_PKG_VERSION_MINOR": "0",27418 "CARGO_PKG_VERSION_MINOR": "0",
27426 "CARGO_PKG_VERSION_PATCH": "7",27419 "CARGO_PKG_VERSION_PATCH": "7",
27427 "CARGO_PKG_VERSION_PRE": "",27420 "CARGO_PKG_VERSION_PRE": "",
27421+ "OPT_LEVEL": "2",
27428 },27422 },
27429 version = "0.0.7",27423 version = "0.0.7",
27430 )27424 )
@@ -27512,6 +27506,7 @@ buildscript_run(
27512 "CARGO_PKG_VERSION_MINOR": "1",27506 "CARGO_PKG_VERSION_MINOR": "1",
27513 "CARGO_PKG_VERSION_PATCH": "0",27507 "CARGO_PKG_VERSION_PATCH": "0",
27514 "CARGO_PKG_VERSION_PRE": "",27508 "CARGO_PKG_VERSION_PRE": "",
27509+ "OPT_LEVEL": "2",
27515 },27510 },
27516 version = "9.1.0",27511 version = "9.1.0",
27517 )27512 )
@@ -27603,6 +27598,7 @@ buildscript_run(
27603 "CARGO_PKG_VERSION_MINOR": "0",27598 "CARGO_PKG_VERSION_MINOR": "0",
27604 "CARGO_PKG_VERSION_PATCH": "8",27599 "CARGO_PKG_VERSION_PATCH": "8",
27605 "CARGO_PKG_VERSION_PRE": "",27600 "CARGO_PKG_VERSION_PRE": "",
27601+ "OPT_LEVEL": "2",
27606 },27602 },
27607 features = ["default"],27603 features = ["default"],
27608 version = "1.0.8",27604 version = "1.0.8",
@@ -27698,6 +27694,7 @@ buildscript_run(
27698 "CARGO_PKG_VERSION_MINOR": "1",27694 "CARGO_PKG_VERSION_MINOR": "1",
27699 "CARGO_PKG_VERSION_PATCH": "6",27695 "CARGO_PKG_VERSION_PATCH": "6",
27700 "CARGO_PKG_VERSION_PRE": "",27696 "CARGO_PKG_VERSION_PRE": "",
27697+ "OPT_LEVEL": "2",
27701 },27698 },
27702 features = [27699 features = [
27703 "default",27700 "default",
@@ -27790,6 +27787,7 @@ buildscript_run(
27790 "CARGO_PKG_VERSION_MINOR": "1",27787 "CARGO_PKG_VERSION_MINOR": "1",
27791 "CARGO_PKG_VERSION_PATCH": "0",27788 "CARGO_PKG_VERSION_PATCH": "0",
27792 "CARGO_PKG_VERSION_PRE": "",27789 "CARGO_PKG_VERSION_PRE": "",
27790+ "OPT_LEVEL": "2",
27793 },27791 },
27794 features = ["default"],27792 features = ["default"],
27795 version = "9.1.0",27793 version = "9.1.0",
@@ -28038,6 +28036,7 @@ buildscript_run(
28038 "CARGO_PKG_VERSION_MINOR": "3",28036 "CARGO_PKG_VERSION_MINOR": "3",
28039 "CARGO_PKG_VERSION_PATCH": "17",28037 "CARGO_PKG_VERSION_PATCH": "17",
28040 "CARGO_PKG_VERSION_PRE": "",28038 "CARGO_PKG_VERSION_PRE": "",
28039+ "OPT_LEVEL": "2",
28041 },28040 },
28042 features = [28041 features = [
28043 "client_system",28042 "client_system",
@@ -28129,6 +28128,7 @@ buildscript_run(
28129 "CARGO_PKG_VERSION_MINOR": "31",28128 "CARGO_PKG_VERSION_MINOR": "31",
28130 "CARGO_PKG_VERSION_PATCH": "15",28129 "CARGO_PKG_VERSION_PATCH": "15",
28131 "CARGO_PKG_VERSION_PRE": "",28130 "CARGO_PKG_VERSION_PRE": "",
28131+ "OPT_LEVEL": "2",
28132 },28132 },
28133 version = "0.31.15",28133 version = "0.31.15",
28134 )28134 )
@@ -28572,6 +28572,7 @@ buildscript_run(
28572 "CARGO_PKG_VERSION_MINOR": "31",28572 "CARGO_PKG_VERSION_MINOR": "31",
28573 "CARGO_PKG_VERSION_PATCH": "11",28573 "CARGO_PKG_VERSION_PATCH": "11",
28574 "CARGO_PKG_VERSION_PRE": "",28574 "CARGO_PKG_VERSION_PRE": "",
28575+ "OPT_LEVEL": "2",
28575 },28576 },
28576 features = [28577 features = [
28577 "client",28578 "client",
@@ -28935,23 +28936,23 @@ cargo.rust_library(
28935 )28936 )
28936 28937
28937 http_archive(28938 http_archive(
28938- name = "wide-1.7.0.crate",28939+ name = "wide-1.5.0.crate",
28939- sha256 = "8cf05ca94c9fba0c51316899caa1d1e74a064fc310a5efa7375e614343d415be",28940+ sha256 = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89",
28940- strip_prefix = "wide-1.7.0",28941+ strip_prefix = "wide-1.5.0",
28941- urls = ["https://static.crates.io/crates/wide/1.7.0/download"],28942+ urls = ["https://static.crates.io/crates/wide/1.5.0/download"],
28942 visibility = [],28943 visibility = [],
28943 )28944 )
28944 28945
28945 cargo.rust_library(28946 cargo.rust_library(
28946 name = "wide-1",28947 name = "wide-1",
28947- srcs = [":wide-1.7.0.crate"],28948+ srcs = [":wide-1.5.0.crate"],
28948 crate = "wide",28949 crate = "wide",
28949- crate_root = "wide-1.7.0.crate/src/lib.rs",28950+ crate_root = "wide-1.5.0.crate/src/lib.rs",
28950 edition = "2024",28951 edition = "2024",
28951 env = {28952 env = {
28952 "CARGO_BIN_NAME": "wide",28953 "CARGO_BIN_NAME": "wide",
28953 "CARGO_CRATE_NAME": "wide",28954 "CARGO_CRATE_NAME": "wide",
28954- "CARGO_MANIFEST_DIR": "wide-1.7.0.crate",28955+ "CARGO_MANIFEST_DIR": "wide-1.5.0.crate",
28955 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",28956 "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>",
28956 "CARGO_PKG_DESCRIPTION": "A crate to help you go wide.",28957 "CARGO_PKG_DESCRIPTION": "A crate to help you go wide.",
28957 "CARGO_PKG_HOMEPAGE": "",28958 "CARGO_PKG_HOMEPAGE": "",
@@ -28959,9 +28960,9 @@ cargo.rust_library(
28959 "CARGO_PKG_README": "README.md",28960 "CARGO_PKG_README": "README.md",
28960 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/wide",28961 "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/wide",
28961 "CARGO_PKG_RUST_VERSION": "1.89",28962 "CARGO_PKG_RUST_VERSION": "1.89",
28962- "CARGO_PKG_VERSION": "1.7.0",28963+ "CARGO_PKG_VERSION": "1.5.0",
28963 "CARGO_PKG_VERSION_MAJOR": "1",28964 "CARGO_PKG_VERSION_MAJOR": "1",
28964- "CARGO_PKG_VERSION_MINOR": "7",28965+ "CARGO_PKG_VERSION_MINOR": "5",
28965 "CARGO_PKG_VERSION_PATCH": "0",28966 "CARGO_PKG_VERSION_PATCH": "0",
28966 "CARGO_PKG_VERSION_PRE": "",28967 "CARGO_PKG_VERSION_PRE": "",
28967 },28968 },
@@ -29216,6 +29217,7 @@ buildscript_run(
29216 "CARGO_PKG_VERSION_MINOR": "30",29217 "CARGO_PKG_VERSION_MINOR": "30",
29217 "CARGO_PKG_VERSION_PATCH": "13",29218 "CARGO_PKG_VERSION_PATCH": "13",
29218 "CARGO_PKG_VERSION_PRE": "",29219 "CARGO_PKG_VERSION_PRE": "",
29220+ "OPT_LEVEL": "2",
29219 },29221 },
29220 features = [29222 features = [
29221 "ahash",29223 "ahash",
@@ -29283,23 +29285,23 @@ cargo.rust_library(
29283 )29285 )
29284 29286
29285 http_archive(29287 http_archive(
29286- name = "writeable-0.6.4.crate",29288+ name = "writeable-0.6.3.crate",
29287- sha256 = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc",29289+ sha256 = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4",
29288- strip_prefix = "writeable-0.6.4",29290+ strip_prefix = "writeable-0.6.3",
29289- urls = ["https://static.crates.io/crates/writeable/0.6.4/download"],29291+ urls = ["https://static.crates.io/crates/writeable/0.6.3/download"],
29290 visibility = [],29292 visibility = [],
29291 )29293 )
29292 29294
29293 cargo.rust_library(29295 cargo.rust_library(
29294 name = "writeable-0.6",29296 name = "writeable-0.6",
29295- srcs = [":writeable-0.6.4.crate"],29297+ srcs = [":writeable-0.6.3.crate"],
29296 crate = "writeable",29298 crate = "writeable",
29297- crate_root = "writeable-0.6.4.crate/src/lib.rs",29299+ crate_root = "writeable-0.6.3.crate/src/lib.rs",
29298 edition = "2021",29300 edition = "2021",
29299 env = {29301 env = {
29300 "CARGO_BIN_NAME": "writeable",29302 "CARGO_BIN_NAME": "writeable",
29301 "CARGO_CRATE_NAME": "writeable",29303 "CARGO_CRATE_NAME": "writeable",
29302- "CARGO_MANIFEST_DIR": "writeable-0.6.4.crate",29304+ "CARGO_MANIFEST_DIR": "writeable-0.6.3.crate",
29303 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",29305 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
29304 "CARGO_PKG_DESCRIPTION": "A more efficient alternative to fmt::Display",29306 "CARGO_PKG_DESCRIPTION": "A more efficient alternative to fmt::Display",
29305 "CARGO_PKG_HOMEPAGE": "",29307 "CARGO_PKG_HOMEPAGE": "",
@@ -29307,10 +29309,10 @@ cargo.rust_library(
29307 "CARGO_PKG_README": "README.md",29309 "CARGO_PKG_README": "README.md",
29308 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",29310 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
29309 "CARGO_PKG_RUST_VERSION": "1.82",29311 "CARGO_PKG_RUST_VERSION": "1.82",
29310- "CARGO_PKG_VERSION": "0.6.4",29312+ "CARGO_PKG_VERSION": "0.6.3",
29311 "CARGO_PKG_VERSION_MAJOR": "0",29313 "CARGO_PKG_VERSION_MAJOR": "0",
29312 "CARGO_PKG_VERSION_MINOR": "6",29314 "CARGO_PKG_VERSION_MINOR": "6",
29313- "CARGO_PKG_VERSION_PATCH": "4",29315+ "CARGO_PKG_VERSION_PATCH": "3",
29314 "CARGO_PKG_VERSION_PRE": "",29316 "CARGO_PKG_VERSION_PRE": "",
29315 },29317 },
29316 visibility = [],29318 visibility = [],
@@ -29398,6 +29400,7 @@ buildscript_run(
29398 "CARGO_PKG_VERSION_MINOR": "21",29400 "CARGO_PKG_VERSION_MINOR": "21",
29399 "CARGO_PKG_VERSION_PATCH": "0",29401 "CARGO_PKG_VERSION_PATCH": "0",
29400 "CARGO_PKG_VERSION_PRE": "",29402 "CARGO_PKG_VERSION_PRE": "",
29403+ "OPT_LEVEL": "2",
29401 },29404 },
29402 version = "2.21.0",29405 version = "2.21.0",
29403 )29406 )
@@ -29615,23 +29618,23 @@ cargo.rust_library(
29615 )29618 )
29616 29619
29617 http_archive(29620 http_archive(
29618- name = "xml-rs-0.8.29.crate",29621+ name = "xml-rs-0.8.28.crate",
29619- sha256 = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7",29622+ sha256 = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f",
29620- strip_prefix = "xml-rs-0.8.29",29623+ strip_prefix = "xml-rs-0.8.28",
29621- urls = ["https://static.crates.io/crates/xml-rs/0.8.29/download"],29624+ urls = ["https://static.crates.io/crates/xml-rs/0.8.28/download"],
29622 visibility = [],29625 visibility = [],
29623 )29626 )
29624 29627
29625 cargo.rust_library(29628 cargo.rust_library(
29626 name = "xml-rs-0.8",29629 name = "xml-rs-0.8",
29627- srcs = [":xml-rs-0.8.29.crate"],29630+ srcs = [":xml-rs-0.8.28.crate"],
29628 crate = "xml",29631 crate = "xml",
29629- crate_root = "xml-rs-0.8.29.crate/src/lib.rs",29632+ crate_root = "xml-rs-0.8.28.crate/src/lib.rs",
29630 edition = "2021",29633 edition = "2021",
29631 env = {29634 env = {
29632 "CARGO_BIN_NAME": "xml",29635 "CARGO_BIN_NAME": "xml",
29633 "CARGO_CRATE_NAME": "xml",29636 "CARGO_CRATE_NAME": "xml",
29634- "CARGO_MANIFEST_DIR": "xml-rs-0.8.29.crate",29637+ "CARGO_MANIFEST_DIR": "xml-rs-0.8.28.crate",
29635 "CARGO_PKG_AUTHORS": "Vladimir Matveev <vmatveev@citrine.cc>",29638 "CARGO_PKG_AUTHORS": "Vladimir Matveev <vmatveev@citrine.cc>",
29636 "CARGO_PKG_DESCRIPTION": "An XML library in pure Rust",29639 "CARGO_PKG_DESCRIPTION": "An XML library in pure Rust",
29637 "CARGO_PKG_HOMEPAGE": "https://lib.rs/crates/xml",29640 "CARGO_PKG_HOMEPAGE": "https://lib.rs/crates/xml",
@@ -29639,10 +29642,10 @@ cargo.rust_library(
29639 "CARGO_PKG_README": "README.md",29642 "CARGO_PKG_README": "README.md",
29640 "CARGO_PKG_REPOSITORY": "https://github.com/kornelski/xml-rs",29643 "CARGO_PKG_REPOSITORY": "https://github.com/kornelski/xml-rs",
29641 "CARGO_PKG_RUST_VERSION": "1.70",29644 "CARGO_PKG_RUST_VERSION": "1.70",
29642- "CARGO_PKG_VERSION": "0.8.29",29645+ "CARGO_PKG_VERSION": "0.8.28",
29643 "CARGO_PKG_VERSION_MAJOR": "0",29646 "CARGO_PKG_VERSION_MAJOR": "0",
29644 "CARGO_PKG_VERSION_MINOR": "8",29647 "CARGO_PKG_VERSION_MINOR": "8",
29645- "CARGO_PKG_VERSION_PATCH": "29",29648+ "CARGO_PKG_VERSION_PATCH": "28",
29646 "CARGO_PKG_VERSION_PRE": "",29649 "CARGO_PKG_VERSION_PRE": "",
29647 },29650 },
29648 visibility = [],29651 visibility = [],
@@ -29809,23 +29812,23 @@ cargo.rust_library(
29809 )29812 )
29810 29813
29811 http_archive(29814 http_archive(
29812- name = "yuv-0.8.17.crate",29815+ name = "yuv-0.8.16.crate",
29813- sha256 = "220655e1c245693beb13b377d3174b9efcb1645018d1d4ec53903fc211b135ae",29816+ sha256 = "5d85a782d94ee43f078bcfd6fa82d4e6a5b2d1cfbbad168e4df5a9f7b39ef48c",
29814- strip_prefix = "yuv-0.8.17",29817+ strip_prefix = "yuv-0.8.16",
29815- urls = ["https://static.crates.io/crates/yuv/0.8.17/download"],29818+ urls = ["https://static.crates.io/crates/yuv/0.8.16/download"],
29816 visibility = [],29819 visibility = [],
29817 )29820 )
29818 29821
29819 cargo.rust_library(29822 cargo.rust_library(
29820 name = "yuv-0.8",29823 name = "yuv-0.8",
29821- srcs = [":yuv-0.8.17.crate"],29824+ srcs = [":yuv-0.8.16.crate"],
29822 crate = "yuv",29825 crate = "yuv",
29823- crate_root = "yuv-0.8.17.crate/src/lib.rs",29826+ crate_root = "yuv-0.8.16.crate/src/lib.rs",
29824 edition = "2021",29827 edition = "2021",
29825 env = {29828 env = {
29826 "CARGO_BIN_NAME": "yuv",29829 "CARGO_BIN_NAME": "yuv",
29827 "CARGO_CRATE_NAME": "yuv",29830 "CARGO_CRATE_NAME": "yuv",
29828- "CARGO_MANIFEST_DIR": "yuv-0.8.17.crate",29831+ "CARGO_MANIFEST_DIR": "yuv-0.8.16.crate",
29829 "CARGO_PKG_AUTHORS": "Radzivon Bartoshyk",29832 "CARGO_PKG_AUTHORS": "Radzivon Bartoshyk",
29830 "CARGO_PKG_DESCRIPTION": "High performance utilities for YUV format handling and conversion.",29833 "CARGO_PKG_DESCRIPTION": "High performance utilities for YUV format handling and conversion.",
29831 "CARGO_PKG_HOMEPAGE": "https://github.com/awxkee/yuvutils-rs",29834 "CARGO_PKG_HOMEPAGE": "https://github.com/awxkee/yuvutils-rs",
@@ -29833,10 +29836,10 @@ cargo.rust_library(
29833 "CARGO_PKG_README": "README.md",29836 "CARGO_PKG_README": "README.md",
29834 "CARGO_PKG_REPOSITORY": "https://github.com/awxkee/yuvutils-rs",29837 "CARGO_PKG_REPOSITORY": "https://github.com/awxkee/yuvutils-rs",
29835 "CARGO_PKG_RUST_VERSION": "1.82.0",29838 "CARGO_PKG_RUST_VERSION": "1.82.0",
29836- "CARGO_PKG_VERSION": "0.8.17",29839+ "CARGO_PKG_VERSION": "0.8.16",
29837 "CARGO_PKG_VERSION_MAJOR": "0",29840 "CARGO_PKG_VERSION_MAJOR": "0",
29838 "CARGO_PKG_VERSION_MINOR": "8",29841 "CARGO_PKG_VERSION_MINOR": "8",
29839- "CARGO_PKG_VERSION_PATCH": "17",29842+ "CARGO_PKG_VERSION_PATCH": "16",
29840 "CARGO_PKG_VERSION_PRE": "",29843 "CARGO_PKG_VERSION_PRE": "",
29841 },29844 },
29842 features = [29845 features = [
@@ -29884,34 +29887,34 @@ cargo.rust_library(
29884 )29887 )
29885 29888
29886 http_archive(29889 http_archive(
29887- name = "zerocopy-0.8.56.crate",29890+ name = "zerocopy-0.8.55.crate",
29888- sha256 = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb",29891+ sha256 = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb",
29889- strip_prefix = "zerocopy-0.8.56",29892+ strip_prefix = "zerocopy-0.8.55",
29890- urls = ["https://static.crates.io/crates/zerocopy/0.8.56/download"],29893+ urls = ["https://static.crates.io/crates/zerocopy/0.8.55/download"],
29891 visibility = [],29894 visibility = [],
29892 )29895 )
29893 29896
29894 cargo.rust_library(29897 cargo.rust_library(
29895 name = "zerocopy-0.8",29898 name = "zerocopy-0.8",
29896- srcs = [":zerocopy-0.8.56.crate"],29899+ srcs = [":zerocopy-0.8.55.crate"],
29897 crate = "zerocopy",29900 crate = "zerocopy",
29898- crate_root = "zerocopy-0.8.56.crate/src/lib.rs",29901+ crate_root = "zerocopy-0.8.55.crate/src/lib.rs",
29899 edition = "2021",29902 edition = "2021",
29900 env = {29903 env = {
29901 "CARGO_BIN_NAME": "zerocopy",29904 "CARGO_BIN_NAME": "zerocopy",
29902 "CARGO_CRATE_NAME": "zerocopy",29905 "CARGO_CRATE_NAME": "zerocopy",
29903- "CARGO_MANIFEST_DIR": "zerocopy-0.8.56.crate",29906+ "CARGO_MANIFEST_DIR": "zerocopy-0.8.55.crate",
29904- "CARGO_PKG_AUTHORS": "",29907+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
29905 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",29908 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
29906 "CARGO_PKG_HOMEPAGE": "",29909 "CARGO_PKG_HOMEPAGE": "",
29907 "CARGO_PKG_NAME": "zerocopy",29910 "CARGO_PKG_NAME": "zerocopy",
29908 "CARGO_PKG_README": "README.md",29911 "CARGO_PKG_README": "README.md",
29909 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",29912 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",
29910 "CARGO_PKG_RUST_VERSION": "1.56.0",29913 "CARGO_PKG_RUST_VERSION": "1.56.0",
29911- "CARGO_PKG_VERSION": "0.8.56",29914+ "CARGO_PKG_VERSION": "0.8.55",
29912 "CARGO_PKG_VERSION_MAJOR": "0",29915 "CARGO_PKG_VERSION_MAJOR": "0",
29913 "CARGO_PKG_VERSION_MINOR": "8",29916 "CARGO_PKG_VERSION_MINOR": "8",
29914- "CARGO_PKG_VERSION_PATCH": "56",29917+ "CARGO_PKG_VERSION_PATCH": "55",
29915 "CARGO_PKG_VERSION_PRE": "",29918 "CARGO_PKG_VERSION_PRE": "",
29916 "OUT_DIR": "$(location :zerocopy-0.8-build-script-run[out_dir])",29919 "OUT_DIR": "$(location :zerocopy-0.8-build-script-run[out_dir])",
29917 },29920 },
@@ -29927,25 +29930,25 @@ cargo.rust_library(
29927 29930
29928 cargo.rust_binary(29931 cargo.rust_binary(
29929 name = "zerocopy-0.8-build-script-build",29932 name = "zerocopy-0.8-build-script-build",
29930- srcs = [":zerocopy-0.8.56.crate"],29933+ srcs = [":zerocopy-0.8.55.crate"],
29931 crate = "build_script_build",29934 crate = "build_script_build",
29932- crate_root = "zerocopy-0.8.56.crate/build.rs",29935+ crate_root = "zerocopy-0.8.55.crate/build.rs",
29933 edition = "2021",29936 edition = "2021",
29934 env = {29937 env = {
29935 "CARGO_BIN_NAME": "build-script-build",29938 "CARGO_BIN_NAME": "build-script-build",
29936 "CARGO_CRATE_NAME": "build_script_build",29939 "CARGO_CRATE_NAME": "build_script_build",
29937- "CARGO_MANIFEST_DIR": "zerocopy-0.8.56.crate",29940+ "CARGO_MANIFEST_DIR": "zerocopy-0.8.55.crate",
29938- "CARGO_PKG_AUTHORS": "",29941+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
29939 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",29942 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
29940 "CARGO_PKG_HOMEPAGE": "",29943 "CARGO_PKG_HOMEPAGE": "",
29941 "CARGO_PKG_NAME": "zerocopy",29944 "CARGO_PKG_NAME": "zerocopy",
29942 "CARGO_PKG_README": "README.md",29945 "CARGO_PKG_README": "README.md",
29943 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",29946 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",
29944 "CARGO_PKG_RUST_VERSION": "1.56.0",29947 "CARGO_PKG_RUST_VERSION": "1.56.0",
29945- "CARGO_PKG_VERSION": "0.8.56",29948+ "CARGO_PKG_VERSION": "0.8.55",
29946 "CARGO_PKG_VERSION_MAJOR": "0",29949 "CARGO_PKG_VERSION_MAJOR": "0",
29947 "CARGO_PKG_VERSION_MINOR": "8",29950 "CARGO_PKG_VERSION_MINOR": "8",
29948- "CARGO_PKG_VERSION_PATCH": "56",29951+ "CARGO_PKG_VERSION_PATCH": "55",
29949 "CARGO_PKG_VERSION_PRE": "",29952 "CARGO_PKG_VERSION_PRE": "",
29950 },29953 },
29951 features = [29954 features = [
@@ -29961,7 +29964,7 @@ buildscript_run(
29961 package_name = "zerocopy",29964 package_name = "zerocopy",
29962 buildscript_rule = ":zerocopy-0.8-build-script-build",29965 buildscript_rule = ":zerocopy-0.8-build-script-build",
29963 env = {29966 env = {
29964- "CARGO_PKG_AUTHORS": "",29967+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
29965 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",29968 "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
29966 "CARGO_PKG_HOMEPAGE": "",29969 "CARGO_PKG_HOMEPAGE": "",
29967 "CARGO_PKG_README": "README.md",29970 "CARGO_PKG_README": "README.md",
@@ -29969,46 +29972,47 @@ buildscript_run(
29969 "CARGO_PKG_RUST_VERSION": "1.56.0",29972 "CARGO_PKG_RUST_VERSION": "1.56.0",
29970 "CARGO_PKG_VERSION_MAJOR": "0",29973 "CARGO_PKG_VERSION_MAJOR": "0",
29971 "CARGO_PKG_VERSION_MINOR": "8",29974 "CARGO_PKG_VERSION_MINOR": "8",
29972- "CARGO_PKG_VERSION_PATCH": "56",29975+ "CARGO_PKG_VERSION_PATCH": "55",
29973 "CARGO_PKG_VERSION_PRE": "",29976 "CARGO_PKG_VERSION_PRE": "",
29977+ "OPT_LEVEL": "2",
29974 },29978 },
29975 features = [29979 features = [
29976 "derive",29980 "derive",
29977 "simd",29981 "simd",
29978 "zerocopy-derive",29982 "zerocopy-derive",
29979 ],29983 ],
29980- version = "0.8.56",29984+ version = "0.8.55",
29981 )29985 )
29982 29986
29983 http_archive(29987 http_archive(
29984- name = "zerocopy-derive-0.8.56.crate",29988+ name = "zerocopy-derive-0.8.55.crate",
29985- sha256 = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1",29989+ sha256 = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb",
29986- strip_prefix = "zerocopy-derive-0.8.56",29990+ strip_prefix = "zerocopy-derive-0.8.55",
29987- urls = ["https://static.crates.io/crates/zerocopy-derive/0.8.56/download"],29991+ urls = ["https://static.crates.io/crates/zerocopy-derive/0.8.55/download"],
29988 visibility = [],29992 visibility = [],
29989 )29993 )
29990 29994
29991 cargo.rust_library(29995 cargo.rust_library(
29992 name = "zerocopy-derive-0.8",29996 name = "zerocopy-derive-0.8",
29993- srcs = [":zerocopy-derive-0.8.56.crate"],29997+ srcs = [":zerocopy-derive-0.8.55.crate"],
29994 crate = "zerocopy_derive",29998 crate = "zerocopy_derive",
29995- crate_root = "zerocopy-derive-0.8.56.crate/src/lib.rs",29999+ crate_root = "zerocopy-derive-0.8.55.crate/src/lib.rs",
29996 edition = "2021",30000 edition = "2021",
29997 env = {30001 env = {
29998 "CARGO_BIN_NAME": "zerocopy_derive",30002 "CARGO_BIN_NAME": "zerocopy_derive",
29999 "CARGO_CRATE_NAME": "zerocopy_derive",30003 "CARGO_CRATE_NAME": "zerocopy_derive",
30000- "CARGO_MANIFEST_DIR": "zerocopy-derive-0.8.56.crate",30004+ "CARGO_MANIFEST_DIR": "zerocopy-derive-0.8.55.crate",
30001- "CARGO_PKG_AUTHORS": "",30005+ "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>",
30002 "CARGO_PKG_DESCRIPTION": "Custom derive for traits from the zerocopy crate",30006 "CARGO_PKG_DESCRIPTION": "Custom derive for traits from the zerocopy crate",
30003 "CARGO_PKG_HOMEPAGE": "",30007 "CARGO_PKG_HOMEPAGE": "",
30004 "CARGO_PKG_NAME": "zerocopy-derive",30008 "CARGO_PKG_NAME": "zerocopy-derive",
30005 "CARGO_PKG_README": "",30009 "CARGO_PKG_README": "",
30006 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",30010 "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy",
30007 "CARGO_PKG_RUST_VERSION": "",30011 "CARGO_PKG_RUST_VERSION": "",
30008- "CARGO_PKG_VERSION": "0.8.56",30012+ "CARGO_PKG_VERSION": "0.8.55",
30009 "CARGO_PKG_VERSION_MAJOR": "0",30013 "CARGO_PKG_VERSION_MAJOR": "0",
30010 "CARGO_PKG_VERSION_MINOR": "8",30014 "CARGO_PKG_VERSION_MINOR": "8",
30011- "CARGO_PKG_VERSION_PATCH": "56",30015+ "CARGO_PKG_VERSION_PATCH": "55",
30012 "CARGO_PKG_VERSION_PRE": "",30016 "CARGO_PKG_VERSION_PRE": "",
30013 },30017 },
30014 proc_macro = True,30018 proc_macro = True,
@@ -30179,23 +30183,23 @@ cargo.rust_library(
30179 )30183 )
30180 30184
30181 http_archive(30185 http_archive(
30182- name = "zerotrie-0.2.5.crate",30186+ name = "zerotrie-0.2.4.crate",
30183- sha256 = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f",30187+ sha256 = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf",
30184- strip_prefix = "zerotrie-0.2.5",30188+ strip_prefix = "zerotrie-0.2.4",
30185- urls = ["https://static.crates.io/crates/zerotrie/0.2.5/download"],30189+ urls = ["https://static.crates.io/crates/zerotrie/0.2.4/download"],
30186 visibility = [],30190 visibility = [],
30187 )30191 )
30188 30192
30189 cargo.rust_library(30193 cargo.rust_library(
30190 name = "zerotrie-0.2",30194 name = "zerotrie-0.2",
30191- srcs = [":zerotrie-0.2.5.crate"],30195+ srcs = [":zerotrie-0.2.4.crate"],
30192 crate = "zerotrie",30196 crate = "zerotrie",
30193- crate_root = "zerotrie-0.2.5.crate/src/lib.rs",30197+ crate_root = "zerotrie-0.2.4.crate/src/lib.rs",
30194 edition = "2021",30198 edition = "2021",
30195 env = {30199 env = {
30196 "CARGO_BIN_NAME": "zerotrie",30200 "CARGO_BIN_NAME": "zerotrie",
30197 "CARGO_CRATE_NAME": "zerotrie",30201 "CARGO_CRATE_NAME": "zerotrie",
30198- "CARGO_MANIFEST_DIR": "zerotrie-0.2.5.crate",30202+ "CARGO_MANIFEST_DIR": "zerotrie-0.2.4.crate",
30199 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",30203 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
30200 "CARGO_PKG_DESCRIPTION": "A data structure that efficiently maps strings to integers",30204 "CARGO_PKG_DESCRIPTION": "A data structure that efficiently maps strings to integers",
30201 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",30205 "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org",
@@ -30203,10 +30207,10 @@ cargo.rust_library(
30203 "CARGO_PKG_README": "README.md",30207 "CARGO_PKG_README": "README.md",
30204 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",30208 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
30205 "CARGO_PKG_RUST_VERSION": "1.82",30209 "CARGO_PKG_RUST_VERSION": "1.82",
30206- "CARGO_PKG_VERSION": "0.2.5",30210+ "CARGO_PKG_VERSION": "0.2.4",
30207 "CARGO_PKG_VERSION_MAJOR": "0",30211 "CARGO_PKG_VERSION_MAJOR": "0",
30208 "CARGO_PKG_VERSION_MINOR": "2",30212 "CARGO_PKG_VERSION_MINOR": "2",
30209- "CARGO_PKG_VERSION_PATCH": "5",30213+ "CARGO_PKG_VERSION_PATCH": "4",
30210 "CARGO_PKG_VERSION_PRE": "",30214 "CARGO_PKG_VERSION_PRE": "",
30211 },30215 },
30212 features = [30216 features = [
@@ -30222,23 +30226,23 @@ cargo.rust_library(
30222 )30226 )
30223 30227
30224 http_archive(30228 http_archive(
30225- name = "zerovec-0.11.8.crate",30229+ name = "zerovec-0.11.6.crate",
30226- sha256 = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8",30230+ sha256 = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239",
30227- strip_prefix = "zerovec-0.11.8",30231+ strip_prefix = "zerovec-0.11.6",
30228- urls = ["https://static.crates.io/crates/zerovec/0.11.8/download"],30232+ urls = ["https://static.crates.io/crates/zerovec/0.11.6/download"],
30229 visibility = [],30233 visibility = [],
30230 )30234 )
30231 30235
30232 cargo.rust_library(30236 cargo.rust_library(
30233 name = "zerovec-0.11",30237 name = "zerovec-0.11",
30234- srcs = [":zerovec-0.11.8.crate"],30238+ srcs = [":zerovec-0.11.6.crate"],
30235 crate = "zerovec",30239 crate = "zerovec",
30236- crate_root = "zerovec-0.11.8.crate/src/lib.rs",30240+ crate_root = "zerovec-0.11.6.crate/src/lib.rs",
30237 edition = "2021",30241 edition = "2021",
30238 env = {30242 env = {
30239 "CARGO_BIN_NAME": "zerovec",30243 "CARGO_BIN_NAME": "zerovec",
30240 "CARGO_CRATE_NAME": "zerovec",30244 "CARGO_CRATE_NAME": "zerovec",
30241- "CARGO_MANIFEST_DIR": "zerovec-0.11.8.crate",30245+ "CARGO_MANIFEST_DIR": "zerovec-0.11.6.crate",
30242 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",30246 "CARGO_PKG_AUTHORS": "The ICU4X Project Developers",
30243 "CARGO_PKG_DESCRIPTION": "Zero-copy vector backed by a byte array",30247 "CARGO_PKG_DESCRIPTION": "Zero-copy vector backed by a byte array",
30244 "CARGO_PKG_HOMEPAGE": "",30248 "CARGO_PKG_HOMEPAGE": "",
@@ -30246,10 +30250,10 @@ cargo.rust_library(
30246 "CARGO_PKG_README": "README.md",30250 "CARGO_PKG_README": "README.md",
30247 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",30251 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
30248 "CARGO_PKG_RUST_VERSION": "1.83",30252 "CARGO_PKG_RUST_VERSION": "1.83",
30249- "CARGO_PKG_VERSION": "0.11.8",30253+ "CARGO_PKG_VERSION": "0.11.6",
30250 "CARGO_PKG_VERSION_MAJOR": "0",30254 "CARGO_PKG_VERSION_MAJOR": "0",
30251 "CARGO_PKG_VERSION_MINOR": "11",30255 "CARGO_PKG_VERSION_MINOR": "11",
30252- "CARGO_PKG_VERSION_PATCH": "8",30256+ "CARGO_PKG_VERSION_PATCH": "6",
30253 "CARGO_PKG_VERSION_PRE": "",30257 "CARGO_PKG_VERSION_PRE": "",
30254 },30258 },
30255 features = [30259 features = [
@@ -30265,23 +30269,23 @@ cargo.rust_library(
30265 )30269 )
30266 30270
30267 http_archive(30271 http_archive(
30268- name = "zerovec-derive-0.11.6.crate",30272+ name = "zerovec-derive-0.11.3.crate",
30269- sha256 = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da",30273+ sha256 = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555",
30270- strip_prefix = "zerovec-derive-0.11.6",30274+ strip_prefix = "zerovec-derive-0.11.3",
30271- urls = ["https://static.crates.io/crates/zerovec-derive/0.11.6/download"],30275+ urls = ["https://static.crates.io/crates/zerovec-derive/0.11.3/download"],
30272 visibility = [],30276 visibility = [],
30273 )30277 )
30274 30278
30275 cargo.rust_library(30279 cargo.rust_library(
30276 name = "zerovec-derive-0.11",30280 name = "zerovec-derive-0.11",
30277- srcs = [":zerovec-derive-0.11.6.crate"],30281+ srcs = [":zerovec-derive-0.11.3.crate"],
30278 crate = "zerovec_derive",30282 crate = "zerovec_derive",
30279- crate_root = "zerovec-derive-0.11.6.crate/src/lib.rs",30283+ crate_root = "zerovec-derive-0.11.3.crate/src/lib.rs",
30280 edition = "2021",30284 edition = "2021",
30281 env = {30285 env = {
30282 "CARGO_BIN_NAME": "zerovec_derive",30286 "CARGO_BIN_NAME": "zerovec_derive",
30283 "CARGO_CRATE_NAME": "zerovec_derive",30287 "CARGO_CRATE_NAME": "zerovec_derive",
30284- "CARGO_MANIFEST_DIR": "zerovec-derive-0.11.6.crate",30288+ "CARGO_MANIFEST_DIR": "zerovec-derive-0.11.3.crate",
30285 "CARGO_PKG_AUTHORS": "Manish Goregaokar <manishsmail@gmail.com>",30289 "CARGO_PKG_AUTHORS": "Manish Goregaokar <manishsmail@gmail.com>",
30286 "CARGO_PKG_DESCRIPTION": "Custom derive for the zerovec crate",30290 "CARGO_PKG_DESCRIPTION": "Custom derive for the zerovec crate",
30287 "CARGO_PKG_HOMEPAGE": "",30291 "CARGO_PKG_HOMEPAGE": "",
@@ -30289,10 +30293,10 @@ cargo.rust_library(
30289 "CARGO_PKG_README": "README.md",30293 "CARGO_PKG_README": "README.md",
30290 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",30294 "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x",
30291 "CARGO_PKG_RUST_VERSION": "",30295 "CARGO_PKG_RUST_VERSION": "",
30292- "CARGO_PKG_VERSION": "0.11.6",30296+ "CARGO_PKG_VERSION": "0.11.3",
30293 "CARGO_PKG_VERSION_MAJOR": "0",30297 "CARGO_PKG_VERSION_MAJOR": "0",
30294 "CARGO_PKG_VERSION_MINOR": "11",30298 "CARGO_PKG_VERSION_MINOR": "11",
30295- "CARGO_PKG_VERSION_PATCH": "6",30299+ "CARGO_PKG_VERSION_PATCH": "3",
30296 "CARGO_PKG_VERSION_PRE": "",30300 "CARGO_PKG_VERSION_PRE": "",
30297 },30301 },
30298 proc_macro = True,30302 proc_macro = True,
@@ -30300,7 +30304,7 @@ cargo.rust_library(
30300 deps = [30304 deps = [
30301 ":proc-macro2-1",30305 ":proc-macro2-1",
30302 ":quote-1",30306 ":quote-1",
30303- ":syn-3",30307+ ":syn-2",
30304 ],30308 ],
30305 )30309 )
30306 30310
@@ -30412,6 +30416,7 @@ buildscript_run(
30412 "CARGO_PKG_VERSION_MINOR": "4",30416 "CARGO_PKG_VERSION_MINOR": "4",
30413 "CARGO_PKG_VERSION_PATCH": "2",30417 "CARGO_PKG_VERSION_PATCH": "2",
30414 "CARGO_PKG_VERSION_PRE": "",30418 "CARGO_PKG_VERSION_PRE": "",
30419+ "OPT_LEVEL": "2",
30415 },30420 },
30416 features = [30421 features = [
30417 "_deflate-any",30422 "_deflate-any",
@@ -30501,6 +30506,7 @@ buildscript_run(
30501 "CARGO_PKG_VERSION_MINOR": "0",30506 "CARGO_PKG_VERSION_MINOR": "0",
30502 "CARGO_PKG_VERSION_PATCH": "23",30507 "CARGO_PKG_VERSION_PATCH": "23",
30503 "CARGO_PKG_VERSION_PRE": "",30508 "CARGO_PKG_VERSION_PRE": "",
30509+ "OPT_LEVEL": "2",
30504 },30510 },
30505 version = "1.0.23",30511 version = "1.0.23",
30506 )30512 )
@@ -30552,23 +30558,23 @@ cargo.rust_library(
30552 )30558 )
30553 30559
30554 http_archive(30560 http_archive(
30555- name = "zune-core-0.5.3.crate",30561+ name = "zune-core-0.5.1.crate",
30556- sha256 = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b",30562+ sha256 = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9",
30557- strip_prefix = "zune-core-0.5.3",30563+ strip_prefix = "zune-core-0.5.1",
30558- urls = ["https://static.crates.io/crates/zune-core/0.5.3/download"],30564+ urls = ["https://static.crates.io/crates/zune-core/0.5.1/download"],
30559 visibility = [],30565 visibility = [],
30560 )30566 )
30561 30567
30562 cargo.rust_library(30568 cargo.rust_library(
30563 name = "zune-core-0.5",30569 name = "zune-core-0.5",
30564- srcs = [":zune-core-0.5.3.crate"],30570+ srcs = [":zune-core-0.5.1.crate"],
30565 crate = "zune_core",30571 crate = "zune_core",
30566- crate_root = "zune-core-0.5.3.crate/src/lib.rs",30572+ crate_root = "zune-core-0.5.1.crate/src/lib.rs",
30567 edition = "2021",30573 edition = "2021",
30568 env = {30574 env = {
30569 "CARGO_BIN_NAME": "zune_core",30575 "CARGO_BIN_NAME": "zune_core",
30570 "CARGO_CRATE_NAME": "zune_core",30576 "CARGO_CRATE_NAME": "zune_core",
30571- "CARGO_MANIFEST_DIR": "zune-core-0.5.3.crate",30577+ "CARGO_MANIFEST_DIR": "zune-core-0.5.1.crate",
30572 "CARGO_PKG_AUTHORS": "",30578 "CARGO_PKG_AUTHORS": "",
30573 "CARGO_PKG_DESCRIPTION": "Core utilities for image processing in the zune family of crates",30579 "CARGO_PKG_DESCRIPTION": "Core utilities for image processing in the zune family of crates",
30574 "CARGO_PKG_HOMEPAGE": "",30580 "CARGO_PKG_HOMEPAGE": "",
@@ -30576,10 +30582,10 @@ cargo.rust_library(
30576 "CARGO_PKG_README": "README.md",30582 "CARGO_PKG_README": "README.md",
30577 "CARGO_PKG_REPOSITORY": "https://github.com/etemesi254/zune-image",30583 "CARGO_PKG_REPOSITORY": "https://github.com/etemesi254/zune-image",
30578 "CARGO_PKG_RUST_VERSION": "1.75.0",30584 "CARGO_PKG_RUST_VERSION": "1.75.0",
30579- "CARGO_PKG_VERSION": "0.5.3",30585+ "CARGO_PKG_VERSION": "0.5.1",
30580 "CARGO_PKG_VERSION_MAJOR": "0",30586 "CARGO_PKG_VERSION_MAJOR": "0",
30581 "CARGO_PKG_VERSION_MINOR": "5",30587 "CARGO_PKG_VERSION_MINOR": "5",
30582- "CARGO_PKG_VERSION_PATCH": "3",30588+ "CARGO_PKG_VERSION_PATCH": "1",
30583 "CARGO_PKG_VERSION_PRE": "",30589 "CARGO_PKG_VERSION_PRE": "",
30584 },30590 },
30585 features = ["std"],30591 features = ["std"],
modified third-party/rust/Cargo.lock +245 -349
@@ -1,6 +1,6 @@
11 # This file is automatically @generated by Cargo.
22 # It is not intended for manual editing.
3-version = 3
3+version = 4
44
55 [[package]]
66 name = "ab_glyph"
@@ -39,7 +39,7 @@ version = "0.5.2"
3939 source = "registry+https://github.com/rust-lang/crates.io-index"
4040 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
4141 dependencies = [
42- "crypto-common 0.1.7",
42+ "crypto-common 0.1.6",
4343 "generic-array",
4444 ]
4545
@@ -83,9 +83,9 @@ dependencies = [
8383
8484 [[package]]
8585 name = "aho-corasick"
86-version = "1.1.5"
86+version = "1.1.4"
8787 source = "registry+https://github.com/rust-lang/crates.io-index"
88-checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
88+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
8989 dependencies = [
9090 "memchr",
9191 ]
@@ -134,7 +134,7 @@ dependencies = [
134134 "ndk-context",
135135 "ndk-sys",
136136 "num_enum",
137- "thiserror 2.0.20",
137+ "thiserror 2.0.19",
138138 ]
139139
140140 [[package]]
@@ -145,9 +145,9 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
145145
146146 [[package]]
147147 name = "android_system_properties"
148-version = "0.1.6"
148+version = "0.1.5"
149149 source = "registry+https://github.com/rust-lang/crates.io-index"
150-checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
150+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
151151 dependencies = [
152152 "libc",
153153 ]
@@ -267,15 +267,15 @@ dependencies = [
267267 "objc2-foundation 0.3.2",
268268 "parking_lot",
269269 "percent-encoding",
270- "windows-sys 0.60.2",
270+ "windows-sys 0.59.0",
271271 "x11rb",
272272 ]
273273
274274 [[package]]
275275 name = "archery"
276-version = "1.2.3"
276+version = "1.2.2"
277277 source = "registry+https://github.com/rust-lang/crates.io-index"
278-checksum = "33ca55ee147b1926dbea904f50fe4902494e97bc742205abbbf10c709e43815f"
278+checksum = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d"
279279 dependencies = [
280280 "triomphe",
281281 ]
@@ -322,7 +322,7 @@ dependencies = [
322322 "nom 7.1.3",
323323 "num-traits",
324324 "rusticata-macros",
325- "thiserror 2.0.20",
325+ "thiserror 2.0.19",
326326 "time",
327327 ]
328328
@@ -351,13 +351,13 @@ dependencies = [
351351
352352 [[package]]
353353 name = "async-trait"
354-version = "0.1.92"
354+version = "0.1.91"
355355 source = "registry+https://github.com/rust-lang/crates.io-index"
356-checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
356+checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
357357 dependencies = [
358358 "proc-macro2",
359359 "quote",
360- "syn 3.0.4",
360+ "syn 3.0.3",
361361 ]
362362
363363 [[package]]
@@ -458,9 +458,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
458458
459459 [[package]]
460460 name = "aws-lc-rs"
461-version = "1.18.0"
461+version = "1.17.3"
462462 source = "registry+https://github.com/rust-lang/crates.io-index"
463-checksum = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e"
463+checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
464464 dependencies = [
465465 "aws-lc-sys",
466466 "untrusted 0.7.1",
@@ -469,9 +469,9 @@ dependencies = [
469469
470470 [[package]]
471471 name = "aws-lc-sys"
472-version = "0.44.0"
472+version = "0.43.0"
473473 source = "registry+https://github.com/rust-lang/crates.io-index"
474-checksum = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483"
474+checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
475475 dependencies = [
476476 "cc",
477477 "cmake",
@@ -506,12 +506,6 @@ dependencies = [
506506 "windows-link",
507507 ]
508508
509-[[package]]
510-name = "base16ct"
511-version = "1.0.0"
512-source = "registry+https://github.com/rust-lang/crates.io-index"
513-checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
514-
515509 [[package]]
516510 name = "base32"
517511 version = "0.5.1"
@@ -594,15 +588,16 @@ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
594588
595589 [[package]]
596590 name = "blake3"
597-version = "1.8.7"
591+version = "1.8.5"
598592 source = "registry+https://github.com/rust-lang/crates.io-index"
599-checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
593+checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
600594 dependencies = [
595+ "arrayref",
601596 "arrayvec",
602597 "cc",
603598 "cfg-if",
604599 "constant_time_eq",
605- "cpufeatures 0.3.1",
600+ "cpufeatures 0.3.0",
606601 ]
607602
608603 [[package]]
@@ -676,13 +671,13 @@ dependencies = [
676671
677672 [[package]]
678673 name = "bytemuck_derive"
679-version = "1.12.0"
674+version = "1.11.0"
680675 source = "registry+https://github.com/rust-lang/crates.io-index"
681-checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
676+checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
682677 dependencies = [
683678 "proc-macro2",
684679 "quote",
685- "syn 3.0.4",
680+ "syn 2.0.119",
686681 ]
687682
688683 [[package]]
@@ -759,9 +754,9 @@ dependencies = [
759754
760755 [[package]]
761756 name = "cc"
762-version = "1.4.4"
757+version = "1.4.0"
763758 source = "registry+https://github.com/rust-lang/crates.io-index"
764-checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
759+checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
765760 dependencies = [
766761 "find-msvc-tools",
767762 "jobserver",
@@ -786,9 +781,9 @@ dependencies = [
786781
787782 [[package]]
788783 name = "cfg-expr"
789-version = "0.20.9"
784+version = "0.20.8"
790785 source = "registry+https://github.com/rust-lang/crates.io-index"
791-checksum = "fe4ece8474b5f766c63426647e7b4b316b67431ade1036a8313cee24a03ae917"
786+checksum = "fb693542bcafa528e198be0ebd9d3632ca5b7c93dbe7237460e199910835997c"
792787 dependencies = [
793788 "smallvec",
794789 "target-lexicon",
@@ -823,12 +818,12 @@ dependencies = [
823818
824819 [[package]]
825820 name = "chacha20"
826-version = "0.10.2"
821+version = "0.10.1"
827822 source = "registry+https://github.com/rust-lang/crates.io-index"
828-checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
823+checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
829824 dependencies = [
830825 "cfg-if",
831- "cpufeatures 0.3.1",
826+ "cpufeatures 0.3.0",
832827 "rand_core 0.10.1",
833828 ]
834829
@@ -850,7 +845,7 @@ version = "0.4.4"
850845 source = "registry+https://github.com/rust-lang/crates.io-index"
851846 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
852847 dependencies = [
853- "crypto-common 0.1.7",
848+ "crypto-common 0.1.6",
854849 "inout",
855850 ]
856851
@@ -935,7 +930,7 @@ version = "0.3.0"
935930 source = "registry+https://github.com/rust-lang/crates.io-index"
936931 checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
937932 dependencies = [
938- "thiserror 2.0.20",
933+ "thiserror 2.0.19",
939934 ]
940935
941936 [[package]]
@@ -958,9 +953,9 @@ dependencies = [
958953
959954 [[package]]
960955 name = "combine"
961-version = "4.6.8"
956+version = "4.6.7"
962957 source = "registry+https://github.com/rust-lang/crates.io-index"
963-checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
958+checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
964959 dependencies = [
965960 "bytes",
966961 "memchr",
@@ -978,7 +973,7 @@ dependencies = [
978973 [[package]]
979974 name = "conducer"
980975 version = "0.3.1"
981-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
976+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
982977
983978 [[package]]
984979 name = "const-oid"
@@ -1150,9 +1145,9 @@ dependencies = [
11501145
11511146 [[package]]
11521147 name = "cpufeatures"
1153-version = "0.3.1"
1148+version = "0.3.0"
11541149 source = "registry+https://github.com/rust-lang/crates.io-index"
1155-checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
1150+checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
11561151 dependencies = [
11571152 "libc",
11581153 ]
@@ -1214,9 +1209,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
12141209
12151210 [[package]]
12161211 name = "crypto-common"
1217-version = "0.1.7"
1212+version = "0.1.6"
12181213 source = "registry+https://github.com/rust-lang/crates.io-index"
1219-checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1214+checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
12201215 dependencies = [
12211216 "generic-array",
12221217 "typenum",
@@ -1361,9 +1356,9 @@ checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
13611356
13621357 [[package]]
13631358 name = "data-encoding"
1364-version = "2.11.1"
1359+version = "2.11.0"
13651360 source = "registry+https://github.com/rust-lang/crates.io-index"
1366-checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
1361+checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
13671362
13681363 [[package]]
13691364 name = "dbus"
@@ -1403,7 +1398,7 @@ version = "1.0.0"
14031398 source = "registry+https://github.com/rust-lang/crates.io-index"
14041399 checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
14051400 dependencies = [
1406- "thiserror 2.0.20",
1401+ "thiserror 2.0.19",
14071402 ]
14081403
14091404 [[package]]
@@ -1518,7 +1513,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
15181513 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
15191514 dependencies = [
15201515 "block-buffer 0.10.4",
1521- "crypto-common 0.1.7",
1516+ "crypto-common 0.1.6",
15221517 ]
15231518
15241519 [[package]]
@@ -1558,7 +1553,7 @@ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
15581553 dependencies = [
15591554 "proc-macro2",
15601555 "quote",
1561- "syn 3.0.4",
1556+ "syn 3.0.3",
15621557 ]
15631558
15641559 [[package]]
@@ -1626,12 +1621,12 @@ dependencies = [
16261621
16271622 [[package]]
16281623 name = "ed25519"
1629-version = "3.0.0"
1624+version = "3.0.0-rc.4"
16301625 source = "registry+https://github.com/rust-lang/crates.io-index"
1631-checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
1626+checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
16321627 dependencies = [
16331628 "pkcs8",
1634- "serdect",
1629+ "serde",
16351630 "signature",
16361631 ]
16371632
@@ -1704,9 +1699,9 @@ dependencies = [
17041699
17051700 [[package]]
17061701 name = "either"
1707-version = "1.18.0"
1702+version = "1.17.0"
17081703 source = "registry+https://github.com/rust-lang/crates.io-index"
1709-checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
1704+checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
17101705
17111706 [[package]]
17121707 name = "emath"
@@ -1752,13 +1747,13 @@ dependencies = [
17521747
17531748 [[package]]
17541749 name = "enum-assoc"
1755-version = "1.4.1"
1750+version = "1.3.0"
17561751 source = "registry+https://github.com/rust-lang/crates.io-index"
1757-checksum = "0590c4a94da3372e83493b956755a6e2266830b6e4e3b101afe66e3f39477b91"
1752+checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7"
17581753 dependencies = [
17591754 "proc-macro2",
17601755 "quote",
1761- "syn 3.0.4",
1756+ "syn 2.0.119",
17621757 ]
17631758
17641759 [[package]]
@@ -1914,9 +1909,9 @@ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
19141909
19151910 [[package]]
19161911 name = "find-msvc-tools"
1917-version = "0.1.11"
1912+version = "0.1.9"
19181913 source = "registry+https://github.com/rust-lang/crates.io-index"
1919-checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
1914+checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
19201915
19211916 [[package]]
19221917 name = "fixed-resample"
@@ -1983,7 +1978,7 @@ checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
19831978 dependencies = [
19841979 "proc-macro2",
19851980 "quote",
1986- "syn 3.0.4",
1981+ "syn 3.0.3",
19871982 ]
19881983
19891984 [[package]]
@@ -2009,9 +2004,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
20092004
20102005 [[package]]
20112006 name = "futures"
2012-version = "0.3.34"
2007+version = "0.3.33"
20132008 source = "registry+https://github.com/rust-lang/crates.io-index"
2014-checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
2009+checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
20152010 dependencies = [
20162011 "futures-channel",
20172012 "futures-core",
@@ -2037,9 +2032,9 @@ dependencies = [
20372032
20382033 [[package]]
20392034 name = "futures-channel"
2040-version = "0.3.34"
2035+version = "0.3.33"
20412036 source = "registry+https://github.com/rust-lang/crates.io-index"
2042-checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
2037+checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
20432038 dependencies = [
20442039 "futures-core",
20452040 "futures-sink",
@@ -2060,15 +2055,15 @@ dependencies = [
20602055
20612056 [[package]]
20622057 name = "futures-core"
2063-version = "0.3.34"
2058+version = "0.3.33"
20642059 source = "registry+https://github.com/rust-lang/crates.io-index"
2065-checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
2060+checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
20662061
20672062 [[package]]
20682063 name = "futures-executor"
2069-version = "0.3.34"
2064+version = "0.3.33"
20702065 source = "registry+https://github.com/rust-lang/crates.io-index"
2071-checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
2066+checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
20722067 dependencies = [
20732068 "futures-core",
20742069 "futures-task",
@@ -2077,9 +2072,9 @@ dependencies = [
20772072
20782073 [[package]]
20792074 name = "futures-io"
2080-version = "0.3.34"
2075+version = "0.3.33"
20812076 source = "registry+https://github.com/rust-lang/crates.io-index"
2082-checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
2077+checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
20832078
20842079 [[package]]
20852080 name = "futures-lite"
@@ -2096,32 +2091,32 @@ dependencies = [
20962091
20972092 [[package]]
20982093 name = "futures-macro"
2099-version = "0.3.34"
2094+version = "0.3.33"
21002095 source = "registry+https://github.com/rust-lang/crates.io-index"
2101-checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
2096+checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
21022097 dependencies = [
21032098 "proc-macro2",
21042099 "quote",
2105- "syn 3.0.4",
2100+ "syn 2.0.119",
21062101 ]
21072102
21082103 [[package]]
21092104 name = "futures-sink"
2110-version = "0.3.34"
2105+version = "0.3.33"
21112106 source = "registry+https://github.com/rust-lang/crates.io-index"
2112-checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
2107+checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
21132108
21142109 [[package]]
21152110 name = "futures-task"
2116-version = "0.3.34"
2111+version = "0.3.33"
21172112 source = "registry+https://github.com/rust-lang/crates.io-index"
2118-checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
2113+checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
21192114
21202115 [[package]]
21212116 name = "futures-util"
2122-version = "0.3.34"
2117+version = "0.3.33"
21232118 source = "registry+https://github.com/rust-lang/crates.io-index"
2124-checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
2119+checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
21252120 dependencies = [
21262121 "futures-channel",
21272122 "futures-core",
@@ -2151,9 +2146,9 @@ dependencies = [
21512146
21522147 [[package]]
21532148 name = "generic-array"
2154-version = "0.14.7"
2149+version = "0.14.9"
21552150 source = "registry+https://github.com/rust-lang/crates.io-index"
2156-checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2151+checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
21572152 dependencies = [
21582153 "typenum",
21592154 "version_check",
@@ -2335,9 +2330,9 @@ dependencies = [
23352330
23362331 [[package]]
23372332 name = "h2"
2338-version = "0.4.19"
2333+version = "0.4.15"
23392334 source = "registry+https://github.com/rust-lang/crates.io-index"
2340-checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16"
2335+checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
23412336 dependencies = [
23422337 "atomic-waker",
23432338 "bytes",
@@ -2345,7 +2340,7 @@ dependencies = [
23452340 "futures-core",
23462341 "futures-sink",
23472342 "http",
2348- "indexmap 2.14.1",
2343+ "indexmap 2.14.0",
23492344 "slab",
23502345 "tokio",
23512346 "tokio-util",
@@ -2366,7 +2361,7 @@ dependencies = [
23662361 [[package]]
23672362 name = "hang"
23682363 version = "0.15.4"
2369-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
2364+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
23702365 dependencies = [
23712366 "buf-list",
23722367 "bytes",
@@ -2379,7 +2374,7 @@ dependencies = [
23792374 "serde",
23802375 "serde_json",
23812376 "serde_with",
2382- "thiserror 2.0.20",
2377+ "thiserror 2.0.19",
23832378 "tokio",
23842379 "tracing",
23852380 "url",
@@ -2471,7 +2466,7 @@ dependencies = [
24712466 "rand 0.9.5",
24722467 "ring",
24732468 "rustls",
2474- "thiserror 2.0.20",
2469+ "thiserror 2.0.19",
24752470 "tinyvec",
24762471 "tokio",
24772472 "tokio-rustls",
@@ -2496,7 +2491,7 @@ dependencies = [
24962491 "resolv-conf",
24972492 "rustls",
24982493 "smallvec",
2499- "thiserror 2.0.20",
2494+ "thiserror 2.0.19",
25002495 "tokio",
25012496 "tokio-rustls",
25022497 "tracing",
@@ -2530,9 +2525,9 @@ dependencies = [
25302525
25312526 [[package]]
25322527 name = "http-body-util"
2533-version = "0.1.5"
2528+version = "0.1.4"
25342529 source = "registry+https://github.com/rust-lang/crates.io-index"
2535-checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
2530+checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
25362531 dependencies = [
25372532 "bytes",
25382533 "futures-core",
@@ -2571,18 +2566,18 @@ dependencies = [
25712566
25722567 [[package]]
25732568 name = "hybrid-array"
2574-version = "0.4.14"
2569+version = "0.4.13"
25752570 source = "registry+https://github.com/rust-lang/crates.io-index"
2576-checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
2571+checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
25772572 dependencies = [
25782573 "typenum",
25792574 ]
25802575
25812576 [[package]]
25822577 name = "hyper"
2583-version = "1.11.1"
2578+version = "1.11.0"
25842579 source = "registry+https://github.com/rust-lang/crates.io-index"
2585-checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
2580+checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
25862581 dependencies = [
25872582 "atomic-waker",
25882583 "bytes",
@@ -2664,9 +2659,9 @@ dependencies = [
26642659
26652660 [[package]]
26662661 name = "icu_collections"
2667-version = "2.3.0"
2662+version = "2.2.0"
26682663 source = "registry+https://github.com/rust-lang/crates.io-index"
2669-checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
2664+checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
26702665 dependencies = [
26712666 "displaydoc",
26722667 "potential_utf",
@@ -2678,9 +2673,9 @@ dependencies = [
26782673
26792674 [[package]]
26802675 name = "icu_locale_core"
2681-version = "2.3.0"
2676+version = "2.2.0"
26822677 source = "registry+https://github.com/rust-lang/crates.io-index"
2683-checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
2678+checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
26842679 dependencies = [
26852680 "displaydoc",
26862681 "litemap",
@@ -2691,9 +2686,9 @@ dependencies = [
26912686
26922687 [[package]]
26932688 name = "icu_normalizer"
2694-version = "2.3.0"
2689+version = "2.2.0"
26952690 source = "registry+https://github.com/rust-lang/crates.io-index"
2696-checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
2691+checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
26972692 dependencies = [
26982693 "icu_collections",
26992694 "icu_normalizer_data",
@@ -2705,17 +2700,16 @@ dependencies = [
27052700
27062701 [[package]]
27072702 name = "icu_normalizer_data"
2708-version = "2.3.0"
2703+version = "2.2.0"
27092704 source = "registry+https://github.com/rust-lang/crates.io-index"
2710-checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
2705+checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
27112706
27122707 [[package]]
27132708 name = "icu_properties"
2714-version = "2.3.0"
2709+version = "2.2.0"
27152710 source = "registry+https://github.com/rust-lang/crates.io-index"
2716-checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
2711+checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
27172712 dependencies = [
2718- "displaydoc",
27192713 "icu_collections",
27202714 "icu_locale_core",
27212715 "icu_properties_data",
@@ -2726,15 +2720,15 @@ dependencies = [
27262720
27272721 [[package]]
27282722 name = "icu_properties_data"
2729-version = "2.3.0"
2723+version = "2.2.0"
27302724 source = "registry+https://github.com/rust-lang/crates.io-index"
2731-checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
2725+checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
27322726
27332727 [[package]]
27342728 name = "icu_provider"
2735-version = "2.3.1"
2729+version = "2.2.0"
27362730 source = "registry+https://github.com/rust-lang/crates.io-index"
2737-checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
2731+checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
27382732 dependencies = [
27392733 "displaydoc",
27402734 "icu_locale_core",
@@ -2828,9 +2822,9 @@ dependencies = [
28282822
28292823 [[package]]
28302824 name = "indexmap"
2831-version = "2.14.1"
2825+version = "2.14.0"
28322826 source = "registry+https://github.com/rust-lang/crates.io-index"
2833-checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
2827+checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
28342828 dependencies = [
28352829 "equivalent",
28362830 "hashbrown 0.17.1",
@@ -2862,9 +2856,9 @@ dependencies = [
28622856
28632857 [[package]]
28642858 name = "ipnet"
2865-version = "2.12.1"
2859+version = "2.12.0"
28662860 source = "registry+https://github.com/rust-lang/crates.io-index"
2867-checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
2861+checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
28682862
28692863 [[package]]
28702864 name = "iroh"
@@ -2953,7 +2947,7 @@ dependencies = [
29532947 "futures-lite",
29542948 "futures-util",
29552949 "hex",
2956- "indexmap 2.14.1",
2950+ "indexmap 2.14.0",
29572951 "iroh",
29582952 "iroh-base",
29592953 "iroh-metrics",
@@ -3212,12 +3206,10 @@ dependencies = [
32123206 "defmt",
32133207 "jiff-core",
32143208 "jiff-static",
3215- "jiff-tzdb-platform",
32163209 "log",
32173210 "portable-atomic",
32183211 "portable-atomic-util",
32193212 "serde_core",
3220- "windows-link",
32213213 ]
32223214
32233215 [[package]]
@@ -3241,21 +3233,6 @@ dependencies = [
32413233 "syn 2.0.119",
32423234 ]
32433235
3244-[[package]]
3245-name = "jiff-tzdb"
3246-version = "0.1.8"
3247-source = "registry+https://github.com/rust-lang/crates.io-index"
3248-checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
3249-
3250-[[package]]
3251-name = "jiff-tzdb-platform"
3252-version = "0.1.3"
3253-source = "registry+https://github.com/rust-lang/crates.io-index"
3254-checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
3255-dependencies = [
3256- "jiff-tzdb",
3257-]
3258-
32593236 [[package]]
32603237 name = "jni"
32613238 version = "0.21.1"
@@ -3284,7 +3261,7 @@ dependencies = [
32843261 "jni-sys 0.4.1",
32853262 "log",
32863263 "simd_cesu8",
3287- "thiserror 2.0.20",
3264+ "thiserror 2.0.19",
32883265 "walkdir",
32893266 "windows-link",
32903267 ]
@@ -3374,7 +3351,7 @@ dependencies = [
33743351 "objc2-foundation 0.3.2",
33753352 "openh264",
33763353 "png 0.17.16",
3377- "rand 0.8.8",
3354+ "rand 0.8.7",
33783355 "rustls",
33793356 "tokio",
33803357 "url",
@@ -3386,9 +3363,9 @@ dependencies = [
33863363
33873364 [[package]]
33883365 name = "js-sys"
3389-version = "0.3.104"
3366+version = "0.3.103"
33903367 source = "registry+https://github.com/rust-lang/crates.io-index"
3391-checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
3368+checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
33923369 dependencies = [
33933370 "cfg-if",
33943371 "futures-util",
@@ -3502,9 +3479,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
35023479
35033480 [[package]]
35043481 name = "litemap"
3505-version = "0.8.3"
3482+version = "0.8.2"
35063483 source = "registry+https://github.com/rust-lang/crates.io-index"
3507-checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
3484+checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
35083485
35093486 [[package]]
35103487 name = "litrs"
@@ -3523,9 +3500,9 @@ dependencies = [
35233500
35243501 [[package]]
35253502 name = "log"
3526-version = "0.4.34"
3503+version = "0.4.33"
35273504 source = "registry+https://github.com/rust-lang/crates.io-index"
3528-checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
3505+checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
35293506
35303507 [[package]]
35313508 name = "loom"
@@ -3652,9 +3629,9 @@ dependencies = [
36523629
36533630 [[package]]
36543631 name = "moka"
3655-version = "0.12.16"
3632+version = "0.12.15"
36563633 source = "registry+https://github.com/rust-lang/crates.io-index"
3657-checksum = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9"
3634+checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
36583635 dependencies = [
36593636 "crossbeam-channel",
36603637 "crossbeam-epoch",
@@ -3670,7 +3647,7 @@ dependencies = [
36703647 [[package]]
36713648 name = "moq-lite"
36723649 version = "0.15.5"
3673-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
3650+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
36743651 dependencies = [
36753652 "bytes",
36763653 "conducer",
@@ -3678,7 +3655,7 @@ dependencies = [
36783655 "num_enum",
36793656 "rand 0.9.5",
36803657 "serde",
3681- "thiserror 2.0.20",
3658+ "thiserror 2.0.19",
36823659 "tokio",
36833660 "tracing",
36843661 "web-async",
@@ -3718,7 +3695,7 @@ dependencies = [
37183695 [[package]]
37193696 name = "moq-native"
37203697 version = "0.13.6"
3721-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
3698+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
37223699 dependencies = [
37233700 "anyhow",
37243701 "clap",
@@ -3888,9 +3865,9 @@ dependencies = [
38883865
38893866 [[package]]
38903867 name = "netlink-packet-core"
3891-version = "0.8.2"
3868+version = "0.8.1"
38923869 source = "registry+https://github.com/rust-lang/crates.io-index"
3893-checksum = "b897d7bd4f0af82e68d40d0344cf37e97f9c97ddf74a098de3e4da05e96ca395"
3870+checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4"
38943871 dependencies = [
38953872 "paste",
38963873 ]
@@ -3909,9 +3886,9 @@ dependencies = [
39093886
39103887 [[package]]
39113888 name = "netlink-proto"
3912-version = "0.12.2"
3889+version = "0.12.1"
39133890 source = "registry+https://github.com/rust-lang/crates.io-index"
3914-checksum = "93af8261786086024cd5e96e0a991dd65ced07bbf7c233a487bbc96b971d5539"
3891+checksum = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6"
39153892 dependencies = [
39163893 "bytes",
39173894 "futures-channel",
@@ -3919,7 +3896,7 @@ dependencies = [
39193896 "log",
39203897 "netlink-packet-core",
39213898 "netlink-sys",
3922- "thiserror 2.0.20",
3899+ "thiserror 2.0.19",
39233900 ]
39243901
39253902 [[package]]
@@ -4034,7 +4011,7 @@ dependencies = [
40344011 "rustc-hash 2.1.3",
40354012 "rustls",
40364013 "socket2",
4037- "thiserror 2.0.20",
4014+ "thiserror 2.0.19",
40384015 "tokio",
40394016 "tokio-stream",
40404017 "tracing",
@@ -4062,7 +4039,7 @@ dependencies = [
40624039 "rustls-platform-verifier 0.6.2",
40634040 "slab",
40644041 "sorted-index-buffer",
4065- "thiserror 2.0.20",
4042+ "thiserror 2.0.19",
40664043 "tinyvec",
40674044 "tracing",
40684045 "web-time",
@@ -4151,9 +4128,9 @@ dependencies = [
41514128
41524129 [[package]]
41534130 name = "num-integer"
4154-version = "0.1.47"
4131+version = "0.1.46"
41554132 source = "registry+https://github.com/rust-lang/crates.io-index"
4156-checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
4133+checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
41574134 dependencies = [
41584135 "num-traits",
41594136 ]
@@ -4718,9 +4695,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
47184695
47194696 [[package]]
47204697 name = "openh264"
4721-version = "0.9.8"
4698+version = "0.9.7"
47224699 source = "registry+https://github.com/rust-lang/crates.io-index"
4723-checksum = "fcc9071a0b5f9c501ddd01066c2600d922cc799dc450a52975222bcda7755a08"
4700+checksum = "e6b2b561d2103303e233779545da757ecd35bad82188d619a6d8901f3007e1ff"
47244701 dependencies = [
47254702 "openh264-sys2",
47264703 "wide",
@@ -4728,9 +4705,9 @@ dependencies = [
47284705
47294706 [[package]]
47304707 name = "openh264-sys2"
4731-version = "0.9.8"
4708+version = "0.9.7"
47324709 source = "registry+https://github.com/rust-lang/crates.io-index"
4733-checksum = "6ada29a4cadc13d4d326737af87c13e224210d7d99fe47594e9f3f9b0102fd70"
4710+checksum = "75a8867e48183bbd9147380227448c065fe456eb30b0ebc68929809c36c30985"
47344711 dependencies = [
47354712 "cc",
47364713 "nasm-rs",
@@ -4764,9 +4741,9 @@ dependencies = [
47644741
47654742 [[package]]
47664743 name = "papaya"
4767-version = "0.2.5"
4744+version = "0.2.4"
47684745 source = "registry+https://github.com/rust-lang/crates.io-index"
4769-checksum = "da2442474a9404698c42509b8967f437249dbc7b50493e83020333d3943ec0ae"
4746+checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7"
47704747 dependencies = [
47714748 "equivalent",
47724749 "seize",
@@ -4840,7 +4817,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
48404817 checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
48414818 dependencies = [
48424819 "fixedbitset 0.4.2",
4843- "indexmap 2.14.1",
4820+ "indexmap 2.14.0",
48444821 ]
48454822
48464823 [[package]]
@@ -4912,7 +4889,7 @@ dependencies = [
49124889 "nix 0.30.1",
49134890 "once_cell",
49144891 "pipewire-sys",
4915- "thiserror 2.0.20",
4892+ "thiserror 2.0.19",
49164893 ]
49174894
49184895 [[package]]
@@ -4942,14 +4919,14 @@ dependencies = [
49424919 "self_cell",
49434920 "serde",
49444921 "simple-dns",
4945- "thiserror 2.0.20",
4922+ "thiserror 2.0.19",
49464923 ]
49474924
49484925 [[package]]
49494926 name = "pkcs8"
4950-version = "0.11.0"
4927+version = "0.11.0-rc.11"
49514928 source = "registry+https://github.com/rust-lang/crates.io-index"
4952-checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
4929+checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
49534930 dependencies = [
49544931 "der",
49554932 "spki",
@@ -4957,9 +4934,9 @@ dependencies = [
49574934
49584935 [[package]]
49594936 name = "pkg-config"
4960-version = "0.3.34"
4937+version = "0.3.33"
49614938 source = "registry+https://github.com/rust-lang/crates.io-index"
4962-checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
4939+checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
49634940
49644941 [[package]]
49654942 name = "plain"
@@ -4974,7 +4951,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
49744951 checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"
49754952 dependencies = [
49764953 "base64",
4977- "indexmap 2.14.1",
4954+ "indexmap 2.14.0",
49784955 "quick-xml",
49794956 "serde",
49804957 "time",
@@ -5034,9 +5011,9 @@ dependencies = [
50345011
50355012 [[package]]
50365013 name = "portable-atomic"
5037-version = "1.15.0"
5014+version = "1.14.0"
50385015 source = "registry+https://github.com/rust-lang/crates.io-index"
5039-checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
5016+checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
50405017 dependencies = [
50415018 "serde",
50425019 ]
@@ -5107,9 +5084,9 @@ dependencies = [
51075084
51085085 [[package]]
51095086 name = "potential_utf"
5110-version = "0.1.6"
5087+version = "0.1.5"
51115088 source = "registry+https://github.com/rust-lang/crates.io-index"
5112-checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
5089+checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
51135090 dependencies = [
51145091 "zerovec",
51155092 ]
@@ -5203,7 +5180,7 @@ dependencies = [
52035180 "bytes",
52045181 "futures",
52055182 "rustls",
5206- "thiserror 2.0.20",
5183+ "thiserror 2.0.19",
52075184 "tokio",
52085185 "tokio-rustls",
52095186 "tokio-tungstenite",
@@ -5241,7 +5218,7 @@ dependencies = [
52415218 "rustc-hash 2.1.3",
52425219 "rustls",
52435220 "socket2",
5244- "thiserror 2.0.20",
5221+ "thiserror 2.0.19",
52455222 "tokio",
52465223 "tracing",
52475224 "web-time",
@@ -5249,9 +5226,9 @@ dependencies = [
52495226
52505227 [[package]]
52515228 name = "quinn-proto"
5252-version = "0.11.17"
5229+version = "0.11.16"
52535230 source = "registry+https://github.com/rust-lang/crates.io-index"
5254-checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83"
5231+checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
52555232 dependencies = [
52565233 "aws-lc-rs",
52575234 "bytes",
@@ -5266,7 +5243,7 @@ dependencies = [
52665243 "rustls-pki-types",
52675244 "rustls-platform-verifier 0.7.0",
52685245 "slab",
5269- "thiserror 2.0.20",
5246+ "thiserror 2.0.19",
52705247 "tinyvec",
52715248 "tracing",
52725249 "web-time",
@@ -5309,9 +5286,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
53095286
53105287 [[package]]
53115288 name = "rand"
5312-version = "0.8.8"
5289+version = "0.8.7"
53135290 source = "registry+https://github.com/rust-lang/crates.io-index"
5314-checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
5291+checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
53155292 dependencies = [
53165293 "libc",
53175294 "rand_chacha 0.3.1",
@@ -5420,9 +5397,9 @@ dependencies = [
54205397
54215398 [[package]]
54225399 name = "rcgen"
5423-version = "0.14.10"
5400+version = "0.14.8"
54245401 source = "registry+https://github.com/rust-lang/crates.io-index"
5425-checksum = "8774e05a7d0de114588e6a28fe7e71694b82614ed569d86d8b389dfbc98b8ad8"
5402+checksum = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055"
54265403 dependencies = [
54275404 "aws-lc-rs",
54285405 "rustls-pki-types",
@@ -5469,22 +5446,22 @@ dependencies = [
54695446
54705447 [[package]]
54715448 name = "ref-cast"
5472-version = "1.0.27"
5449+version = "1.0.26"
54735450 source = "registry+https://github.com/rust-lang/crates.io-index"
5474-checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
5451+checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
54755452 dependencies = [
54765453 "ref-cast-impl",
54775454 ]
54785455
54795456 [[package]]
54805457 name = "ref-cast-impl"
5481-version = "1.0.27"
5458+version = "1.0.26"
54825459 source = "registry+https://github.com/rust-lang/crates.io-index"
5483-checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
5460+checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
54845461 dependencies = [
54855462 "proc-macro2",
54865463 "quote",
5487- "syn 3.0.4",
5464+ "syn 3.0.3",
54885465 ]
54895466
54905467 [[package]]
@@ -5501,9 +5478,9 @@ dependencies = [
55015478
55025479 [[package]]
55035480 name = "regex-automata"
5504-version = "0.4.18"
5481+version = "0.4.16"
55055482 source = "registry+https://github.com/rust-lang/crates.io-index"
5506-checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
5483+checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
55075484 dependencies = [
55085485 "aho-corasick",
55095486 "memchr",
@@ -5827,9 +5804,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
58275804
58285805 [[package]]
58295806 name = "rustls-webpki"
5830-version = "0.103.15"
5807+version = "0.103.13"
58315808 source = "registry+https://github.com/rust-lang/crates.io-index"
5832-checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
5809+checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
58335810 dependencies = [
58345811 "aws-lc-rs",
58355812 "ring",
@@ -5898,9 +5875,9 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
58985875
58995876 [[package]]
59005877 name = "safe_arch"
5901-version = "1.2.0"
5878+version = "1.1.0"
59025879 source = "registry+https://github.com/rust-lang/crates.io-index"
5903-checksum = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f"
5880+checksum = "3a52ec151f024d703f9fd65abb7cbe81e7cdb39f18917a3a37e3014470dc7c59"
59045881 dependencies = [
59055882 "bytemuck",
59065883 ]
@@ -6000,6 +5977,10 @@ name = "seize"
60005977 version = "0.5.1"
60015978 source = "registry+https://github.com/rust-lang/crates.io-index"
60025979 checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
5980+dependencies = [
5981+ "libc",
5982+ "windows-sys 0.61.2",
5983+]
60035984
60045985 [[package]]
60055986 name = "self_cell"
@@ -6065,7 +6046,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
60656046 dependencies = [
60666047 "proc-macro2",
60676048 "quote",
6068- "syn 3.0.4",
6049+ "syn 3.0.3",
60696050 ]
60706051
60716052 [[package]]
@@ -6104,17 +6085,16 @@ dependencies = [
61046085
61056086 [[package]]
61066087 name = "serde_with"
6107-version = "3.22.0"
6088+version = "3.21.0"
61086089 source = "registry+https://github.com/rust-lang/crates.io-index"
6109-checksum = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a"
6090+checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
61106091 dependencies = [
61116092 "base64",
61126093 "bs58",
61136094 "chrono",
61146095 "hex",
61156096 "indexmap 1.9.3",
6116- "indexmap 2.14.1",
6117- "jiff",
6097+ "indexmap 2.14.0",
61186098 "schemars 0.9.0",
61196099 "schemars 1.2.2",
61206100 "serde_core",
@@ -6125,9 +6105,9 @@ dependencies = [
61256105
61266106 [[package]]
61276107 name = "serde_with_macros"
6128-version = "3.22.0"
6108+version = "3.21.0"
61296109 source = "registry+https://github.com/rust-lang/crates.io-index"
6130-checksum = "8705578779c2b6bd90d84d66eb2e206b708b1a4d7b9f17641b293545bf1c7e46"
6110+checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
61316111 dependencies = [
61326112 "darling 0.23.0",
61336113 "proc-macro2",
@@ -6135,16 +6115,6 @@ dependencies = [
61356115 "syn 2.0.119",
61366116 ]
61376117
6138-[[package]]
6139-name = "serdect"
6140-version = "0.4.3"
6141-source = "registry+https://github.com/rust-lang/crates.io-index"
6142-checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
6143-dependencies = [
6144- "base16ct",
6145- "serde",
6146-]
6147-
61486118 [[package]]
61496119 name = "sfv"
61506120 version = "0.14.0"
@@ -6152,7 +6122,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
61526122 checksum = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87"
61536123 dependencies = [
61546124 "base64",
6155- "indexmap 2.14.1",
6125+ "indexmap 2.14.0",
61566126 "ref-cast",
61576127 ]
61586128
@@ -6217,9 +6187,9 @@ dependencies = [
62176187
62186188 [[package]]
62196189 name = "signature"
6220-version = "3.0.0"
6190+version = "3.0.0-rc.10"
62216191 source = "registry+https://github.com/rust-lang/crates.io-index"
6222-checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
6192+checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
62236193
62246194 [[package]]
62256195 name = "simd-adler32"
@@ -6318,7 +6288,7 @@ dependencies = [
63186288 "log",
63196289 "memmap2",
63206290 "rustix 1.1.4",
6321- "thiserror 2.0.20",
6291+ "thiserror 2.0.19",
63226292 "wayland-backend",
63236293 "wayland-client",
63246294 "wayland-csd-frame",
@@ -6431,7 +6401,7 @@ version = "0.1.0"
64316401 source = "registry+https://github.com/rust-lang/crates.io-index"
64326402 checksum = "a053f93cc01f4e1cc51c61844a196b6d1da7e054cdd406d2cd27677ba4d898e0"
64336403 dependencies = [
6434- "cpufeatures 0.3.1",
6404+ "cpufeatures 0.3.0",
64356405 ]
64366406
64376407 [[package]]
@@ -6613,9 +6583,9 @@ dependencies = [
66136583
66146584 [[package]]
66156585 name = "syn"
6616-version = "3.0.4"
6586+version = "3.0.3"
66176587 source = "registry+https://github.com/rust-lang/crates.io-index"
6618-checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
6588+checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
66196589 dependencies = [
66206590 "proc-macro2",
66216591 "quote",
@@ -6678,11 +6648,11 @@ dependencies = [
66786648
66796649 [[package]]
66806650 name = "thiserror"
6681-version = "2.0.20"
6651+version = "2.0.19"
66826652 source = "registry+https://github.com/rust-lang/crates.io-index"
6683-checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
6653+checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
66846654 dependencies = [
6685- "thiserror-impl 2.0.20",
6655+ "thiserror-impl 2.0.19",
66866656 ]
66876657
66886658 [[package]]
@@ -6698,13 +6668,13 @@ dependencies = [
66986668
66996669 [[package]]
67006670 name = "thiserror-impl"
6701-version = "2.0.20"
6671+version = "2.0.19"
67026672 source = "registry+https://github.com/rust-lang/crates.io-index"
6703-checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
6673+checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
67046674 dependencies = [
67056675 "proc-macro2",
67066676 "quote",
6707- "syn 3.0.4",
6677+ "syn 3.0.3",
67086678 ]
67096679
67106680 [[package]]
@@ -6743,9 +6713,9 @@ dependencies = [
67436713
67446714 [[package]]
67456715 name = "time"
6746-version = "0.3.55"
6716+version = "0.3.54"
67476717 source = "registry+https://github.com/rust-lang/crates.io-index"
6748-checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
6718+checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244"
67496719 dependencies = [
67506720 "deranged",
67516721 "js-sys",
@@ -6801,9 +6771,9 @@ dependencies = [
68016771
68026772 [[package]]
68036773 name = "tinystr"
6804-version = "0.8.4"
6774+version = "0.8.3"
68056775 source = "registry+https://github.com/rust-lang/crates.io-index"
6806-checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
6776+checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
68076777 dependencies = [
68086778 "displaydoc",
68096779 "zerovec",
@@ -6849,7 +6819,7 @@ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
68496819 dependencies = [
68506820 "proc-macro2",
68516821 "quote",
6852- "syn 3.0.4",
6822+ "syn 3.0.3",
68536823 ]
68546824
68556825 [[package]]
@@ -6934,7 +6904,7 @@ version = "1.1.4+spec-1.1.0"
69346904 source = "registry+https://github.com/rust-lang/crates.io-index"
69356905 checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
69366906 dependencies = [
6937- "indexmap 2.14.1",
6907+ "indexmap 2.14.0",
69386908 "serde_core",
69396909 "serde_spanned",
69406910 "toml_datetime",
@@ -6958,7 +6928,7 @@ version = "0.25.13+spec-1.1.0"
69586928 source = "registry+https://github.com/rust-lang/crates.io-index"
69596929 checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
69606930 dependencies = [
6961- "indexmap 2.14.1",
6931+ "indexmap 2.14.0",
69626932 "toml_datetime",
69636933 "toml_parser",
69646934 "winnow",
@@ -7129,7 +7099,7 @@ dependencies = [
71297099 "rustls",
71307100 "rustls-pki-types",
71317101 "sha1",
7132- "thiserror 2.0.20",
7102+ "thiserror 2.0.19",
71337103 "utf-8",
71347104 ]
71357105
@@ -7169,7 +7139,7 @@ version = "0.5.1"
71697139 source = "registry+https://github.com/rust-lang/crates.io-index"
71707140 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
71717141 dependencies = [
7172- "crypto-common 0.1.7",
7142+ "crypto-common 0.1.6",
71737143 "subtle",
71747144 ]
71757145
@@ -7235,9 +7205,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
72357205
72367206 [[package]]
72377207 name = "uuid"
7238-version = "1.26.0"
7208+version = "1.24.0"
72397209 source = "registry+https://github.com/rust-lang/crates.io-index"
7240-checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
7210+checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
72417211 dependencies = [
72427212 "getrandom 0.4.3",
72437213 "js-sys",
@@ -7373,9 +7343,9 @@ dependencies = [
73737343
73747344 [[package]]
73757345 name = "wasm-bindgen"
7376-version = "0.2.127"
7346+version = "0.2.126"
73777347 source = "registry+https://github.com/rust-lang/crates.io-index"
7378-checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
7348+checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
73797349 dependencies = [
73807350 "cfg-if",
73817351 "once_cell",
@@ -7386,9 +7356,9 @@ dependencies = [
73867356
73877357 [[package]]
73887358 name = "wasm-bindgen-futures"
7389-version = "0.4.77"
7359+version = "0.4.76"
73907360 source = "registry+https://github.com/rust-lang/crates.io-index"
7391-checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
7361+checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
73927362 dependencies = [
73937363 "js-sys",
73947364 "wasm-bindgen",
@@ -7396,9 +7366,9 @@ dependencies = [
73967366
73977367 [[package]]
73987368 name = "wasm-bindgen-macro"
7399-version = "0.2.127"
7369+version = "0.2.126"
74007370 source = "registry+https://github.com/rust-lang/crates.io-index"
7401-checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
7371+checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
74027372 dependencies = [
74037373 "quote",
74047374 "wasm-bindgen-macro-support",
@@ -7406,9 +7376,9 @@ dependencies = [
74067376
74077377 [[package]]
74087378 name = "wasm-bindgen-macro-support"
7409-version = "0.2.127"
7379+version = "0.2.126"
74107380 source = "registry+https://github.com/rust-lang/crates.io-index"
7411-checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
7381+checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
74127382 dependencies = [
74137383 "bumpalo",
74147384 "proc-macro2",
@@ -7419,9 +7389,9 @@ dependencies = [
74197389
74207390 [[package]]
74217391 name = "wasm-bindgen-shared"
7422-version = "0.2.127"
7392+version = "0.2.126"
74237393 source = "registry+https://github.com/rust-lang/crates.io-index"
7424-checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
7394+checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
74257395 dependencies = [
74267396 "unicode-ident",
74277397 ]
@@ -7601,9 +7571,9 @@ dependencies = [
76017571
76027572 [[package]]
76037573 name = "web-sys"
7604-version = "0.3.104"
7574+version = "0.3.103"
76057575 source = "registry+https://github.com/rust-lang/crates.io-index"
7606-checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
7576+checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
76077577 dependencies = [
76087578 "js-sys",
76097579 "wasm-bindgen",
@@ -7647,7 +7617,7 @@ dependencies = [
76477617 "noq",
76487618 "rustls",
76497619 "rustls-native-certs",
7650- "thiserror 2.0.20",
7620+ "thiserror 2.0.19",
76517621 "tokio",
76527622 "tracing",
76537623 "url",
@@ -7663,7 +7633,7 @@ dependencies = [
76637633 "bytes",
76647634 "http",
76657635 "sfv",
7666- "thiserror 2.0.20",
7636+ "thiserror 2.0.19",
76677637 "tokio",
76687638 "url",
76697639 ]
@@ -7718,9 +7688,9 @@ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
77187688
77197689 [[package]]
77207690 name = "wide"
7721-version = "1.7.0"
7691+version = "1.5.0"
77227692 source = "registry+https://github.com/rust-lang/crates.io-index"
7723-checksum = "8cf05ca94c9fba0c51316899caa1d1e74a064fc310a5efa7375e614343d415be"
7693+checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89"
77247694 dependencies = [
77257695 "bytemuck",
77267696 "safe_arch",
@@ -7911,15 +7881,6 @@ dependencies = [
79117881 "windows-targets 0.52.6",
79127882 ]
79137883
7914-[[package]]
7915-name = "windows-sys"
7916-version = "0.60.2"
7917-source = "registry+https://github.com/rust-lang/crates.io-index"
7918-checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
7919-dependencies = [
7920- "windows-targets 0.53.5",
7921-]
7922-
79237884 [[package]]
79247885 name = "windows-sys"
79257886 version = "0.61.2"
@@ -7953,30 +7914,13 @@ dependencies = [
79537914 "windows_aarch64_gnullvm 0.52.6",
79547915 "windows_aarch64_msvc 0.52.6",
79557916 "windows_i686_gnu 0.52.6",
7956- "windows_i686_gnullvm 0.52.6",
7917+ "windows_i686_gnullvm",
79577918 "windows_i686_msvc 0.52.6",
79587919 "windows_x86_64_gnu 0.52.6",
79597920 "windows_x86_64_gnullvm 0.52.6",
79607921 "windows_x86_64_msvc 0.52.6",
79617922 ]
79627923
7963-[[package]]
7964-name = "windows-targets"
7965-version = "0.53.5"
7966-source = "registry+https://github.com/rust-lang/crates.io-index"
7967-checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
7968-dependencies = [
7969- "windows-link",
7970- "windows_aarch64_gnullvm 0.53.1",
7971- "windows_aarch64_msvc 0.53.1",
7972- "windows_i686_gnu 0.53.1",
7973- "windows_i686_gnullvm 0.53.1",
7974- "windows_i686_msvc 0.53.1",
7975- "windows_x86_64_gnu 0.53.1",
7976- "windows_x86_64_gnullvm 0.53.1",
7977- "windows_x86_64_msvc 0.53.1",
7978-]
7979-
79807924 [[package]]
79817925 name = "windows-threading"
79827926 version = "0.2.1"
@@ -7998,12 +7942,6 @@ version = "0.52.6"
79987942 source = "registry+https://github.com/rust-lang/crates.io-index"
79997943 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
80007944
8001-[[package]]
8002-name = "windows_aarch64_gnullvm"
8003-version = "0.53.1"
8004-source = "registry+https://github.com/rust-lang/crates.io-index"
8005-checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
8006-
80077945 [[package]]
80087946 name = "windows_aarch64_msvc"
80097947 version = "0.42.2"
@@ -8016,12 +7954,6 @@ version = "0.52.6"
80167954 source = "registry+https://github.com/rust-lang/crates.io-index"
80177955 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
80187956
8019-[[package]]
8020-name = "windows_aarch64_msvc"
8021-version = "0.53.1"
8022-source = "registry+https://github.com/rust-lang/crates.io-index"
8023-checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
8024-
80257957 [[package]]
80267958 name = "windows_i686_gnu"
80277959 version = "0.42.2"
@@ -8034,24 +7966,12 @@ version = "0.52.6"
80347966 source = "registry+https://github.com/rust-lang/crates.io-index"
80357967 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
80367968
8037-[[package]]
8038-name = "windows_i686_gnu"
8039-version = "0.53.1"
8040-source = "registry+https://github.com/rust-lang/crates.io-index"
8041-checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
8042-
80437969 [[package]]
80447970 name = "windows_i686_gnullvm"
80457971 version = "0.52.6"
80467972 source = "registry+https://github.com/rust-lang/crates.io-index"
80477973 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
80487974
8049-[[package]]
8050-name = "windows_i686_gnullvm"
8051-version = "0.53.1"
8052-source = "registry+https://github.com/rust-lang/crates.io-index"
8053-checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
8054-
80557975 [[package]]
80567976 name = "windows_i686_msvc"
80577977 version = "0.42.2"
@@ -8064,12 +7984,6 @@ version = "0.52.6"
80647984 source = "registry+https://github.com/rust-lang/crates.io-index"
80657985 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
80667986
8067-[[package]]
8068-name = "windows_i686_msvc"
8069-version = "0.53.1"
8070-source = "registry+https://github.com/rust-lang/crates.io-index"
8071-checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
8072-
80737987 [[package]]
80747988 name = "windows_x86_64_gnu"
80757989 version = "0.42.2"
@@ -8082,12 +7996,6 @@ version = "0.52.6"
80827996 source = "registry+https://github.com/rust-lang/crates.io-index"
80837997 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
80847998
8085-[[package]]
8086-name = "windows_x86_64_gnu"
8087-version = "0.53.1"
8088-source = "registry+https://github.com/rust-lang/crates.io-index"
8089-checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
8090-
80917999 [[package]]
80928000 name = "windows_x86_64_gnullvm"
80938001 version = "0.42.2"
@@ -8100,12 +8008,6 @@ version = "0.52.6"
81008008 source = "registry+https://github.com/rust-lang/crates.io-index"
81018009 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
81028010
8103-[[package]]
8104-name = "windows_x86_64_gnullvm"
8105-version = "0.53.1"
8106-source = "registry+https://github.com/rust-lang/crates.io-index"
8107-checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
8108-
81098011 [[package]]
81108012 name = "windows_x86_64_msvc"
81118013 version = "0.42.2"
@@ -8118,12 +8020,6 @@ version = "0.52.6"
81188020 source = "registry+https://github.com/rust-lang/crates.io-index"
81198021 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
81208022
8121-[[package]]
8122-name = "windows_x86_64_msvc"
8123-version = "0.53.1"
8124-source = "registry+https://github.com/rust-lang/crates.io-index"
8125-checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
8126-
81278023 [[package]]
81288024 name = "winit"
81298025 version = "0.30.13"
@@ -8201,16 +8097,16 @@ dependencies = [
82018097 "futures",
82028098 "log",
82038099 "serde",
8204- "thiserror 2.0.20",
8100+ "thiserror 2.0.19",
82058101 "windows",
82068102 "windows-core",
82078103 ]
82088104
82098105 [[package]]
82108106 name = "writeable"
8211-version = "0.6.4"
8107+version = "0.6.3"
82128108 source = "registry+https://github.com/rust-lang/crates.io-index"
8213-checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
8109+checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
82148110
82158111 [[package]]
82168112 name = "ws_stream_wasm"
@@ -8225,7 +8121,7 @@ dependencies = [
82258121 "pharos",
82268122 "rustc_version",
82278123 "send_wrapper",
8228- "thiserror 2.0.20",
8124+ "thiserror 2.0.19",
82298125 "wasm-bindgen",
82308126 "wasm-bindgen-futures",
82318127 "web-sys",
@@ -8277,7 +8173,7 @@ dependencies = [
82778173 "nom 7.1.3",
82788174 "oid-registry",
82798175 "rusticata-macros",
8280- "thiserror 2.0.20",
8176+ "thiserror 2.0.19",
82818177 "time",
82828178 ]
82838179
@@ -8308,9 +8204,9 @@ checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
83088204
83098205 [[package]]
83108206 name = "xml-rs"
8311-version = "0.8.29"
8207+version = "0.8.28"
83128208 source = "registry+https://github.com/rust-lang/crates.io-index"
8313-checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
8209+checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
83148210
83158211 [[package]]
83168212 name = "xmltree"
@@ -8356,9 +8252,9 @@ dependencies = [
83568252
83578253 [[package]]
83588254 name = "yuv"
8359-version = "0.8.17"
8255+version = "0.8.16"
83608256 source = "registry+https://github.com/rust-lang/crates.io-index"
8361-checksum = "220655e1c245693beb13b377d3174b9efcb1645018d1d4ec53903fc211b135ae"
8257+checksum = "5d85a782d94ee43f078bcfd6fa82d4e6a5b2d1cfbbad168e4df5a9f7b39ef48c"
83628258 dependencies = [
83638259 "num-traits",
83648260 ]
@@ -8371,18 +8267,18 @@ checksum = "2164e798d9e3d84ee2c91139ace54638059a3b23e361f5c11781c2c6459bde0f"
83718267
83728268 [[package]]
83738269 name = "zerocopy"
8374-version = "0.8.56"
8270+version = "0.8.55"
83758271 source = "registry+https://github.com/rust-lang/crates.io-index"
8376-checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
8272+checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
83778273 dependencies = [
83788274 "zerocopy-derive",
83798275 ]
83808276
83818277 [[package]]
83828278 name = "zerocopy-derive"
8383-version = "0.8.56"
8279+version = "0.8.55"
83848280 source = "registry+https://github.com/rust-lang/crates.io-index"
8385-checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
8281+checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
83868282 dependencies = [
83878283 "proc-macro2",
83888284 "quote",
@@ -8432,9 +8328,9 @@ dependencies = [
84328328
84338329 [[package]]
84348330 name = "zerotrie"
8435-version = "0.2.5"
8331+version = "0.2.4"
84368332 source = "registry+https://github.com/rust-lang/crates.io-index"
8437-checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
8333+checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
84388334 dependencies = [
84398335 "displaydoc",
84408336 "yoke",
@@ -8443,9 +8339,9 @@ dependencies = [
84438339
84448340 [[package]]
84458341 name = "zerovec"
8446-version = "0.11.8"
8342+version = "0.11.6"
84478343 source = "registry+https://github.com/rust-lang/crates.io-index"
8448-checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
8344+checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
84498345 dependencies = [
84508346 "yoke",
84518347 "zerofrom",
@@ -8454,13 +8350,13 @@ dependencies = [
84548350
84558351 [[package]]
84568352 name = "zerovec-derive"
8457-version = "0.11.6"
8353+version = "0.11.3"
84588354 source = "registry+https://github.com/rust-lang/crates.io-index"
8459-checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
8355+checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
84608356 dependencies = [
84618357 "proc-macro2",
84628358 "quote",
8463- "syn 3.0.4",
8359+ "syn 2.0.119",
84648360 ]
84658361
84668362 [[package]]
@@ -8474,9 +8370,9 @@ dependencies = [
84748370 "crossbeam-utils",
84758371 "displaydoc",
84768372 "flate2",
8477- "indexmap 2.14.1",
8373+ "indexmap 2.14.0",
84788374 "memchr",
8479- "thiserror 2.0.20",
8375+ "thiserror 2.0.19",
84808376 "zopfli",
84818377 ]
84828378
@@ -8506,9 +8402,9 @@ dependencies = [
85068402
85078403 [[package]]
85088404 name = "zune-core"
8509-version = "0.5.3"
8405+version = "0.5.1"
85108406 source = "registry+https://github.com/rust-lang/crates.io-index"
8511-checksum = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b"
8407+checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
85128408
85138409 [[package]]
85148410 name = "zune-jpeg"
@@ -1,6 +1,6 @@
1 # This file is automatically @generated by Cargo.1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.2 # It is not intended for manual editing.
3-version = 33+version = 4
4 4
5 [[package]]5 [[package]]
6 name = "ab_glyph"6 name = "ab_glyph"
@@ -39,7 +39,7 @@ version = "0.5.2"
39 source = "registry+https://github.com/rust-lang/crates.io-index"39 source = "registry+https://github.com/rust-lang/crates.io-index"
40 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"40 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
41 dependencies = [41 dependencies = [
42- "crypto-common 0.1.7",42+ "crypto-common 0.1.6",
43 "generic-array",43 "generic-array",
44 ]44 ]
45 45
@@ -83,9 +83,9 @@ dependencies = [
83 83
84 [[package]]84 [[package]]
85 name = "aho-corasick"85 name = "aho-corasick"
86-version = "1.1.5"86+version = "1.1.4"
87 source = "registry+https://github.com/rust-lang/crates.io-index"87 source = "registry+https://github.com/rust-lang/crates.io-index"
88-checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"88+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
89 dependencies = [89 dependencies = [
90 "memchr",90 "memchr",
91 ]91 ]
@@ -134,7 +134,7 @@ dependencies = [
134 "ndk-context",134 "ndk-context",
135 "ndk-sys",135 "ndk-sys",
136 "num_enum",136 "num_enum",
137- "thiserror 2.0.20",137+ "thiserror 2.0.19",
138 ]138 ]
139 139
140 [[package]]140 [[package]]
@@ -145,9 +145,9 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
145 145
146 [[package]]146 [[package]]
147 name = "android_system_properties"147 name = "android_system_properties"
148-version = "0.1.6"148+version = "0.1.5"
149 source = "registry+https://github.com/rust-lang/crates.io-index"149 source = "registry+https://github.com/rust-lang/crates.io-index"
150-checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"150+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
151 dependencies = [151 dependencies = [
152 "libc",152 "libc",
153 ]153 ]
@@ -267,15 +267,15 @@ dependencies = [
267 "objc2-foundation 0.3.2",267 "objc2-foundation 0.3.2",
268 "parking_lot",268 "parking_lot",
269 "percent-encoding",269 "percent-encoding",
270- "windows-sys 0.60.2",270+ "windows-sys 0.59.0",
271 "x11rb",271 "x11rb",
272 ]272 ]
273 273
274 [[package]]274 [[package]]
275 name = "archery"275 name = "archery"
276-version = "1.2.3"276+version = "1.2.2"
277 source = "registry+https://github.com/rust-lang/crates.io-index"277 source = "registry+https://github.com/rust-lang/crates.io-index"
278-checksum = "33ca55ee147b1926dbea904f50fe4902494e97bc742205abbbf10c709e43815f"278+checksum = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d"
279 dependencies = [279 dependencies = [
280 "triomphe",280 "triomphe",
281 ]281 ]
@@ -322,7 +322,7 @@ dependencies = [
322 "nom 7.1.3",322 "nom 7.1.3",
323 "num-traits",323 "num-traits",
324 "rusticata-macros",324 "rusticata-macros",
325- "thiserror 2.0.20",325+ "thiserror 2.0.19",
326 "time",326 "time",
327 ]327 ]
328 328
@@ -351,13 +351,13 @@ dependencies = [
351 351
352 [[package]]352 [[package]]
353 name = "async-trait"353 name = "async-trait"
354-version = "0.1.92"354+version = "0.1.91"
355 source = "registry+https://github.com/rust-lang/crates.io-index"355 source = "registry+https://github.com/rust-lang/crates.io-index"
356-checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"356+checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
357 dependencies = [357 dependencies = [
358 "proc-macro2",358 "proc-macro2",
359 "quote",359 "quote",
360- "syn 3.0.4",360+ "syn 3.0.3",
361 ]361 ]
362 362
363 [[package]]363 [[package]]
@@ -458,9 +458,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
458 458
459 [[package]]459 [[package]]
460 name = "aws-lc-rs"460 name = "aws-lc-rs"
461-version = "1.18.0"461+version = "1.17.3"
462 source = "registry+https://github.com/rust-lang/crates.io-index"462 source = "registry+https://github.com/rust-lang/crates.io-index"
463-checksum = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e"463+checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
464 dependencies = [464 dependencies = [
465 "aws-lc-sys",465 "aws-lc-sys",
466 "untrusted 0.7.1",466 "untrusted 0.7.1",
@@ -469,9 +469,9 @@ dependencies = [
469 469
470 [[package]]470 [[package]]
471 name = "aws-lc-sys"471 name = "aws-lc-sys"
472-version = "0.44.0"472+version = "0.43.0"
473 source = "registry+https://github.com/rust-lang/crates.io-index"473 source = "registry+https://github.com/rust-lang/crates.io-index"
474-checksum = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483"474+checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
475 dependencies = [475 dependencies = [
476 "cc",476 "cc",
477 "cmake",477 "cmake",
@@ -506,12 +506,6 @@ dependencies = [
506 "windows-link",506 "windows-link",
507 ]507 ]
508 508
509-[[package]]
510-name = "base16ct"
511-version = "1.0.0"
512-source = "registry+https://github.com/rust-lang/crates.io-index"
513-checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
514-
515 [[package]]509 [[package]]
516 name = "base32"510 name = "base32"
517 version = "0.5.1"511 version = "0.5.1"
@@ -594,15 +588,16 @@ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
594 588
595 [[package]]589 [[package]]
596 name = "blake3"590 name = "blake3"
597-version = "1.8.7"591+version = "1.8.5"
598 source = "registry+https://github.com/rust-lang/crates.io-index"592 source = "registry+https://github.com/rust-lang/crates.io-index"
599-checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"593+checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
600 dependencies = [594 dependencies = [
595+ "arrayref",
601 "arrayvec",596 "arrayvec",
602 "cc",597 "cc",
603 "cfg-if",598 "cfg-if",
604 "constant_time_eq",599 "constant_time_eq",
605- "cpufeatures 0.3.1",600+ "cpufeatures 0.3.0",
606 ]601 ]
607 602
608 [[package]]603 [[package]]
@@ -676,13 +671,13 @@ dependencies = [
676 671
677 [[package]]672 [[package]]
678 name = "bytemuck_derive"673 name = "bytemuck_derive"
679-version = "1.12.0"674+version = "1.11.0"
680 source = "registry+https://github.com/rust-lang/crates.io-index"675 source = "registry+https://github.com/rust-lang/crates.io-index"
681-checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"676+checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
682 dependencies = [677 dependencies = [
683 "proc-macro2",678 "proc-macro2",
684 "quote",679 "quote",
685- "syn 3.0.4",680+ "syn 2.0.119",
686 ]681 ]
687 682
688 [[package]]683 [[package]]
@@ -759,9 +754,9 @@ dependencies = [
759 754
760 [[package]]755 [[package]]
761 name = "cc"756 name = "cc"
762-version = "1.4.4"757+version = "1.4.0"
763 source = "registry+https://github.com/rust-lang/crates.io-index"758 source = "registry+https://github.com/rust-lang/crates.io-index"
764-checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"759+checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
765 dependencies = [760 dependencies = [
766 "find-msvc-tools",761 "find-msvc-tools",
767 "jobserver",762 "jobserver",
@@ -786,9 +781,9 @@ dependencies = [
786 781
787 [[package]]782 [[package]]
788 name = "cfg-expr"783 name = "cfg-expr"
789-version = "0.20.9"784+version = "0.20.8"
790 source = "registry+https://github.com/rust-lang/crates.io-index"785 source = "registry+https://github.com/rust-lang/crates.io-index"
791-checksum = "fe4ece8474b5f766c63426647e7b4b316b67431ade1036a8313cee24a03ae917"786+checksum = "fb693542bcafa528e198be0ebd9d3632ca5b7c93dbe7237460e199910835997c"
792 dependencies = [787 dependencies = [
793 "smallvec",788 "smallvec",
794 "target-lexicon",789 "target-lexicon",
@@ -823,12 +818,12 @@ dependencies = [
823 818
824 [[package]]819 [[package]]
825 name = "chacha20"820 name = "chacha20"
826-version = "0.10.2"821+version = "0.10.1"
827 source = "registry+https://github.com/rust-lang/crates.io-index"822 source = "registry+https://github.com/rust-lang/crates.io-index"
828-checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"823+checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
829 dependencies = [824 dependencies = [
830 "cfg-if",825 "cfg-if",
831- "cpufeatures 0.3.1",826+ "cpufeatures 0.3.0",
832 "rand_core 0.10.1",827 "rand_core 0.10.1",
833 ]828 ]
834 829
@@ -850,7 +845,7 @@ version = "0.4.4"
850 source = "registry+https://github.com/rust-lang/crates.io-index"845 source = "registry+https://github.com/rust-lang/crates.io-index"
851 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"846 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
852 dependencies = [847 dependencies = [
853- "crypto-common 0.1.7",848+ "crypto-common 0.1.6",
854 "inout",849 "inout",
855 ]850 ]
856 851
@@ -935,7 +930,7 @@ version = "0.3.0"
935 source = "registry+https://github.com/rust-lang/crates.io-index"930 source = "registry+https://github.com/rust-lang/crates.io-index"
936 checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"931 checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
937 dependencies = [932 dependencies = [
938- "thiserror 2.0.20",933+ "thiserror 2.0.19",
939 ]934 ]
940 935
941 [[package]]936 [[package]]
@@ -958,9 +953,9 @@ dependencies = [
958 953
959 [[package]]954 [[package]]
960 name = "combine"955 name = "combine"
961-version = "4.6.8"956+version = "4.6.7"
962 source = "registry+https://github.com/rust-lang/crates.io-index"957 source = "registry+https://github.com/rust-lang/crates.io-index"
963-checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"958+checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
964 dependencies = [959 dependencies = [
965 "bytes",960 "bytes",
966 "memchr",961 "memchr",
@@ -978,7 +973,7 @@ dependencies = [
978 [[package]]973 [[package]]
979 name = "conducer"974 name = "conducer"
980 version = "0.3.1"975 version = "0.3.1"
981-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"976+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
982 977
983 [[package]]978 [[package]]
984 name = "const-oid"979 name = "const-oid"
@@ -1150,9 +1145,9 @@ dependencies = [
1150 1145
1151 [[package]]1146 [[package]]
1152 name = "cpufeatures"1147 name = "cpufeatures"
1153-version = "0.3.1"1148+version = "0.3.0"
1154 source = "registry+https://github.com/rust-lang/crates.io-index"1149 source = "registry+https://github.com/rust-lang/crates.io-index"
1155-checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"1150+checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
1156 dependencies = [1151 dependencies = [
1157 "libc",1152 "libc",
1158 ]1153 ]
@@ -1214,9 +1209,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1214 1209
1215 [[package]]1210 [[package]]
1216 name = "crypto-common"1211 name = "crypto-common"
1217-version = "0.1.7"1212+version = "0.1.6"
1218 source = "registry+https://github.com/rust-lang/crates.io-index"1213 source = "registry+https://github.com/rust-lang/crates.io-index"
1219-checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"1214+checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
1220 dependencies = [1215 dependencies = [
1221 "generic-array",1216 "generic-array",
1222 "typenum",1217 "typenum",
@@ -1361,9 +1356,9 @@ checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
1361 1356
1362 [[package]]1357 [[package]]
1363 name = "data-encoding"1358 name = "data-encoding"
1364-version = "2.11.1"1359+version = "2.11.0"
1365 source = "registry+https://github.com/rust-lang/crates.io-index"1360 source = "registry+https://github.com/rust-lang/crates.io-index"
1366-checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"1361+checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1367 1362
1368 [[package]]1363 [[package]]
1369 name = "dbus"1364 name = "dbus"
@@ -1403,7 +1398,7 @@ version = "1.0.0"
1403 source = "registry+https://github.com/rust-lang/crates.io-index"1398 source = "registry+https://github.com/rust-lang/crates.io-index"
1404 checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"1399 checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
1405 dependencies = [1400 dependencies = [
1406- "thiserror 2.0.20",1401+ "thiserror 2.0.19",
1407 ]1402 ]
1408 1403
1409 [[package]]1404 [[package]]
@@ -1518,7 +1513,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1518 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"1513 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1519 dependencies = [1514 dependencies = [
1520 "block-buffer 0.10.4",1515 "block-buffer 0.10.4",
1521- "crypto-common 0.1.7",1516+ "crypto-common 0.1.6",
1522 ]1517 ]
1523 1518
1524 [[package]]1519 [[package]]
@@ -1558,7 +1553,7 @@ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
1558 dependencies = [1553 dependencies = [
1559 "proc-macro2",1554 "proc-macro2",
1560 "quote",1555 "quote",
1561- "syn 3.0.4",1556+ "syn 3.0.3",
1562 ]1557 ]
1563 1558
1564 [[package]]1559 [[package]]
@@ -1626,12 +1621,12 @@ dependencies = [
1626 1621
1627 [[package]]1622 [[package]]
1628 name = "ed25519"1623 name = "ed25519"
1629-version = "3.0.0"1624+version = "3.0.0-rc.4"
1630 source = "registry+https://github.com/rust-lang/crates.io-index"1625 source = "registry+https://github.com/rust-lang/crates.io-index"
1631-checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"1626+checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
1632 dependencies = [1627 dependencies = [
1633 "pkcs8",1628 "pkcs8",
1634- "serdect",1629+ "serde",
1635 "signature",1630 "signature",
1636 ]1631 ]
1637 1632
@@ -1704,9 +1699,9 @@ dependencies = [
1704 1699
1705 [[package]]1700 [[package]]
1706 name = "either"1701 name = "either"
1707-version = "1.18.0"1702+version = "1.17.0"
1708 source = "registry+https://github.com/rust-lang/crates.io-index"1703 source = "registry+https://github.com/rust-lang/crates.io-index"
1709-checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"1704+checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
1710 1705
1711 [[package]]1706 [[package]]
1712 name = "emath"1707 name = "emath"
@@ -1752,13 +1747,13 @@ dependencies = [
1752 1747
1753 [[package]]1748 [[package]]
1754 name = "enum-assoc"1749 name = "enum-assoc"
1755-version = "1.4.1"1750+version = "1.3.0"
1756 source = "registry+https://github.com/rust-lang/crates.io-index"1751 source = "registry+https://github.com/rust-lang/crates.io-index"
1757-checksum = "0590c4a94da3372e83493b956755a6e2266830b6e4e3b101afe66e3f39477b91"1752+checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7"
1758 dependencies = [1753 dependencies = [
1759 "proc-macro2",1754 "proc-macro2",
1760 "quote",1755 "quote",
1761- "syn 3.0.4",1756+ "syn 2.0.119",
1762 ]1757 ]
1763 1758
1764 [[package]]1759 [[package]]
@@ -1914,9 +1909,9 @@ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
1914 1909
1915 [[package]]1910 [[package]]
1916 name = "find-msvc-tools"1911 name = "find-msvc-tools"
1917-version = "0.1.11"1912+version = "0.1.9"
1918 source = "registry+https://github.com/rust-lang/crates.io-index"1913 source = "registry+https://github.com/rust-lang/crates.io-index"
1919-checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"1914+checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1920 1915
1921 [[package]]1916 [[package]]
1922 name = "fixed-resample"1917 name = "fixed-resample"
@@ -1983,7 +1978,7 @@ checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
1983 dependencies = [1978 dependencies = [
1984 "proc-macro2",1979 "proc-macro2",
1985 "quote",1980 "quote",
1986- "syn 3.0.4",1981+ "syn 3.0.3",
1987 ]1982 ]
1988 1983
1989 [[package]]1984 [[package]]
@@ -2009,9 +2004,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
2009 2004
2010 [[package]]2005 [[package]]
2011 name = "futures"2006 name = "futures"
2012-version = "0.3.34"2007+version = "0.3.33"
2013 source = "registry+https://github.com/rust-lang/crates.io-index"2008 source = "registry+https://github.com/rust-lang/crates.io-index"
2014-checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"2009+checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
2015 dependencies = [2010 dependencies = [
2016 "futures-channel",2011 "futures-channel",
2017 "futures-core",2012 "futures-core",
@@ -2037,9 +2032,9 @@ dependencies = [
2037 2032
2038 [[package]]2033 [[package]]
2039 name = "futures-channel"2034 name = "futures-channel"
2040-version = "0.3.34"2035+version = "0.3.33"
2041 source = "registry+https://github.com/rust-lang/crates.io-index"2036 source = "registry+https://github.com/rust-lang/crates.io-index"
2042-checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"2037+checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
2043 dependencies = [2038 dependencies = [
2044 "futures-core",2039 "futures-core",
2045 "futures-sink",2040 "futures-sink",
@@ -2060,15 +2055,15 @@ dependencies = [
2060 2055
2061 [[package]]2056 [[package]]
2062 name = "futures-core"2057 name = "futures-core"
2063-version = "0.3.34"2058+version = "0.3.33"
2064 source = "registry+https://github.com/rust-lang/crates.io-index"2059 source = "registry+https://github.com/rust-lang/crates.io-index"
2065-checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"2060+checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
2066 2061
2067 [[package]]2062 [[package]]
2068 name = "futures-executor"2063 name = "futures-executor"
2069-version = "0.3.34"2064+version = "0.3.33"
2070 source = "registry+https://github.com/rust-lang/crates.io-index"2065 source = "registry+https://github.com/rust-lang/crates.io-index"
2071-checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"2066+checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
2072 dependencies = [2067 dependencies = [
2073 "futures-core",2068 "futures-core",
2074 "futures-task",2069 "futures-task",
@@ -2077,9 +2072,9 @@ dependencies = [
2077 2072
2078 [[package]]2073 [[package]]
2079 name = "futures-io"2074 name = "futures-io"
2080-version = "0.3.34"2075+version = "0.3.33"
2081 source = "registry+https://github.com/rust-lang/crates.io-index"2076 source = "registry+https://github.com/rust-lang/crates.io-index"
2082-checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"2077+checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
2083 2078
2084 [[package]]2079 [[package]]
2085 name = "futures-lite"2080 name = "futures-lite"
@@ -2096,32 +2091,32 @@ dependencies = [
2096 2091
2097 [[package]]2092 [[package]]
2098 name = "futures-macro"2093 name = "futures-macro"
2099-version = "0.3.34"2094+version = "0.3.33"
2100 source = "registry+https://github.com/rust-lang/crates.io-index"2095 source = "registry+https://github.com/rust-lang/crates.io-index"
2101-checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"2096+checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
2102 dependencies = [2097 dependencies = [
2103 "proc-macro2",2098 "proc-macro2",
2104 "quote",2099 "quote",
2105- "syn 3.0.4",2100+ "syn 2.0.119",
2106 ]2101 ]
2107 2102
2108 [[package]]2103 [[package]]
2109 name = "futures-sink"2104 name = "futures-sink"
2110-version = "0.3.34"2105+version = "0.3.33"
2111 source = "registry+https://github.com/rust-lang/crates.io-index"2106 source = "registry+https://github.com/rust-lang/crates.io-index"
2112-checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"2107+checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
2113 2108
2114 [[package]]2109 [[package]]
2115 name = "futures-task"2110 name = "futures-task"
2116-version = "0.3.34"2111+version = "0.3.33"
2117 source = "registry+https://github.com/rust-lang/crates.io-index"2112 source = "registry+https://github.com/rust-lang/crates.io-index"
2118-checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"2113+checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
2119 2114
2120 [[package]]2115 [[package]]
2121 name = "futures-util"2116 name = "futures-util"
2122-version = "0.3.34"2117+version = "0.3.33"
2123 source = "registry+https://github.com/rust-lang/crates.io-index"2118 source = "registry+https://github.com/rust-lang/crates.io-index"
2124-checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"2119+checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
2125 dependencies = [2120 dependencies = [
2126 "futures-channel",2121 "futures-channel",
2127 "futures-core",2122 "futures-core",
@@ -2151,9 +2146,9 @@ dependencies = [
2151 2146
2152 [[package]]2147 [[package]]
2153 name = "generic-array"2148 name = "generic-array"
2154-version = "0.14.7"2149+version = "0.14.9"
2155 source = "registry+https://github.com/rust-lang/crates.io-index"2150 source = "registry+https://github.com/rust-lang/crates.io-index"
2156-checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"2151+checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
2157 dependencies = [2152 dependencies = [
2158 "typenum",2153 "typenum",
2159 "version_check",2154 "version_check",
@@ -2335,9 +2330,9 @@ dependencies = [
2335 2330
2336 [[package]]2331 [[package]]
2337 name = "h2"2332 name = "h2"
2338-version = "0.4.19"2333+version = "0.4.15"
2339 source = "registry+https://github.com/rust-lang/crates.io-index"2334 source = "registry+https://github.com/rust-lang/crates.io-index"
2340-checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16"2335+checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
2341 dependencies = [2336 dependencies = [
2342 "atomic-waker",2337 "atomic-waker",
2343 "bytes",2338 "bytes",
@@ -2345,7 +2340,7 @@ dependencies = [
2345 "futures-core",2340 "futures-core",
2346 "futures-sink",2341 "futures-sink",
2347 "http",2342 "http",
2348- "indexmap 2.14.1",2343+ "indexmap 2.14.0",
2349 "slab",2344 "slab",
2350 "tokio",2345 "tokio",
2351 "tokio-util",2346 "tokio-util",
@@ -2366,7 +2361,7 @@ dependencies = [
2366 [[package]]2361 [[package]]
2367 name = "hang"2362 name = "hang"
2368 version = "0.15.4"2363 version = "0.15.4"
2369-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"2364+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
2370 dependencies = [2365 dependencies = [
2371 "buf-list",2366 "buf-list",
2372 "bytes",2367 "bytes",
@@ -2379,7 +2374,7 @@ dependencies = [
2379 "serde",2374 "serde",
2380 "serde_json",2375 "serde_json",
2381 "serde_with",2376 "serde_with",
2382- "thiserror 2.0.20",2377+ "thiserror 2.0.19",
2383 "tokio",2378 "tokio",
2384 "tracing",2379 "tracing",
2385 "url",2380 "url",
@@ -2471,7 +2466,7 @@ dependencies = [
2471 "rand 0.9.5",2466 "rand 0.9.5",
2472 "ring",2467 "ring",
2473 "rustls",2468 "rustls",
2474- "thiserror 2.0.20",2469+ "thiserror 2.0.19",
2475 "tinyvec",2470 "tinyvec",
2476 "tokio",2471 "tokio",
2477 "tokio-rustls",2472 "tokio-rustls",
@@ -2496,7 +2491,7 @@ dependencies = [
2496 "resolv-conf",2491 "resolv-conf",
2497 "rustls",2492 "rustls",
2498 "smallvec",2493 "smallvec",
2499- "thiserror 2.0.20",2494+ "thiserror 2.0.19",
2500 "tokio",2495 "tokio",
2501 "tokio-rustls",2496 "tokio-rustls",
2502 "tracing",2497 "tracing",
@@ -2530,9 +2525,9 @@ dependencies = [
2530 2525
2531 [[package]]2526 [[package]]
2532 name = "http-body-util"2527 name = "http-body-util"
2533-version = "0.1.5"2528+version = "0.1.4"
2534 source = "registry+https://github.com/rust-lang/crates.io-index"2529 source = "registry+https://github.com/rust-lang/crates.io-index"
2535-checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"2530+checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
2536 dependencies = [2531 dependencies = [
2537 "bytes",2532 "bytes",
2538 "futures-core",2533 "futures-core",
@@ -2571,18 +2566,18 @@ dependencies = [
2571 2566
2572 [[package]]2567 [[package]]
2573 name = "hybrid-array"2568 name = "hybrid-array"
2574-version = "0.4.14"2569+version = "0.4.13"
2575 source = "registry+https://github.com/rust-lang/crates.io-index"2570 source = "registry+https://github.com/rust-lang/crates.io-index"
2576-checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"2571+checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
2577 dependencies = [2572 dependencies = [
2578 "typenum",2573 "typenum",
2579 ]2574 ]
2580 2575
2581 [[package]]2576 [[package]]
2582 name = "hyper"2577 name = "hyper"
2583-version = "1.11.1"2578+version = "1.11.0"
2584 source = "registry+https://github.com/rust-lang/crates.io-index"2579 source = "registry+https://github.com/rust-lang/crates.io-index"
2585-checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"2580+checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
2586 dependencies = [2581 dependencies = [
2587 "atomic-waker",2582 "atomic-waker",
2588 "bytes",2583 "bytes",
@@ -2664,9 +2659,9 @@ dependencies = [
2664 2659
2665 [[package]]2660 [[package]]
2666 name = "icu_collections"2661 name = "icu_collections"
2667-version = "2.3.0"2662+version = "2.2.0"
2668 source = "registry+https://github.com/rust-lang/crates.io-index"2663 source = "registry+https://github.com/rust-lang/crates.io-index"
2669-checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"2664+checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2670 dependencies = [2665 dependencies = [
2671 "displaydoc",2666 "displaydoc",
2672 "potential_utf",2667 "potential_utf",
@@ -2678,9 +2673,9 @@ dependencies = [
2678 2673
2679 [[package]]2674 [[package]]
2680 name = "icu_locale_core"2675 name = "icu_locale_core"
2681-version = "2.3.0"2676+version = "2.2.0"
2682 source = "registry+https://github.com/rust-lang/crates.io-index"2677 source = "registry+https://github.com/rust-lang/crates.io-index"
2683-checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"2678+checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2684 dependencies = [2679 dependencies = [
2685 "displaydoc",2680 "displaydoc",
2686 "litemap",2681 "litemap",
@@ -2691,9 +2686,9 @@ dependencies = [
2691 2686
2692 [[package]]2687 [[package]]
2693 name = "icu_normalizer"2688 name = "icu_normalizer"
2694-version = "2.3.0"2689+version = "2.2.0"
2695 source = "registry+https://github.com/rust-lang/crates.io-index"2690 source = "registry+https://github.com/rust-lang/crates.io-index"
2696-checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"2691+checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2697 dependencies = [2692 dependencies = [
2698 "icu_collections",2693 "icu_collections",
2699 "icu_normalizer_data",2694 "icu_normalizer_data",
@@ -2705,17 +2700,16 @@ dependencies = [
2705 2700
2706 [[package]]2701 [[package]]
2707 name = "icu_normalizer_data"2702 name = "icu_normalizer_data"
2708-version = "2.3.0"2703+version = "2.2.0"
2709 source = "registry+https://github.com/rust-lang/crates.io-index"2704 source = "registry+https://github.com/rust-lang/crates.io-index"
2710-checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"2705+checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2711 2706
2712 [[package]]2707 [[package]]
2713 name = "icu_properties"2708 name = "icu_properties"
2714-version = "2.3.0"2709+version = "2.2.0"
2715 source = "registry+https://github.com/rust-lang/crates.io-index"2710 source = "registry+https://github.com/rust-lang/crates.io-index"
2716-checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"2711+checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2717 dependencies = [2712 dependencies = [
2718- "displaydoc",
2719 "icu_collections",2713 "icu_collections",
2720 "icu_locale_core",2714 "icu_locale_core",
2721 "icu_properties_data",2715 "icu_properties_data",
@@ -2726,15 +2720,15 @@ dependencies = [
2726 2720
2727 [[package]]2721 [[package]]
2728 name = "icu_properties_data"2722 name = "icu_properties_data"
2729-version = "2.3.0"2723+version = "2.2.0"
2730 source = "registry+https://github.com/rust-lang/crates.io-index"2724 source = "registry+https://github.com/rust-lang/crates.io-index"
2731-checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"2725+checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2732 2726
2733 [[package]]2727 [[package]]
2734 name = "icu_provider"2728 name = "icu_provider"
2735-version = "2.3.1"2729+version = "2.2.0"
2736 source = "registry+https://github.com/rust-lang/crates.io-index"2730 source = "registry+https://github.com/rust-lang/crates.io-index"
2737-checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"2731+checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2738 dependencies = [2732 dependencies = [
2739 "displaydoc",2733 "displaydoc",
2740 "icu_locale_core",2734 "icu_locale_core",
@@ -2828,9 +2822,9 @@ dependencies = [
2828 2822
2829 [[package]]2823 [[package]]
2830 name = "indexmap"2824 name = "indexmap"
2831-version = "2.14.1"2825+version = "2.14.0"
2832 source = "registry+https://github.com/rust-lang/crates.io-index"2826 source = "registry+https://github.com/rust-lang/crates.io-index"
2833-checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"2827+checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
2834 dependencies = [2828 dependencies = [
2835 "equivalent",2829 "equivalent",
2836 "hashbrown 0.17.1",2830 "hashbrown 0.17.1",
@@ -2862,9 +2856,9 @@ dependencies = [
2862 2856
2863 [[package]]2857 [[package]]
2864 name = "ipnet"2858 name = "ipnet"
2865-version = "2.12.1"2859+version = "2.12.0"
2866 source = "registry+https://github.com/rust-lang/crates.io-index"2860 source = "registry+https://github.com/rust-lang/crates.io-index"
2867-checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"2861+checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2868 2862
2869 [[package]]2863 [[package]]
2870 name = "iroh"2864 name = "iroh"
@@ -2953,7 +2947,7 @@ dependencies = [
2953 "futures-lite",2947 "futures-lite",
2954 "futures-util",2948 "futures-util",
2955 "hex",2949 "hex",
2956- "indexmap 2.14.1",2950+ "indexmap 2.14.0",
2957 "iroh",2951 "iroh",
2958 "iroh-base",2952 "iroh-base",
2959 "iroh-metrics",2953 "iroh-metrics",
@@ -3212,12 +3206,10 @@ dependencies = [
3212 "defmt",3206 "defmt",
3213 "jiff-core",3207 "jiff-core",
3214 "jiff-static",3208 "jiff-static",
3215- "jiff-tzdb-platform",
3216 "log",3209 "log",
3217 "portable-atomic",3210 "portable-atomic",
3218 "portable-atomic-util",3211 "portable-atomic-util",
3219 "serde_core",3212 "serde_core",
3220- "windows-link",
3221 ]3213 ]
3222 3214
3223 [[package]]3215 [[package]]
@@ -3241,21 +3233,6 @@ dependencies = [
3241 "syn 2.0.119",3233 "syn 2.0.119",
3242 ]3234 ]
3243 3235
3244-[[package]]
3245-name = "jiff-tzdb"
3246-version = "0.1.8"
3247-source = "registry+https://github.com/rust-lang/crates.io-index"
3248-checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
3249-
3250-[[package]]
3251-name = "jiff-tzdb-platform"
3252-version = "0.1.3"
3253-source = "registry+https://github.com/rust-lang/crates.io-index"
3254-checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
3255-dependencies = [
3256- "jiff-tzdb",
3257-]
3258-
3259 [[package]]3236 [[package]]
3260 name = "jni"3237 name = "jni"
3261 version = "0.21.1"3238 version = "0.21.1"
@@ -3284,7 +3261,7 @@ dependencies = [
3284 "jni-sys 0.4.1",3261 "jni-sys 0.4.1",
3285 "log",3262 "log",
3286 "simd_cesu8",3263 "simd_cesu8",
3287- "thiserror 2.0.20",3264+ "thiserror 2.0.19",
3288 "walkdir",3265 "walkdir",
3289 "windows-link",3266 "windows-link",
3290 ]3267 ]
@@ -3374,7 +3351,7 @@ dependencies = [
3374 "objc2-foundation 0.3.2",3351 "objc2-foundation 0.3.2",
3375 "openh264",3352 "openh264",
3376 "png 0.17.16",3353 "png 0.17.16",
3377- "rand 0.8.8",3354+ "rand 0.8.7",
3378 "rustls",3355 "rustls",
3379 "tokio",3356 "tokio",
3380 "url",3357 "url",
@@ -3386,9 +3363,9 @@ dependencies = [
3386 3363
3387 [[package]]3364 [[package]]
3388 name = "js-sys"3365 name = "js-sys"
3389-version = "0.3.104"3366+version = "0.3.103"
3390 source = "registry+https://github.com/rust-lang/crates.io-index"3367 source = "registry+https://github.com/rust-lang/crates.io-index"
3391-checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"3368+checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
3392 dependencies = [3369 dependencies = [
3393 "cfg-if",3370 "cfg-if",
3394 "futures-util",3371 "futures-util",
@@ -3502,9 +3479,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
3502 3479
3503 [[package]]3480 [[package]]
3504 name = "litemap"3481 name = "litemap"
3505-version = "0.8.3"3482+version = "0.8.2"
3506 source = "registry+https://github.com/rust-lang/crates.io-index"3483 source = "registry+https://github.com/rust-lang/crates.io-index"
3507-checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"3484+checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
3508 3485
3509 [[package]]3486 [[package]]
3510 name = "litrs"3487 name = "litrs"
@@ -3523,9 +3500,9 @@ dependencies = [
3523 3500
3524 [[package]]3501 [[package]]
3525 name = "log"3502 name = "log"
3526-version = "0.4.34"3503+version = "0.4.33"
3527 source = "registry+https://github.com/rust-lang/crates.io-index"3504 source = "registry+https://github.com/rust-lang/crates.io-index"
3528-checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"3505+checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
3529 3506
3530 [[package]]3507 [[package]]
3531 name = "loom"3508 name = "loom"
@@ -3652,9 +3629,9 @@ dependencies = [
3652 3629
3653 [[package]]3630 [[package]]
3654 name = "moka"3631 name = "moka"
3655-version = "0.12.16"3632+version = "0.12.15"
3656 source = "registry+https://github.com/rust-lang/crates.io-index"3633 source = "registry+https://github.com/rust-lang/crates.io-index"
3657-checksum = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9"3634+checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
3658 dependencies = [3635 dependencies = [
3659 "crossbeam-channel",3636 "crossbeam-channel",
3660 "crossbeam-epoch",3637 "crossbeam-epoch",
@@ -3670,7 +3647,7 @@ dependencies = [
3670 [[package]]3647 [[package]]
3671 name = "moq-lite"3648 name = "moq-lite"
3672 version = "0.15.5"3649 version = "0.15.5"
3673-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"3650+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
3674 dependencies = [3651 dependencies = [
3675 "bytes",3652 "bytes",
3676 "conducer",3653 "conducer",
@@ -3678,7 +3655,7 @@ dependencies = [
3678 "num_enum",3655 "num_enum",
3679 "rand 0.9.5",3656 "rand 0.9.5",
3680 "serde",3657 "serde",
3681- "thiserror 2.0.20",3658+ "thiserror 2.0.19",
3682 "tokio",3659 "tokio",
3683 "tracing",3660 "tracing",
3684 "web-async",3661 "web-async",
@@ -3718,7 +3695,7 @@ dependencies = [
3718 [[package]]3695 [[package]]
3719 name = "moq-native"3696 name = "moq-native"
3720 version = "0.13.6"3697 version = "0.13.6"
3721-source = "git+https://github.com/Frando/moq?branch=deps/iroh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"3698+source = "git+https://github.com/Frando/moq?branch=deps%2Firoh-main#53fe78d8ad05aba94d03043d8a20a2b95669baec"
3722 dependencies = [3699 dependencies = [
3723 "anyhow",3700 "anyhow",
3724 "clap",3701 "clap",
@@ -3888,9 +3865,9 @@ dependencies = [
3888 3865
3889 [[package]]3866 [[package]]
3890 name = "netlink-packet-core"3867 name = "netlink-packet-core"
3891-version = "0.8.2"3868+version = "0.8.1"
3892 source = "registry+https://github.com/rust-lang/crates.io-index"3869 source = "registry+https://github.com/rust-lang/crates.io-index"
3893-checksum = "b897d7bd4f0af82e68d40d0344cf37e97f9c97ddf74a098de3e4da05e96ca395"3870+checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4"
3894 dependencies = [3871 dependencies = [
3895 "paste",3872 "paste",
3896 ]3873 ]
@@ -3909,9 +3886,9 @@ dependencies = [
3909 3886
3910 [[package]]3887 [[package]]
3911 name = "netlink-proto"3888 name = "netlink-proto"
3912-version = "0.12.2"3889+version = "0.12.1"
3913 source = "registry+https://github.com/rust-lang/crates.io-index"3890 source = "registry+https://github.com/rust-lang/crates.io-index"
3914-checksum = "93af8261786086024cd5e96e0a991dd65ced07bbf7c233a487bbc96b971d5539"3891+checksum = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6"
3915 dependencies = [3892 dependencies = [
3916 "bytes",3893 "bytes",
3917 "futures-channel",3894 "futures-channel",
@@ -3919,7 +3896,7 @@ dependencies = [
3919 "log",3896 "log",
3920 "netlink-packet-core",3897 "netlink-packet-core",
3921 "netlink-sys",3898 "netlink-sys",
3922- "thiserror 2.0.20",3899+ "thiserror 2.0.19",
3923 ]3900 ]
3924 3901
3925 [[package]]3902 [[package]]
@@ -4034,7 +4011,7 @@ dependencies = [
4034 "rustc-hash 2.1.3",4011 "rustc-hash 2.1.3",
4035 "rustls",4012 "rustls",
4036 "socket2",4013 "socket2",
4037- "thiserror 2.0.20",4014+ "thiserror 2.0.19",
4038 "tokio",4015 "tokio",
4039 "tokio-stream",4016 "tokio-stream",
4040 "tracing",4017 "tracing",
@@ -4062,7 +4039,7 @@ dependencies = [
4062 "rustls-platform-verifier 0.6.2",4039 "rustls-platform-verifier 0.6.2",
4063 "slab",4040 "slab",
4064 "sorted-index-buffer",4041 "sorted-index-buffer",
4065- "thiserror 2.0.20",4042+ "thiserror 2.0.19",
4066 "tinyvec",4043 "tinyvec",
4067 "tracing",4044 "tracing",
4068 "web-time",4045 "web-time",
@@ -4151,9 +4128,9 @@ dependencies = [
4151 4128
4152 [[package]]4129 [[package]]
4153 name = "num-integer"4130 name = "num-integer"
4154-version = "0.1.47"4131+version = "0.1.46"
4155 source = "registry+https://github.com/rust-lang/crates.io-index"4132 source = "registry+https://github.com/rust-lang/crates.io-index"
4156-checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"4133+checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
4157 dependencies = [4134 dependencies = [
4158 "num-traits",4135 "num-traits",
4159 ]4136 ]
@@ -4718,9 +4695,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
4718 4695
4719 [[package]]4696 [[package]]
4720 name = "openh264"4697 name = "openh264"
4721-version = "0.9.8"4698+version = "0.9.7"
4722 source = "registry+https://github.com/rust-lang/crates.io-index"4699 source = "registry+https://github.com/rust-lang/crates.io-index"
4723-checksum = "fcc9071a0b5f9c501ddd01066c2600d922cc799dc450a52975222bcda7755a08"4700+checksum = "e6b2b561d2103303e233779545da757ecd35bad82188d619a6d8901f3007e1ff"
4724 dependencies = [4701 dependencies = [
4725 "openh264-sys2",4702 "openh264-sys2",
4726 "wide",4703 "wide",
@@ -4728,9 +4705,9 @@ dependencies = [
4728 4705
4729 [[package]]4706 [[package]]
4730 name = "openh264-sys2"4707 name = "openh264-sys2"
4731-version = "0.9.8"4708+version = "0.9.7"
4732 source = "registry+https://github.com/rust-lang/crates.io-index"4709 source = "registry+https://github.com/rust-lang/crates.io-index"
4733-checksum = "6ada29a4cadc13d4d326737af87c13e224210d7d99fe47594e9f3f9b0102fd70"4710+checksum = "75a8867e48183bbd9147380227448c065fe456eb30b0ebc68929809c36c30985"
4734 dependencies = [4711 dependencies = [
4735 "cc",4712 "cc",
4736 "nasm-rs",4713 "nasm-rs",
@@ -4764,9 +4741,9 @@ dependencies = [
4764 4741
4765 [[package]]4742 [[package]]
4766 name = "papaya"4743 name = "papaya"
4767-version = "0.2.5"4744+version = "0.2.4"
4768 source = "registry+https://github.com/rust-lang/crates.io-index"4745 source = "registry+https://github.com/rust-lang/crates.io-index"
4769-checksum = "da2442474a9404698c42509b8967f437249dbc7b50493e83020333d3943ec0ae"4746+checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7"
4770 dependencies = [4747 dependencies = [
4771 "equivalent",4748 "equivalent",
4772 "seize",4749 "seize",
@@ -4840,7 +4817,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4840 checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"4817 checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
4841 dependencies = [4818 dependencies = [
4842 "fixedbitset 0.4.2",4819 "fixedbitset 0.4.2",
4843- "indexmap 2.14.1",4820+ "indexmap 2.14.0",
4844 ]4821 ]
4845 4822
4846 [[package]]4823 [[package]]
@@ -4912,7 +4889,7 @@ dependencies = [
4912 "nix 0.30.1",4889 "nix 0.30.1",
4913 "once_cell",4890 "once_cell",
4914 "pipewire-sys",4891 "pipewire-sys",
4915- "thiserror 2.0.20",4892+ "thiserror 2.0.19",
4916 ]4893 ]
4917 4894
4918 [[package]]4895 [[package]]
@@ -4942,14 +4919,14 @@ dependencies = [
4942 "self_cell",4919 "self_cell",
4943 "serde",4920 "serde",
4944 "simple-dns",4921 "simple-dns",
4945- "thiserror 2.0.20",4922+ "thiserror 2.0.19",
4946 ]4923 ]
4947 4924
4948 [[package]]4925 [[package]]
4949 name = "pkcs8"4926 name = "pkcs8"
4950-version = "0.11.0"4927+version = "0.11.0-rc.11"
4951 source = "registry+https://github.com/rust-lang/crates.io-index"4928 source = "registry+https://github.com/rust-lang/crates.io-index"
4952-checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"4929+checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
4953 dependencies = [4930 dependencies = [
4954 "der",4931 "der",
4955 "spki",4932 "spki",
@@ -4957,9 +4934,9 @@ dependencies = [
4957 4934
4958 [[package]]4935 [[package]]
4959 name = "pkg-config"4936 name = "pkg-config"
4960-version = "0.3.34"4937+version = "0.3.33"
4961 source = "registry+https://github.com/rust-lang/crates.io-index"4938 source = "registry+https://github.com/rust-lang/crates.io-index"
4962-checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"4939+checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
4963 4940
4964 [[package]]4941 [[package]]
4965 name = "plain"4942 name = "plain"
@@ -4974,7 +4951,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4974 checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"4951 checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"
4975 dependencies = [4952 dependencies = [
4976 "base64",4953 "base64",
4977- "indexmap 2.14.1",4954+ "indexmap 2.14.0",
4978 "quick-xml",4955 "quick-xml",
4979 "serde",4956 "serde",
4980 "time",4957 "time",
@@ -5034,9 +5011,9 @@ dependencies = [
5034 5011
5035 [[package]]5012 [[package]]
5036 name = "portable-atomic"5013 name = "portable-atomic"
5037-version = "1.15.0"5014+version = "1.14.0"
5038 source = "registry+https://github.com/rust-lang/crates.io-index"5015 source = "registry+https://github.com/rust-lang/crates.io-index"
5039-checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"5016+checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
5040 dependencies = [5017 dependencies = [
5041 "serde",5018 "serde",
5042 ]5019 ]
@@ -5107,9 +5084,9 @@ dependencies = [
5107 5084
5108 [[package]]5085 [[package]]
5109 name = "potential_utf"5086 name = "potential_utf"
5110-version = "0.1.6"5087+version = "0.1.5"
5111 source = "registry+https://github.com/rust-lang/crates.io-index"5088 source = "registry+https://github.com/rust-lang/crates.io-index"
5112-checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"5089+checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
5113 dependencies = [5090 dependencies = [
5114 "zerovec",5091 "zerovec",
5115 ]5092 ]
@@ -5203,7 +5180,7 @@ dependencies = [
5203 "bytes",5180 "bytes",
5204 "futures",5181 "futures",
5205 "rustls",5182 "rustls",
5206- "thiserror 2.0.20",5183+ "thiserror 2.0.19",
5207 "tokio",5184 "tokio",
5208 "tokio-rustls",5185 "tokio-rustls",
5209 "tokio-tungstenite",5186 "tokio-tungstenite",
@@ -5241,7 +5218,7 @@ dependencies = [
5241 "rustc-hash 2.1.3",5218 "rustc-hash 2.1.3",
5242 "rustls",5219 "rustls",
5243 "socket2",5220 "socket2",
5244- "thiserror 2.0.20",5221+ "thiserror 2.0.19",
5245 "tokio",5222 "tokio",
5246 "tracing",5223 "tracing",
5247 "web-time",5224 "web-time",
@@ -5249,9 +5226,9 @@ dependencies = [
5249 5226
5250 [[package]]5227 [[package]]
5251 name = "quinn-proto"5228 name = "quinn-proto"
5252-version = "0.11.17"5229+version = "0.11.16"
5253 source = "registry+https://github.com/rust-lang/crates.io-index"5230 source = "registry+https://github.com/rust-lang/crates.io-index"
5254-checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83"5231+checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
5255 dependencies = [5232 dependencies = [
5256 "aws-lc-rs",5233 "aws-lc-rs",
5257 "bytes",5234 "bytes",
@@ -5266,7 +5243,7 @@ dependencies = [
5266 "rustls-pki-types",5243 "rustls-pki-types",
5267 "rustls-platform-verifier 0.7.0",5244 "rustls-platform-verifier 0.7.0",
5268 "slab",5245 "slab",
5269- "thiserror 2.0.20",5246+ "thiserror 2.0.19",
5270 "tinyvec",5247 "tinyvec",
5271 "tracing",5248 "tracing",
5272 "web-time",5249 "web-time",
@@ -5309,9 +5286,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
5309 5286
5310 [[package]]5287 [[package]]
5311 name = "rand"5288 name = "rand"
5312-version = "0.8.8"5289+version = "0.8.7"
5313 source = "registry+https://github.com/rust-lang/crates.io-index"5290 source = "registry+https://github.com/rust-lang/crates.io-index"
5314-checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"5291+checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
5315 dependencies = [5292 dependencies = [
5316 "libc",5293 "libc",
5317 "rand_chacha 0.3.1",5294 "rand_chacha 0.3.1",
@@ -5420,9 +5397,9 @@ dependencies = [
5420 5397
5421 [[package]]5398 [[package]]
5422 name = "rcgen"5399 name = "rcgen"
5423-version = "0.14.10"5400+version = "0.14.8"
5424 source = "registry+https://github.com/rust-lang/crates.io-index"5401 source = "registry+https://github.com/rust-lang/crates.io-index"
5425-checksum = "8774e05a7d0de114588e6a28fe7e71694b82614ed569d86d8b389dfbc98b8ad8"5402+checksum = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055"
5426 dependencies = [5403 dependencies = [
5427 "aws-lc-rs",5404 "aws-lc-rs",
5428 "rustls-pki-types",5405 "rustls-pki-types",
@@ -5469,22 +5446,22 @@ dependencies = [
5469 5446
5470 [[package]]5447 [[package]]
5471 name = "ref-cast"5448 name = "ref-cast"
5472-version = "1.0.27"5449+version = "1.0.26"
5473 source = "registry+https://github.com/rust-lang/crates.io-index"5450 source = "registry+https://github.com/rust-lang/crates.io-index"
5474-checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"5451+checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
5475 dependencies = [5452 dependencies = [
5476 "ref-cast-impl",5453 "ref-cast-impl",
5477 ]5454 ]
5478 5455
5479 [[package]]5456 [[package]]
5480 name = "ref-cast-impl"5457 name = "ref-cast-impl"
5481-version = "1.0.27"5458+version = "1.0.26"
5482 source = "registry+https://github.com/rust-lang/crates.io-index"5459 source = "registry+https://github.com/rust-lang/crates.io-index"
5483-checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"5460+checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
5484 dependencies = [5461 dependencies = [
5485 "proc-macro2",5462 "proc-macro2",
5486 "quote",5463 "quote",
5487- "syn 3.0.4",5464+ "syn 3.0.3",
5488 ]5465 ]
5489 5466
5490 [[package]]5467 [[package]]
@@ -5501,9 +5478,9 @@ dependencies = [
5501 5478
5502 [[package]]5479 [[package]]
5503 name = "regex-automata"5480 name = "regex-automata"
5504-version = "0.4.18"5481+version = "0.4.16"
5505 source = "registry+https://github.com/rust-lang/crates.io-index"5482 source = "registry+https://github.com/rust-lang/crates.io-index"
5506-checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"5483+checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
5507 dependencies = [5484 dependencies = [
5508 "aho-corasick",5485 "aho-corasick",
5509 "memchr",5486 "memchr",
@@ -5827,9 +5804,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
5827 5804
5828 [[package]]5805 [[package]]
5829 name = "rustls-webpki"5806 name = "rustls-webpki"
5830-version = "0.103.15"5807+version = "0.103.13"
5831 source = "registry+https://github.com/rust-lang/crates.io-index"5808 source = "registry+https://github.com/rust-lang/crates.io-index"
5832-checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"5809+checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
5833 dependencies = [5810 dependencies = [
5834 "aws-lc-rs",5811 "aws-lc-rs",
5835 "ring",5812 "ring",
@@ -5898,9 +5875,9 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
5898 5875
5899 [[package]]5876 [[package]]
5900 name = "safe_arch"5877 name = "safe_arch"
5901-version = "1.2.0"5878+version = "1.1.0"
5902 source = "registry+https://github.com/rust-lang/crates.io-index"5879 source = "registry+https://github.com/rust-lang/crates.io-index"
5903-checksum = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f"5880+checksum = "3a52ec151f024d703f9fd65abb7cbe81e7cdb39f18917a3a37e3014470dc7c59"
5904 dependencies = [5881 dependencies = [
5905 "bytemuck",5882 "bytemuck",
5906 ]5883 ]
@@ -6000,6 +5977,10 @@ name = "seize"
6000 version = "0.5.1"5977 version = "0.5.1"
6001 source = "registry+https://github.com/rust-lang/crates.io-index"5978 source = "registry+https://github.com/rust-lang/crates.io-index"
6002 checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"5979 checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
5980+dependencies = [
5981+ "libc",
5982+ "windows-sys 0.61.2",
5983+]
6003 5984
6004 [[package]]5985 [[package]]
6005 name = "self_cell"5986 name = "self_cell"
@@ -6065,7 +6046,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
6065 dependencies = [6046 dependencies = [
6066 "proc-macro2",6047 "proc-macro2",
6067 "quote",6048 "quote",
6068- "syn 3.0.4",6049+ "syn 3.0.3",
6069 ]6050 ]
6070 6051
6071 [[package]]6052 [[package]]
@@ -6104,17 +6085,16 @@ dependencies = [
6104 6085
6105 [[package]]6086 [[package]]
6106 name = "serde_with"6087 name = "serde_with"
6107-version = "3.22.0"6088+version = "3.21.0"
6108 source = "registry+https://github.com/rust-lang/crates.io-index"6089 source = "registry+https://github.com/rust-lang/crates.io-index"
6109-checksum = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a"6090+checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
6110 dependencies = [6091 dependencies = [
6111 "base64",6092 "base64",
6112 "bs58",6093 "bs58",
6113 "chrono",6094 "chrono",
6114 "hex",6095 "hex",
6115 "indexmap 1.9.3",6096 "indexmap 1.9.3",
6116- "indexmap 2.14.1",6097+ "indexmap 2.14.0",
6117- "jiff",
6118 "schemars 0.9.0",6098 "schemars 0.9.0",
6119 "schemars 1.2.2",6099 "schemars 1.2.2",
6120 "serde_core",6100 "serde_core",
@@ -6125,9 +6105,9 @@ dependencies = [
6125 6105
6126 [[package]]6106 [[package]]
6127 name = "serde_with_macros"6107 name = "serde_with_macros"
6128-version = "3.22.0"6108+version = "3.21.0"
6129 source = "registry+https://github.com/rust-lang/crates.io-index"6109 source = "registry+https://github.com/rust-lang/crates.io-index"
6130-checksum = "8705578779c2b6bd90d84d66eb2e206b708b1a4d7b9f17641b293545bf1c7e46"6110+checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
6131 dependencies = [6111 dependencies = [
6132 "darling 0.23.0",6112 "darling 0.23.0",
6133 "proc-macro2",6113 "proc-macro2",
@@ -6135,16 +6115,6 @@ dependencies = [
6135 "syn 2.0.119",6115 "syn 2.0.119",
6136 ]6116 ]
6137 6117
6138-[[package]]
6139-name = "serdect"
6140-version = "0.4.3"
6141-source = "registry+https://github.com/rust-lang/crates.io-index"
6142-checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
6143-dependencies = [
6144- "base16ct",
6145- "serde",
6146-]
6147-
6148 [[package]]6118 [[package]]
6149 name = "sfv"6119 name = "sfv"
6150 version = "0.14.0"6120 version = "0.14.0"
@@ -6152,7 +6122,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6152 checksum = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87"6122 checksum = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87"
6153 dependencies = [6123 dependencies = [
6154 "base64",6124 "base64",
6155- "indexmap 2.14.1",6125+ "indexmap 2.14.0",
6156 "ref-cast",6126 "ref-cast",
6157 ]6127 ]
6158 6128
@@ -6217,9 +6187,9 @@ dependencies = [
6217 6187
6218 [[package]]6188 [[package]]
6219 name = "signature"6189 name = "signature"
6220-version = "3.0.0"6190+version = "3.0.0-rc.10"
6221 source = "registry+https://github.com/rust-lang/crates.io-index"6191 source = "registry+https://github.com/rust-lang/crates.io-index"
6222-checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"6192+checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
6223 6193
6224 [[package]]6194 [[package]]
6225 name = "simd-adler32"6195 name = "simd-adler32"
@@ -6318,7 +6288,7 @@ dependencies = [
6318 "log",6288 "log",
6319 "memmap2",6289 "memmap2",
6320 "rustix 1.1.4",6290 "rustix 1.1.4",
6321- "thiserror 2.0.20",6291+ "thiserror 2.0.19",
6322 "wayland-backend",6292 "wayland-backend",
6323 "wayland-client",6293 "wayland-client",
6324 "wayland-csd-frame",6294 "wayland-csd-frame",
@@ -6431,7 +6401,7 @@ version = "0.1.0"
6431 source = "registry+https://github.com/rust-lang/crates.io-index"6401 source = "registry+https://github.com/rust-lang/crates.io-index"
6432 checksum = "a053f93cc01f4e1cc51c61844a196b6d1da7e054cdd406d2cd27677ba4d898e0"6402 checksum = "a053f93cc01f4e1cc51c61844a196b6d1da7e054cdd406d2cd27677ba4d898e0"
6433 dependencies = [6403 dependencies = [
6434- "cpufeatures 0.3.1",6404+ "cpufeatures 0.3.0",
6435 ]6405 ]
6436 6406
6437 [[package]]6407 [[package]]
@@ -6613,9 +6583,9 @@ dependencies = [
6613 6583
6614 [[package]]6584 [[package]]
6615 name = "syn"6585 name = "syn"
6616-version = "3.0.4"6586+version = "3.0.3"
6617 source = "registry+https://github.com/rust-lang/crates.io-index"6587 source = "registry+https://github.com/rust-lang/crates.io-index"
6618-checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"6588+checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
6619 dependencies = [6589 dependencies = [
6620 "proc-macro2",6590 "proc-macro2",
6621 "quote",6591 "quote",
@@ -6678,11 +6648,11 @@ dependencies = [
6678 6648
6679 [[package]]6649 [[package]]
6680 name = "thiserror"6650 name = "thiserror"
6681-version = "2.0.20"6651+version = "2.0.19"
6682 source = "registry+https://github.com/rust-lang/crates.io-index"6652 source = "registry+https://github.com/rust-lang/crates.io-index"
6683-checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"6653+checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
6684 dependencies = [6654 dependencies = [
6685- "thiserror-impl 2.0.20",6655+ "thiserror-impl 2.0.19",
6686 ]6656 ]
6687 6657
6688 [[package]]6658 [[package]]
@@ -6698,13 +6668,13 @@ dependencies = [
6698 6668
6699 [[package]]6669 [[package]]
6700 name = "thiserror-impl"6670 name = "thiserror-impl"
6701-version = "2.0.20"6671+version = "2.0.19"
6702 source = "registry+https://github.com/rust-lang/crates.io-index"6672 source = "registry+https://github.com/rust-lang/crates.io-index"
6703-checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"6673+checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
6704 dependencies = [6674 dependencies = [
6705 "proc-macro2",6675 "proc-macro2",
6706 "quote",6676 "quote",
6707- "syn 3.0.4",6677+ "syn 3.0.3",
6708 ]6678 ]
6709 6679
6710 [[package]]6680 [[package]]
@@ -6743,9 +6713,9 @@ dependencies = [
6743 6713
6744 [[package]]6714 [[package]]
6745 name = "time"6715 name = "time"
6746-version = "0.3.55"6716+version = "0.3.54"
6747 source = "registry+https://github.com/rust-lang/crates.io-index"6717 source = "registry+https://github.com/rust-lang/crates.io-index"
6748-checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"6718+checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244"
6749 dependencies = [6719 dependencies = [
6750 "deranged",6720 "deranged",
6751 "js-sys",6721 "js-sys",
@@ -6801,9 +6771,9 @@ dependencies = [
6801 6771
6802 [[package]]6772 [[package]]
6803 name = "tinystr"6773 name = "tinystr"
6804-version = "0.8.4"6774+version = "0.8.3"
6805 source = "registry+https://github.com/rust-lang/crates.io-index"6775 source = "registry+https://github.com/rust-lang/crates.io-index"
6806-checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"6776+checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
6807 dependencies = [6777 dependencies = [
6808 "displaydoc",6778 "displaydoc",
6809 "zerovec",6779 "zerovec",
@@ -6849,7 +6819,7 @@ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
6849 dependencies = [6819 dependencies = [
6850 "proc-macro2",6820 "proc-macro2",
6851 "quote",6821 "quote",
6852- "syn 3.0.4",6822+ "syn 3.0.3",
6853 ]6823 ]
6854 6824
6855 [[package]]6825 [[package]]
@@ -6934,7 +6904,7 @@ version = "1.1.4+spec-1.1.0"
6934 source = "registry+https://github.com/rust-lang/crates.io-index"6904 source = "registry+https://github.com/rust-lang/crates.io-index"
6935 checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"6905 checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
6936 dependencies = [6906 dependencies = [
6937- "indexmap 2.14.1",6907+ "indexmap 2.14.0",
6938 "serde_core",6908 "serde_core",
6939 "serde_spanned",6909 "serde_spanned",
6940 "toml_datetime",6910 "toml_datetime",
@@ -6958,7 +6928,7 @@ version = "0.25.13+spec-1.1.0"
6958 source = "registry+https://github.com/rust-lang/crates.io-index"6928 source = "registry+https://github.com/rust-lang/crates.io-index"
6959 checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"6929 checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
6960 dependencies = [6930 dependencies = [
6961- "indexmap 2.14.1",6931+ "indexmap 2.14.0",
6962 "toml_datetime",6932 "toml_datetime",
6963 "toml_parser",6933 "toml_parser",
6964 "winnow",6934 "winnow",
@@ -7129,7 +7099,7 @@ dependencies = [
7129 "rustls",7099 "rustls",
7130 "rustls-pki-types",7100 "rustls-pki-types",
7131 "sha1",7101 "sha1",
7132- "thiserror 2.0.20",7102+ "thiserror 2.0.19",
7133 "utf-8",7103 "utf-8",
7134 ]7104 ]
7135 7105
@@ -7169,7 +7139,7 @@ version = "0.5.1"
7169 source = "registry+https://github.com/rust-lang/crates.io-index"7139 source = "registry+https://github.com/rust-lang/crates.io-index"
7170 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"7140 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
7171 dependencies = [7141 dependencies = [
7172- "crypto-common 0.1.7",7142+ "crypto-common 0.1.6",
7173 "subtle",7143 "subtle",
7174 ]7144 ]
7175 7145
@@ -7235,9 +7205,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
7235 7205
7236 [[package]]7206 [[package]]
7237 name = "uuid"7207 name = "uuid"
7238-version = "1.26.0"7208+version = "1.24.0"
7239 source = "registry+https://github.com/rust-lang/crates.io-index"7209 source = "registry+https://github.com/rust-lang/crates.io-index"
7240-checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"7210+checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
7241 dependencies = [7211 dependencies = [
7242 "getrandom 0.4.3",7212 "getrandom 0.4.3",
7243 "js-sys",7213 "js-sys",
@@ -7373,9 +7343,9 @@ dependencies = [
7373 7343
7374 [[package]]7344 [[package]]
7375 name = "wasm-bindgen"7345 name = "wasm-bindgen"
7376-version = "0.2.127"7346+version = "0.2.126"
7377 source = "registry+https://github.com/rust-lang/crates.io-index"7347 source = "registry+https://github.com/rust-lang/crates.io-index"
7378-checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"7348+checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
7379 dependencies = [7349 dependencies = [
7380 "cfg-if",7350 "cfg-if",
7381 "once_cell",7351 "once_cell",
@@ -7386,9 +7356,9 @@ dependencies = [
7386 7356
7387 [[package]]7357 [[package]]
7388 name = "wasm-bindgen-futures"7358 name = "wasm-bindgen-futures"
7389-version = "0.4.77"7359+version = "0.4.76"
7390 source = "registry+https://github.com/rust-lang/crates.io-index"7360 source = "registry+https://github.com/rust-lang/crates.io-index"
7391-checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"7361+checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
7392 dependencies = [7362 dependencies = [
7393 "js-sys",7363 "js-sys",
7394 "wasm-bindgen",7364 "wasm-bindgen",
@@ -7396,9 +7366,9 @@ dependencies = [
7396 7366
7397 [[package]]7367 [[package]]
7398 name = "wasm-bindgen-macro"7368 name = "wasm-bindgen-macro"
7399-version = "0.2.127"7369+version = "0.2.126"
7400 source = "registry+https://github.com/rust-lang/crates.io-index"7370 source = "registry+https://github.com/rust-lang/crates.io-index"
7401-checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"7371+checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
7402 dependencies = [7372 dependencies = [
7403 "quote",7373 "quote",
7404 "wasm-bindgen-macro-support",7374 "wasm-bindgen-macro-support",
@@ -7406,9 +7376,9 @@ dependencies = [
7406 7376
7407 [[package]]7377 [[package]]
7408 name = "wasm-bindgen-macro-support"7378 name = "wasm-bindgen-macro-support"
7409-version = "0.2.127"7379+version = "0.2.126"
7410 source = "registry+https://github.com/rust-lang/crates.io-index"7380 source = "registry+https://github.com/rust-lang/crates.io-index"
7411-checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"7381+checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
7412 dependencies = [7382 dependencies = [
7413 "bumpalo",7383 "bumpalo",
7414 "proc-macro2",7384 "proc-macro2",
@@ -7419,9 +7389,9 @@ dependencies = [
7419 7389
7420 [[package]]7390 [[package]]
7421 name = "wasm-bindgen-shared"7391 name = "wasm-bindgen-shared"
7422-version = "0.2.127"7392+version = "0.2.126"
7423 source = "registry+https://github.com/rust-lang/crates.io-index"7393 source = "registry+https://github.com/rust-lang/crates.io-index"
7424-checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"7394+checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
7425 dependencies = [7395 dependencies = [
7426 "unicode-ident",7396 "unicode-ident",
7427 ]7397 ]
@@ -7601,9 +7571,9 @@ dependencies = [
7601 7571
7602 [[package]]7572 [[package]]
7603 name = "web-sys"7573 name = "web-sys"
7604-version = "0.3.104"7574+version = "0.3.103"
7605 source = "registry+https://github.com/rust-lang/crates.io-index"7575 source = "registry+https://github.com/rust-lang/crates.io-index"
7606-checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"7576+checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
7607 dependencies = [7577 dependencies = [
7608 "js-sys",7578 "js-sys",
7609 "wasm-bindgen",7579 "wasm-bindgen",
@@ -7647,7 +7617,7 @@ dependencies = [
7647 "noq",7617 "noq",
7648 "rustls",7618 "rustls",
7649 "rustls-native-certs",7619 "rustls-native-certs",
7650- "thiserror 2.0.20",7620+ "thiserror 2.0.19",
7651 "tokio",7621 "tokio",
7652 "tracing",7622 "tracing",
7653 "url",7623 "url",
@@ -7663,7 +7633,7 @@ dependencies = [
7663 "bytes",7633 "bytes",
7664 "http",7634 "http",
7665 "sfv",7635 "sfv",
7666- "thiserror 2.0.20",7636+ "thiserror 2.0.19",
7667 "tokio",7637 "tokio",
7668 "url",7638 "url",
7669 ]7639 ]
@@ -7718,9 +7688,9 @@ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
7718 7688
7719 [[package]]7689 [[package]]
7720 name = "wide"7690 name = "wide"
7721-version = "1.7.0"7691+version = "1.5.0"
7722 source = "registry+https://github.com/rust-lang/crates.io-index"7692 source = "registry+https://github.com/rust-lang/crates.io-index"
7723-checksum = "8cf05ca94c9fba0c51316899caa1d1e74a064fc310a5efa7375e614343d415be"7693+checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89"
7724 dependencies = [7694 dependencies = [
7725 "bytemuck",7695 "bytemuck",
7726 "safe_arch",7696 "safe_arch",
@@ -7911,15 +7881,6 @@ dependencies = [
7911 "windows-targets 0.52.6",7881 "windows-targets 0.52.6",
7912 ]7882 ]
7913 7883
7914-[[package]]
7915-name = "windows-sys"
7916-version = "0.60.2"
7917-source = "registry+https://github.com/rust-lang/crates.io-index"
7918-checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
7919-dependencies = [
7920- "windows-targets 0.53.5",
7921-]
7922-
7923 [[package]]7884 [[package]]
7924 name = "windows-sys"7885 name = "windows-sys"
7925 version = "0.61.2"7886 version = "0.61.2"
@@ -7953,30 +7914,13 @@ dependencies = [
7953 "windows_aarch64_gnullvm 0.52.6",7914 "windows_aarch64_gnullvm 0.52.6",
7954 "windows_aarch64_msvc 0.52.6",7915 "windows_aarch64_msvc 0.52.6",
7955 "windows_i686_gnu 0.52.6",7916 "windows_i686_gnu 0.52.6",
7956- "windows_i686_gnullvm 0.52.6",7917+ "windows_i686_gnullvm",
7957 "windows_i686_msvc 0.52.6",7918 "windows_i686_msvc 0.52.6",
7958 "windows_x86_64_gnu 0.52.6",7919 "windows_x86_64_gnu 0.52.6",
7959 "windows_x86_64_gnullvm 0.52.6",7920 "windows_x86_64_gnullvm 0.52.6",
7960 "windows_x86_64_msvc 0.52.6",7921 "windows_x86_64_msvc 0.52.6",
7961 ]7922 ]
7962 7923
7963-[[package]]
7964-name = "windows-targets"
7965-version = "0.53.5"
7966-source = "registry+https://github.com/rust-lang/crates.io-index"
7967-checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
7968-dependencies = [
7969- "windows-link",
7970- "windows_aarch64_gnullvm 0.53.1",
7971- "windows_aarch64_msvc 0.53.1",
7972- "windows_i686_gnu 0.53.1",
7973- "windows_i686_gnullvm 0.53.1",
7974- "windows_i686_msvc 0.53.1",
7975- "windows_x86_64_gnu 0.53.1",
7976- "windows_x86_64_gnullvm 0.53.1",
7977- "windows_x86_64_msvc 0.53.1",
7978-]
7979-
7980 [[package]]7924 [[package]]
7981 name = "windows-threading"7925 name = "windows-threading"
7982 version = "0.2.1"7926 version = "0.2.1"
@@ -7998,12 +7942,6 @@ version = "0.52.6"
7998 source = "registry+https://github.com/rust-lang/crates.io-index"7942 source = "registry+https://github.com/rust-lang/crates.io-index"
7999 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"7943 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
8000 7944
8001-[[package]]
8002-name = "windows_aarch64_gnullvm"
8003-version = "0.53.1"
8004-source = "registry+https://github.com/rust-lang/crates.io-index"
8005-checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
8006-
8007 [[package]]7945 [[package]]
8008 name = "windows_aarch64_msvc"7946 name = "windows_aarch64_msvc"
8009 version = "0.42.2"7947 version = "0.42.2"
@@ -8016,12 +7954,6 @@ version = "0.52.6"
8016 source = "registry+https://github.com/rust-lang/crates.io-index"7954 source = "registry+https://github.com/rust-lang/crates.io-index"
8017 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"7955 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
8018 7956
8019-[[package]]
8020-name = "windows_aarch64_msvc"
8021-version = "0.53.1"
8022-source = "registry+https://github.com/rust-lang/crates.io-index"
8023-checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
8024-
8025 [[package]]7957 [[package]]
8026 name = "windows_i686_gnu"7958 name = "windows_i686_gnu"
8027 version = "0.42.2"7959 version = "0.42.2"
@@ -8034,24 +7966,12 @@ version = "0.52.6"
8034 source = "registry+https://github.com/rust-lang/crates.io-index"7966 source = "registry+https://github.com/rust-lang/crates.io-index"
8035 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"7967 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
8036 7968
8037-[[package]]
8038-name = "windows_i686_gnu"
8039-version = "0.53.1"
8040-source = "registry+https://github.com/rust-lang/crates.io-index"
8041-checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
8042-
8043 [[package]]7969 [[package]]
8044 name = "windows_i686_gnullvm"7970 name = "windows_i686_gnullvm"
8045 version = "0.52.6"7971 version = "0.52.6"
8046 source = "registry+https://github.com/rust-lang/crates.io-index"7972 source = "registry+https://github.com/rust-lang/crates.io-index"
8047 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"7973 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
8048 7974
8049-[[package]]
8050-name = "windows_i686_gnullvm"
8051-version = "0.53.1"
8052-source = "registry+https://github.com/rust-lang/crates.io-index"
8053-checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
8054-
8055 [[package]]7975 [[package]]
8056 name = "windows_i686_msvc"7976 name = "windows_i686_msvc"
8057 version = "0.42.2"7977 version = "0.42.2"
@@ -8064,12 +7984,6 @@ version = "0.52.6"
8064 source = "registry+https://github.com/rust-lang/crates.io-index"7984 source = "registry+https://github.com/rust-lang/crates.io-index"
8065 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"7985 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
8066 7986
8067-[[package]]
8068-name = "windows_i686_msvc"
8069-version = "0.53.1"
8070-source = "registry+https://github.com/rust-lang/crates.io-index"
8071-checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
8072-
8073 [[package]]7987 [[package]]
8074 name = "windows_x86_64_gnu"7988 name = "windows_x86_64_gnu"
8075 version = "0.42.2"7989 version = "0.42.2"
@@ -8082,12 +7996,6 @@ version = "0.52.6"
8082 source = "registry+https://github.com/rust-lang/crates.io-index"7996 source = "registry+https://github.com/rust-lang/crates.io-index"
8083 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"7997 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
8084 7998
8085-[[package]]
8086-name = "windows_x86_64_gnu"
8087-version = "0.53.1"
8088-source = "registry+https://github.com/rust-lang/crates.io-index"
8089-checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
8090-
8091 [[package]]7999 [[package]]
8092 name = "windows_x86_64_gnullvm"8000 name = "windows_x86_64_gnullvm"
8093 version = "0.42.2"8001 version = "0.42.2"
@@ -8100,12 +8008,6 @@ version = "0.52.6"
8100 source = "registry+https://github.com/rust-lang/crates.io-index"8008 source = "registry+https://github.com/rust-lang/crates.io-index"
8101 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"8009 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
8102 8010
8103-[[package]]
8104-name = "windows_x86_64_gnullvm"
8105-version = "0.53.1"
8106-source = "registry+https://github.com/rust-lang/crates.io-index"
8107-checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
8108-
8109 [[package]]8011 [[package]]
8110 name = "windows_x86_64_msvc"8012 name = "windows_x86_64_msvc"
8111 version = "0.42.2"8013 version = "0.42.2"
@@ -8118,12 +8020,6 @@ version = "0.52.6"
8118 source = "registry+https://github.com/rust-lang/crates.io-index"8020 source = "registry+https://github.com/rust-lang/crates.io-index"
8119 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"8021 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
8120 8022
8121-[[package]]
8122-name = "windows_x86_64_msvc"
8123-version = "0.53.1"
8124-source = "registry+https://github.com/rust-lang/crates.io-index"
8125-checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
8126-
8127 [[package]]8023 [[package]]
8128 name = "winit"8024 name = "winit"
8129 version = "0.30.13"8025 version = "0.30.13"
@@ -8201,16 +8097,16 @@ dependencies = [
8201 "futures",8097 "futures",
8202 "log",8098 "log",
8203 "serde",8099 "serde",
8204- "thiserror 2.0.20",8100+ "thiserror 2.0.19",
8205 "windows",8101 "windows",
8206 "windows-core",8102 "windows-core",
8207 ]8103 ]
8208 8104
8209 [[package]]8105 [[package]]
8210 name = "writeable"8106 name = "writeable"
8211-version = "0.6.4"8107+version = "0.6.3"
8212 source = "registry+https://github.com/rust-lang/crates.io-index"8108 source = "registry+https://github.com/rust-lang/crates.io-index"
8213-checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"8109+checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
8214 8110
8215 [[package]]8111 [[package]]
8216 name = "ws_stream_wasm"8112 name = "ws_stream_wasm"
@@ -8225,7 +8121,7 @@ dependencies = [
8225 "pharos",8121 "pharos",
8226 "rustc_version",8122 "rustc_version",
8227 "send_wrapper",8123 "send_wrapper",
8228- "thiserror 2.0.20",8124+ "thiserror 2.0.19",
8229 "wasm-bindgen",8125 "wasm-bindgen",
8230 "wasm-bindgen-futures",8126 "wasm-bindgen-futures",
8231 "web-sys",8127 "web-sys",
@@ -8277,7 +8173,7 @@ dependencies = [
8277 "nom 7.1.3",8173 "nom 7.1.3",
8278 "oid-registry",8174 "oid-registry",
8279 "rusticata-macros",8175 "rusticata-macros",
8280- "thiserror 2.0.20",8176+ "thiserror 2.0.19",
8281 "time",8177 "time",
8282 ]8178 ]
8283 8179
@@ -8308,9 +8204,9 @@ checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
8308 8204
8309 [[package]]8205 [[package]]
8310 name = "xml-rs"8206 name = "xml-rs"
8311-version = "0.8.29"8207+version = "0.8.28"
8312 source = "registry+https://github.com/rust-lang/crates.io-index"8208 source = "registry+https://github.com/rust-lang/crates.io-index"
8313-checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"8209+checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
8314 8210
8315 [[package]]8211 [[package]]
8316 name = "xmltree"8212 name = "xmltree"
@@ -8356,9 +8252,9 @@ dependencies = [
8356 8252
8357 [[package]]8253 [[package]]
8358 name = "yuv"8254 name = "yuv"
8359-version = "0.8.17"8255+version = "0.8.16"
8360 source = "registry+https://github.com/rust-lang/crates.io-index"8256 source = "registry+https://github.com/rust-lang/crates.io-index"
8361-checksum = "220655e1c245693beb13b377d3174b9efcb1645018d1d4ec53903fc211b135ae"8257+checksum = "5d85a782d94ee43f078bcfd6fa82d4e6a5b2d1cfbbad168e4df5a9f7b39ef48c"
8362 dependencies = [8258 dependencies = [
8363 "num-traits",8259 "num-traits",
8364 ]8260 ]
@@ -8371,18 +8267,18 @@ checksum = "2164e798d9e3d84ee2c91139ace54638059a3b23e361f5c11781c2c6459bde0f"
8371 8267
8372 [[package]]8268 [[package]]
8373 name = "zerocopy"8269 name = "zerocopy"
8374-version = "0.8.56"8270+version = "0.8.55"
8375 source = "registry+https://github.com/rust-lang/crates.io-index"8271 source = "registry+https://github.com/rust-lang/crates.io-index"
8376-checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"8272+checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
8377 dependencies = [8273 dependencies = [
8378 "zerocopy-derive",8274 "zerocopy-derive",
8379 ]8275 ]
8380 8276
8381 [[package]]8277 [[package]]
8382 name = "zerocopy-derive"8278 name = "zerocopy-derive"
8383-version = "0.8.56"8279+version = "0.8.55"
8384 source = "registry+https://github.com/rust-lang/crates.io-index"8280 source = "registry+https://github.com/rust-lang/crates.io-index"
8385-checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"8281+checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
8386 dependencies = [8282 dependencies = [
8387 "proc-macro2",8283 "proc-macro2",
8388 "quote",8284 "quote",
@@ -8432,9 +8328,9 @@ dependencies = [
8432 8328
8433 [[package]]8329 [[package]]
8434 name = "zerotrie"8330 name = "zerotrie"
8435-version = "0.2.5"8331+version = "0.2.4"
8436 source = "registry+https://github.com/rust-lang/crates.io-index"8332 source = "registry+https://github.com/rust-lang/crates.io-index"
8437-checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"8333+checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
8438 dependencies = [8334 dependencies = [
8439 "displaydoc",8335 "displaydoc",
8440 "yoke",8336 "yoke",
@@ -8443,9 +8339,9 @@ dependencies = [
8443 8339
8444 [[package]]8340 [[package]]
8445 name = "zerovec"8341 name = "zerovec"
8446-version = "0.11.8"8342+version = "0.11.6"
8447 source = "registry+https://github.com/rust-lang/crates.io-index"8343 source = "registry+https://github.com/rust-lang/crates.io-index"
8448-checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"8344+checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
8449 dependencies = [8345 dependencies = [
8450 "yoke",8346 "yoke",
8451 "zerofrom",8347 "zerofrom",
@@ -8454,13 +8350,13 @@ dependencies = [
8454 8350
8455 [[package]]8351 [[package]]
8456 name = "zerovec-derive"8352 name = "zerovec-derive"
8457-version = "0.11.6"8353+version = "0.11.3"
8458 source = "registry+https://github.com/rust-lang/crates.io-index"8354 source = "registry+https://github.com/rust-lang/crates.io-index"
8459-checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"8355+checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
8460 dependencies = [8356 dependencies = [
8461 "proc-macro2",8357 "proc-macro2",
8462 "quote",8358 "quote",
8463- "syn 3.0.4",8359+ "syn 2.0.119",
8464 ]8360 ]
8465 8361
8466 [[package]]8362 [[package]]
@@ -8474,9 +8370,9 @@ dependencies = [
8474 "crossbeam-utils",8370 "crossbeam-utils",
8475 "displaydoc",8371 "displaydoc",
8476 "flate2",8372 "flate2",
8477- "indexmap 2.14.1",8373+ "indexmap 2.14.0",
8478 "memchr",8374 "memchr",
8479- "thiserror 2.0.20",8375+ "thiserror 2.0.19",
8480 "zopfli",8376 "zopfli",
8481 ]8377 ]
8482 8378
@@ -8506,9 +8402,9 @@ dependencies = [
8506 8402
8507 [[package]]8403 [[package]]
8508 name = "zune-core"8404 name = "zune-core"
8509-version = "0.5.3"8405+version = "0.5.1"
8510 source = "registry+https://github.com/rust-lang/crates.io-index"8406 source = "registry+https://github.com/rust-lang/crates.io-index"
8511-checksum = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b"8407+checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
8512 8408
8513 [[package]]8409 [[package]]
8514 name = "zune-jpeg"8410 name = "zune-jpeg"
modified third-party/rust/fixups/ahash/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/alsa-sys/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/android-activity/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/anyhow/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/asio-sys/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/aws-lc-rs/fixups.toml +11 -3
@@ -1,3 +1,11 @@
1-# Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
1+# aws-lc-rs's build script only re-exports what aws-lc-sys published through
2+# cargo's `links` metadata, and buck2 does not carry that between build
3+# scripts: it asserts on the first `DEP_AWS_LC_<version>_INCLUDE` it finds and
4+# panics with "missing DEP_AWS_LC_ include" when there is none. The name
5+# encodes aws-lc-sys's `links = "aws_lc_0_43_0"`, and the value is the header
6+# directory in that crate's own sources.
7+#
8+# Both halves name the version, and nothing here derives it: bumping aws-lc-sys
9+# means editing this file, and the symptom of forgetting is that same panic.
10+[buildscript.run]
11+env = { DEP_AWS_LC_0_43_0_INCLUDE = "$(location :aws-lc-sys-0.43.0.crate)/include", OPT_LEVEL = "2" }
@@ -1,3 +1,11 @@
1-# Run the crate build script (emits cfgs / OUT_DIR sources).1+# aws-lc-rs's build script only re-exports what aws-lc-sys published through
2-[buildscript]2+# cargo's `links` metadata, and buck2 does not carry that between build
3-run = true3+# scripts: it asserts on the first `DEP_AWS_LC_<version>_INCLUDE` it finds and
4+# panics with "missing DEP_AWS_LC_ include" when there is none. The name
5+# encodes aws-lc-sys's `links = "aws_lc_0_43_0"`, and the value is the header
6+# directory in that crate's own sources.
7+#
8+# Both halves name the version, and nothing here derives it: bumping aws-lc-sys
9+# means editing this file, and the symptom of forgetting is that same panic.
10+[buildscript.run]
11+env = { DEP_AWS_LC_0_43_0_INCLUDE = "$(location :aws-lc-sys-0.43.0.crate)/include", OPT_LEVEL = "2" }
modified third-party/rust/fixups/aws-lc-sys/fixups.toml +2 -3
@@ -1,3 +1,2 @@
1-# Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
1+[buildscript.run]
2+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,2 @@
1-# Run the crate build script (emits cfgs / OUT_DIR sources).1+[buildscript.run]
2-[buildscript]2+env = { OPT_LEVEL = "2" }
3-run = true
modified third-party/rust/fixups/bindgen/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/blake3/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/clang-sys/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/cpal/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/crc32fast/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/crossbeam-deque/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/crossbeam-epoch/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/crossbeam-utils/fixups.toml +4 -2
@@ -6,5 +6,7 @@ extra_srcs = [
66 ]
77
88 # Run the crate build script (emits cfgs / OUT_DIR sources).
9-[buildscript]
10-run = true
9+[buildscript.run]
10+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
11+# a number of configure scripts read it unconditionally.
12+env = { OPT_LEVEL = "2" }
@@ -6,5 +6,7 @@ extra_srcs = [
6 ]6 ]
7 7
8 # Run the crate build script (emits cfgs / OUT_DIR sources).8 # Run the crate build script (emits cfgs / OUT_DIR sources).
9-[buildscript]9+[buildscript.run]
10-run = true10+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
11+# a number of configure scripts read it unconditionally.
12+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/curve25519-dalek/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/generic-array/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/getrandom/fixups.toml +4 -2
@@ -5,5 +5,7 @@ extra_srcs = [
55 ]
66
77 # Run the crate build script (emits cfgs / OUT_DIR sources).
8-[buildscript]
9-run = true
8+[buildscript.run]
9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
@@ -5,5 +5,7 @@ extra_srcs = [
5 ]5 ]
6 6
7 # Run the crate build script (emits cfgs / OUT_DIR sources).7 # Run the crate build script (emits cfgs / OUT_DIR sources).
8-[buildscript]8+[buildscript.run]
9-run = true9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/glutin-winit/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/glutin/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/glutin_egl_sys/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/glutin_glx_sys/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/glutin_wgl_sys/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/heapless/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/httparse/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/icu_normalizer_data/fixups.toml +4 -2
@@ -12,5 +12,7 @@ extra_srcs = [
1212 ]
1313
1414 # Run the crate build script (emits cfgs / OUT_DIR sources).
15-[buildscript]
16-run = true
15+[buildscript.run]
16+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
17+# a number of configure scripts read it unconditionally.
18+env = { OPT_LEVEL = "2" }
@@ -12,5 +12,7 @@ extra_srcs = [
12 ]12 ]
13 13
14 # Run the crate build script (emits cfgs / OUT_DIR sources).14 # Run the crate build script (emits cfgs / OUT_DIR sources).
15-[buildscript]15+[buildscript.run]
16-run = true16+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
17+# a number of configure scripts read it unconditionally.
18+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/icu_properties_data/fixups.toml +4 -2
@@ -142,5 +142,7 @@ extra_srcs = [
142142 ]
143143
144144 # Run the crate build script (emits cfgs / OUT_DIR sources).
145-[buildscript]
146-run = true
145+[buildscript.run]
146+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
147+# a number of configure scripts read it unconditionally.
148+env = { OPT_LEVEL = "2" }
@@ -142,5 +142,7 @@ extra_srcs = [
142 ]142 ]
143 143
144 # Run the crate build script (emits cfgs / OUT_DIR sources).144 # Run the crate build script (emits cfgs / OUT_DIR sources).
145-[buildscript]145+[buildscript.run]
146-run = true146+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
147+# a number of configure scripts read it unconditionally.
148+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/iroh-relay/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/iroh/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/jni-macros/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/jni-sys/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/jni/fixups.toml +4 -2
@@ -13,5 +13,7 @@ extra_srcs = [
1313 ]
1414
1515 # Run the crate build script (emits cfgs / OUT_DIR sources).
16-[buildscript]
17-run = true
16+[buildscript.run]
17+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
18+# a number of configure scripts read it unconditionally.
19+env = { OPT_LEVEL = "2" }
@@ -13,5 +13,7 @@ extra_srcs = [
13 ]13 ]
14 14
15 # Run the crate build script (emits cfgs / OUT_DIR sources).15 # Run the crate build script (emits cfgs / OUT_DIR sources).
16-[buildscript]16+[buildscript.run]
17-run = true17+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
18+# a number of configure scripts read it unconditionally.
19+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/khronos_api/fixups.toml +4 -2
@@ -12,5 +12,7 @@ extra_srcs = [
1212 ]
1313
1414 # Run the crate build script (emits cfgs / OUT_DIR sources).
15-[buildscript]
16-run = true
15+[buildscript.run]
16+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
17+# a number of configure scripts read it unconditionally.
18+env = { OPT_LEVEL = "2" }
@@ -12,5 +12,7 @@ extra_srcs = [
12 ]12 ]
13 13
14 # Run the crate build script (emits cfgs / OUT_DIR sources).14 # Run the crate build script (emits cfgs / OUT_DIR sources).
15-[buildscript]15+[buildscript.run]
16-run = true16+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
17+# a number of configure scripts read it unconditionally.
18+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/libc/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/libm/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/memoffset/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/moq-media/fixups.toml +4 -2
@@ -5,5 +5,7 @@
55 omit_deps = ["cpal"]
66 extra_deps = ["//third-party/rust/cpal:cpal"]
77
8-[buildscript]
9-run = true
8+[buildscript.run]
9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
@@ -5,5 +5,7 @@
5 omit_deps = ["cpal"]5 omit_deps = ["cpal"]
6 extra_deps = ["//third-party/rust/cpal:cpal"]6 extra_deps = ["//third-party/rust/cpal:cpal"]
7 7
8-[buildscript]8+[buildscript.run]
9-run = true9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/n0-future/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/netwatch/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/nix/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/noq-udp/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/noq/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/num-traits/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/objc-sys/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/objc2/fixups.toml +4 -2
@@ -17,5 +17,7 @@ extra_srcs = [
1717 ]
1818
1919 # Run the crate build script (emits cfgs / OUT_DIR sources).
20-[buildscript]
21-run = true
20+[buildscript.run]
21+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
22+# a number of configure scripts read it unconditionally.
23+env = { OPT_LEVEL = "2" }
@@ -17,5 +17,7 @@ extra_srcs = [
17 ]17 ]
18 18
19 # Run the crate build script (emits cfgs / OUT_DIR sources).19 # Run the crate build script (emits cfgs / OUT_DIR sources).
20-[buildscript]20+[buildscript.run]
21-run = true21+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
22+# a number of configure scripts read it unconditionally.
23+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/object/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/openh264-sys2/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/parking_lot_core/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/paste/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/pkarr/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/portable-atomic/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/prettyplease/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/proc-macro2/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/quote/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/rayon-core/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/ref-cast/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/rustix/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/rustls/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/rustversion/fixups.toml +4 -2
@@ -5,5 +5,7 @@ extra_srcs = [
55 ]
66
77 # Run the crate build script (emits cfgs / OUT_DIR sources).
8-[buildscript]
9-run = true
8+[buildscript.run]
9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
@@ -5,5 +5,7 @@ extra_srcs = [
5 ]5 ]
6 6
7 # Run the crate build script (emits cfgs / OUT_DIR sources).7 # Run the crate build script (emits cfgs / OUT_DIR sources).
8-[buildscript]8+[buildscript.run]
9-run = true9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/rusty-capture/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/rusty-codecs/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/serde/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/serde_core/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/serde_json/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/smithay-client-toolkit/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/thiserror/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/v4l2r/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/vergen-gitcl/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/vergen-lib/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/vergen/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/wayland-backend/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/wayland-client/fixups.toml +4 -2
@@ -3,5 +3,7 @@ extra_srcs = ["**/*.xml"]
33
44
55 # Run the crate build script (emits cfgs / OUT_DIR sources).
6-[buildscript]
7-run = true
6+[buildscript.run]
7+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
8+# a number of configure scripts read it unconditionally.
9+env = { OPT_LEVEL = "2" }
@@ -3,5 +3,7 @@ extra_srcs = ["**/*.xml"]
3 3
4 4
5 # Run the crate build script (emits cfgs / OUT_DIR sources).5 # Run the crate build script (emits cfgs / OUT_DIR sources).
6-[buildscript]6+[buildscript.run]
7-run = true7+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
8+# a number of configure scripts read it unconditionally.
9+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/wayland-sys/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/windows_x86_64_gnu/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/windows_x86_64_msvc/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/winit/fixups.toml +4 -2
@@ -34,5 +34,7 @@ extra_srcs = [
3434 ]
3535
3636 # Run the crate build script (emits cfgs / OUT_DIR sources).
37-[buildscript]
38-run = true
37+[buildscript.run]
38+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
39+# a number of configure scripts read it unconditionally.
40+env = { OPT_LEVEL = "2" }
@@ -34,5 +34,7 @@ extra_srcs = [
34 ]34 ]
35 35
36 # Run the crate build script (emits cfgs / OUT_DIR sources).36 # Run the crate build script (emits cfgs / OUT_DIR sources).
37-[buildscript]37+[buildscript.run]
38-run = true38+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
39+# a number of configure scripts read it unconditionally.
40+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/x11-dl/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/zerocopy/fixups.toml +4 -2
@@ -5,5 +5,7 @@ extra_srcs = [
55 ]
66
77 # Run the crate build script (emits cfgs / OUT_DIR sources).
8-[buildscript]
9-run = true
8+[buildscript.run]
9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
@@ -5,5 +5,7 @@ extra_srcs = [
5 ]5 ]
6 6
7 # Run the crate build script (emits cfgs / OUT_DIR sources).7 # Run the crate build script (emits cfgs / OUT_DIR sources).
8-[buildscript]8+[buildscript.run]
9-run = true9+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
10+# a number of configure scripts read it unconditionally.
11+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/zip/fixups.toml +4 -2
@@ -1,4 +1,6 @@
11
22 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]
4-run = true
3+[buildscript.run]
4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
@@ -1,4 +1,6 @@
1 1
2 # Run the crate build script (emits cfgs / OUT_DIR sources).2 # Run the crate build script (emits cfgs / OUT_DIR sources).
3-[buildscript]3+[buildscript.run]
4-run = true4+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
5+# a number of configure scripts read it unconditionally.
6+env = { OPT_LEVEL = "2" }
modified third-party/rust/fixups/zmij/fixups.toml +4 -2
@@ -1,3 +1,5 @@
11 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]
3-run = true
2+[buildscript.run]
3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
@@ -1,3 +1,5 @@
1 # Run the crate build script (emits cfgs / OUT_DIR sources).1 # Run the crate build script (emits cfgs / OUT_DIR sources).
2-[buildscript]2+[buildscript.run]
3-run = true3+# cargo sets OPT_LEVEL for every build script; buck2 does not, and cc-rs and
4+# a number of configure scripts read it unconditionally.
5+env = { OPT_LEVEL = "2" }
modified toolchains/BUCK +36 -7
@@ -4,9 +4,26 @@ load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain")
44 load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")
55
66 # Tools come from the DotSlash files in scripts/, so the build depends on
7-# pinned upstream releases rather than whatever the host happens to have. The
8-# prelude's system toolchains resolve their tools through PATH, so buck2 must
9-# be invoked with scripts/ prepended — see the `buck` recipe in justfile.
7+# pinned upstream releases rather than whatever the host happens to have.
8+#
9+# The paths are absolute, and read out of .buckconfig.local rather than written
10+# here, because neither of the obvious spellings works. A build script runs in
11+# a directory of its own, and the prelude re-execs the compiler from there, so
12+# a project-relative `scripts/zcc` is not found; and the shim that does the
13+# re-exec calls os.execl rather than os.execlp, so a bare `zcc` on PATH is not
14+# found either. aws-lc-sys is where both show up. The `buck` recipe in justfile
15+# writes that file, so the absolute paths are generated rather than committed.
16+_SCRIPTS = read_root_config("jolt", "scripts", "scripts")
17+
18+# The compiler's version, written by the `buck` recipe alongside the paths.
19+#
20+# It has to reach the actions somehow, because the prelude names rustc as the
21+# bare string "rustc" — the binary is not an input, so its identity is not in
22+# any action's cache digest. Two compilers therefore produce artifacts under
23+# the same digest, and a shared cache will hand one build the other's rlibs;
24+# the failure is E0514, a long way from the cause. Naming the version in a cfg
25+# nothing reads is enough to keep the digests apart.
26+_RUSTC_VERSION = read_root_config("jolt", "rustc_version", "unknown")
1027 #
1128 # This is the same arrangement .cargo/config.toml used to describe: zig cc
1229 # carries its own glibc sysroot, which is why this repo builds on a machine
@@ -15,10 +32,13 @@ load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")
1532 # vidya's own buck2 build.
1633 system_cxx_toolchain(
1734 name = "cxx",
18- compiler = "scripts/zcc",
35+ # `ar` would otherwise come off the host, which is the one thing this
36+ # toolchain is arranged not to do.
37+ archiver = _SCRIPTS + "/zar",
38+ compiler = _SCRIPTS + "/zcc",
1939 compiler_type = "clang",
20- cxx_compiler = "scripts/zxx",
21- linker = "scripts/zcc",
40+ cxx_compiler = _SCRIPTS + "/zxx",
41+ linker = _SCRIPTS + "/zcc",
2242 visibility = ["PUBLIC"],
2343 )
2444
@@ -35,7 +55,16 @@ system_python_bootstrap_toolchain(
3555 system_rust_toolchain(
3656 name = "rust",
3757 default_edition = "2021",
38- rustc_flags = ["-Clinker=scripts/zcc"],
58+ rustc_flags = [
59+ "-Clinker=" + _SCRIPTS + "/zcc",
60+ # What [profile.release] in Cargo.toml says, and for the reason given
61+ # there: the tree walk and the texture uploads are hot every frame, and
62+ # the media plane decodes H.264. buck2 optimises nothing by default, so
63+ # without this the two objects are debug builds wearing release names.
64+ # OPT_LEVEL=2 in the buildscript fixups is the same setting for the C.
65+ "-Copt-level=2",
66+ "--cfg=jolt_rustc=\"" + _RUSTC_VERSION + "\"",
67+ ],
3968 rustc_target_triple = select({
4069 "prelude//os:linux": select({
4170 "prelude//cpu:arm64": "aarch64-unknown-linux-gnu",
@@ -4,9 +4,26 @@ load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain")
4 load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")4 load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")
5 5
6 # Tools come from the DotSlash files in scripts/, so the build depends on6 # Tools come from the DotSlash files in scripts/, so the build depends on
7-# pinned upstream releases rather than whatever the host happens to have. The7+# pinned upstream releases rather than whatever the host happens to have.
8-# prelude's system toolchains resolve their tools through PATH, so buck2 must8+#
9-# be invoked with scripts/ prepended — see the `buck` recipe in justfile.9+# The paths are absolute, and read out of .buckconfig.local rather than written
10+# here, because neither of the obvious spellings works. A build script runs in
11+# a directory of its own, and the prelude re-execs the compiler from there, so
12+# a project-relative `scripts/zcc` is not found; and the shim that does the
13+# re-exec calls os.execl rather than os.execlp, so a bare `zcc` on PATH is not
14+# found either. aws-lc-sys is where both show up. The `buck` recipe in justfile
15+# writes that file, so the absolute paths are generated rather than committed.
16+_SCRIPTS = read_root_config("jolt", "scripts", "scripts")
17+
18+# The compiler's version, written by the `buck` recipe alongside the paths.
19+#
20+# It has to reach the actions somehow, because the prelude names rustc as the
21+# bare string "rustc" — the binary is not an input, so its identity is not in
22+# any action's cache digest. Two compilers therefore produce artifacts under
23+# the same digest, and a shared cache will hand one build the other's rlibs;
24+# the failure is E0514, a long way from the cause. Naming the version in a cfg
25+# nothing reads is enough to keep the digests apart.
26+_RUSTC_VERSION = read_root_config("jolt", "rustc_version", "unknown")
10 #27 #
11 # This is the same arrangement .cargo/config.toml used to describe: zig cc28 # This is the same arrangement .cargo/config.toml used to describe: zig cc
12 # carries its own glibc sysroot, which is why this repo builds on a machine29 # carries its own glibc sysroot, which is why this repo builds on a machine
@@ -15,10 +32,13 @@ load("@prelude//toolchains:rust.bzl", "system_rust_toolchain")
15 # vidya's own buck2 build.32 # vidya's own buck2 build.
16 system_cxx_toolchain(33 system_cxx_toolchain(
17 name = "cxx",34 name = "cxx",
18- compiler = "scripts/zcc",35+ # `ar` would otherwise come off the host, which is the one thing this
36+ # toolchain is arranged not to do.
37+ archiver = _SCRIPTS + "/zar",
38+ compiler = _SCRIPTS + "/zcc",
19 compiler_type = "clang",39 compiler_type = "clang",
20- cxx_compiler = "scripts/zxx",40+ cxx_compiler = _SCRIPTS + "/zxx",
21- linker = "scripts/zcc",41+ linker = _SCRIPTS + "/zcc",
22 visibility = ["PUBLIC"],42 visibility = ["PUBLIC"],
23 )43 )
24 44
@@ -35,7 +55,16 @@ system_python_bootstrap_toolchain(
35 system_rust_toolchain(55 system_rust_toolchain(
36 name = "rust",56 name = "rust",
37 default_edition = "2021",57 default_edition = "2021",
38- rustc_flags = ["-Clinker=scripts/zcc"],58+ rustc_flags = [
59+ "-Clinker=" + _SCRIPTS + "/zcc",
60+ # What [profile.release] in Cargo.toml says, and for the reason given
61+ # there: the tree walk and the texture uploads are hot every frame, and
62+ # the media plane decodes H.264. buck2 optimises nothing by default, so
63+ # without this the two objects are debug builds wearing release names.
64+ # OPT_LEVEL=2 in the buildscript fixups is the same setting for the C.
65+ "-Copt-level=2",
66+ "--cfg=jolt_rustc=\"" + _RUSTC_VERSION + "\"",
67+ ],
39 rustc_target_triple = select({68 rustc_target_triple = select({
40 "prelude//os:linux": select({69 "prelude//os:linux": select({
41 "prelude//cpu:arm64": "aarch64-unknown-linux-gnu",70 "prelude//cpu:arm64": "aarch64-unknown-linux-gnu",
added toolchains/dist.bzl +54 -0
new file mode 100644
@@ -0,0 +1,54 @@
1+# The compilers, as build artifacts rather than things found on the machine.
2+#
3+# scripts/*.dotslash pins the same tarballs for humans; these fetch them into
4+# buck's own tree so that every action's inputs include the compiler that ran
5+# it. Two things follow. An action's cache digest now covers the toolchain, so
6+# a compiler change can no longer collide with the old entries — the failure
7+# that produced E0514 "please recompile that crate" against a shared cache.
8+# And a remote worker can materialise the tools, which is what remote
9+# execution needs and what a host path can never give it.
10+#
11+# Keep the versions and digests here equal to the ones in scripts/.
12+RUST_VERSION = "1.98.0"
13+RUST_DATE = "2026-08-20"
14+ZIG_VERSION = "0.16.0"
15+
16+_RUST_DIST = {
17+ "x86_64-unknown-linux-gnu": "aa30409afa67bd1ada244cefd82c7980e6a65bc113bb978e934b2413c75e3900",
18+ "aarch64-unknown-linux-gnu": "5fbb4282403046d52a4672765c6761a809bf9f33e699b17e6eb7a93ab7770cc3",
19+}
20+
21+_ZIG_DIST = {
22+ "x86_64-linux": "70e49664a74374b48b51e6f3fdfbf437f6395d42509050588bd49abe52ba3d00",
23+ "aarch64-linux": "ea4b09bfb22ec6f6c6ceac57ab63efb6b46e17ab08d21f69f3a48b38e1534f17",
24+}
25+
26+def rust_dist(name, triple):
27+ """The whole Rust dist tarball: rustc, rustdoc, cargo and the std components."""
28+ native.http_archive(
29+ name = name,
30+ urls = ["https://static.rust-lang.org/dist/{}/rust-{}-{}.tar.gz".format(
31+ RUST_DATE,
32+ RUST_VERSION,
33+ triple,
34+ )],
35+ sha256 = _RUST_DIST[triple],
36+ strip_prefix = "rust-{}-{}".format(RUST_VERSION, triple),
37+ type = "tar.gz",
38+ visibility = ["PUBLIC"],
39+ )
40+
41+def zig_dist(name, triple):
42+ """zig, which is the C and C++ compiler, the linker and the archiver."""
43+ native.http_archive(
44+ name = name,
45+ urls = ["https://ziglang.org/download/{}/zig-{}-{}.tar.xz".format(
46+ ZIG_VERSION,
47+ triple,
48+ ZIG_VERSION,
49+ )],
50+ sha256 = _ZIG_DIST[triple],
51+ strip_prefix = "zig-{}-{}".format(triple, ZIG_VERSION),
52+ type = "tar.xz",
53+ visibility = ["PUBLIC"],
54+ )
new file mode 100644
@@ -0,0 +1,54 @@
1+# The compilers, as build artifacts rather than things found on the machine.
2+#
3+# scripts/*.dotslash pins the same tarballs for humans; these fetch them into
4+# buck's own tree so that every action's inputs include the compiler that ran
5+# it. Two things follow. An action's cache digest now covers the toolchain, so
6+# a compiler change can no longer collide with the old entries — the failure
7+# that produced E0514 "please recompile that crate" against a shared cache.
8+# And a remote worker can materialise the tools, which is what remote
9+# execution needs and what a host path can never give it.
10+#
11+# Keep the versions and digests here equal to the ones in scripts/.
12+RUST_VERSION = "1.98.0"
13+RUST_DATE = "2026-08-20"
14+ZIG_VERSION = "0.16.0"
15+
16+_RUST_DIST = {
17+ "x86_64-unknown-linux-gnu": "aa30409afa67bd1ada244cefd82c7980e6a65bc113bb978e934b2413c75e3900",
18+ "aarch64-unknown-linux-gnu": "5fbb4282403046d52a4672765c6761a809bf9f33e699b17e6eb7a93ab7770cc3",
19+}
20+
21+_ZIG_DIST = {
22+ "x86_64-linux": "70e49664a74374b48b51e6f3fdfbf437f6395d42509050588bd49abe52ba3d00",
23+ "aarch64-linux": "ea4b09bfb22ec6f6c6ceac57ab63efb6b46e17ab08d21f69f3a48b38e1534f17",
24+}
25+
26+def rust_dist(name, triple):
27+ """The whole Rust dist tarball: rustc, rustdoc, cargo and the std components."""
28+ native.http_archive(
29+ name = name,
30+ urls = ["https://static.rust-lang.org/dist/{}/rust-{}-{}.tar.gz".format(
31+ RUST_DATE,
32+ RUST_VERSION,
33+ triple,
34+ )],
35+ sha256 = _RUST_DIST[triple],
36+ strip_prefix = "rust-{}-{}".format(RUST_VERSION, triple),
37+ type = "tar.gz",
38+ visibility = ["PUBLIC"],
39+ )
40+
41+def zig_dist(name, triple):
42+ """zig, which is the C and C++ compiler, the linker and the archiver."""
43+ native.http_archive(
44+ name = name,
45+ urls = ["https://ziglang.org/download/{}/zig-{}-{}.tar.xz".format(
46+ ZIG_VERSION,
47+ triple,
48+ ZIG_VERSION,
49+ )],
50+ sha256 = _ZIG_DIST[triple],
51+ strip_prefix = "zig-{}-{}".format(triple, ZIG_VERSION),
52+ type = "tar.xz",
53+ visibility = ["PUBLIC"],
54+ )