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>
600f207 parent: 460541b modified
.buckconfig +8 -4 | @@ -17,13 +17,17 @@ | ||
| 17 | 17 | [external_cells] |
| 18 | 18 | 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 | 24 | [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 | |
| 24 | 28 | |
| 25 | 29 | [build] |
| 26 | - execution_platforms = prelude//platforms:default | |
| 30 | + execution_platforms = root//platforms:cache | |
| 27 | 31 | |
| 28 | 32 | [project] |
| 29 | 33 | ignore = .git,target |
| @@ -17,13 +17,17 @@ | |||
| 17 | [external_cells] | 17 | [external_cells] |
| 18 | prelude = bundled | 18 | 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:default | 27 | + target:toolchains//...->root//platforms:cache |
| 24 | 28 | ||
| 25 | [build] | 29 | [build] |
| 26 | - execution_platforms = prelude//platforms:default | 30 | + execution_platforms = root//platforms:cache |
| 27 | 31 | ||
| 28 | [project] | 32 | [project] |
| 29 | ignore = .git,target | 33 | ignore = .git,target |
modified
.gitignore +6 -0 | @@ -7,3 +7,9 @@ | ||
| 7 | 7 | # download cache. Regenerated by `reindeer vendor`, not carried in the repo. |
| 8 | 8 | /third-party/rust/vendor |
| 9 | 9 | /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/vendor | 8 | /third-party/rust/vendor |
| 9 | /third-party/rust/.cargo | 9 | /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: | ||
| 18 | 18 | build *args: |
| 19 | 19 | cargo build --release {{args}} |
| 20 | 20 | |
| 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. | |
| 24 | 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 | 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 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. | |
| 29 | 42 | buck-build *args: |
| 30 | 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 | 53 | test *args: |
| 33 | 54 | 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 their | 21 | +# buck2, with scripts/ reachable two ways, because two things need it |
| 22 | -# tools through PATH, and that directory is where the pinned ones live. Only | 22 | +# 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 in | 36 | +# 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( | ||
| 461 | 461 | "CARGO_PKG_VERSION_MINOR": "8", |
| 462 | 462 | "CARGO_PKG_VERSION_PATCH": "12", |
| 463 | 463 | "CARGO_PKG_VERSION_PRE": "", |
| 464 | + "OPT_LEVEL": "2", | |
| 464 | 465 | }, |
| 465 | 466 | features = [ |
| 466 | 467 | "no-rng", |
| @@ -486,23 +487,23 @@ buildscript_run( | ||
| 486 | 487 | ) |
| 487 | 488 | |
| 488 | 489 | 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"], | |
| 493 | 494 | visibility = [], |
| 494 | 495 | ) |
| 495 | 496 | |
| 496 | 497 | cargo.rust_library( |
| 497 | 498 | name = "aho-corasick-1", |
| 498 | - srcs = [":aho-corasick-1.1.5.crate"], | |
| 499 | + srcs = [":aho-corasick-1.1.4.crate"], | |
| 499 | 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 | 502 | edition = "2021", |
| 502 | 503 | env = { |
| 503 | 504 | "CARGO_BIN_NAME": "aho_corasick", |
| 504 | 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 | 507 | "CARGO_PKG_AUTHORS": "Andrew Gallant <jamslam@gmail.com>", |
| 507 | 508 | "CARGO_PKG_DESCRIPTION": "Fast multiple substring searching.", |
| 508 | 509 | "CARGO_PKG_HOMEPAGE": "https://github.com/BurntSushi/aho-corasick", |
| @@ -510,10 +511,10 @@ cargo.rust_library( | ||
| 510 | 511 | "CARGO_PKG_README": "README.md", |
| 511 | 512 | "CARGO_PKG_REPOSITORY": "https://github.com/BurntSushi/aho-corasick", |
| 512 | 513 | "CARGO_PKG_RUST_VERSION": "1.60.0", |
| 513 | - "CARGO_PKG_VERSION": "1.1.5", | |
| 514 | + "CARGO_PKG_VERSION": "1.1.4", | |
| 514 | 515 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 515 | 516 | "CARGO_PKG_VERSION_MINOR": "1", |
| 516 | - "CARGO_PKG_VERSION_PATCH": "5", | |
| 517 | + "CARGO_PKG_VERSION_PATCH": "4", | |
| 517 | 518 | "CARGO_PKG_VERSION_PRE": "", |
| 518 | 519 | }, |
| 519 | 520 | features = [ |
| @@ -689,6 +690,7 @@ buildscript_run( | ||
| 689 | 690 | "CARGO_PKG_VERSION_MINOR": "4", |
| 690 | 691 | "CARGO_PKG_VERSION_PATCH": "0", |
| 691 | 692 | "CARGO_PKG_VERSION_PRE": "", |
| 693 | + "OPT_LEVEL": "2", | |
| 692 | 694 | }, |
| 693 | 695 | version = "0.4.0", |
| 694 | 696 | ) |
| @@ -1029,6 +1031,7 @@ buildscript_run( | ||
| 1029 | 1031 | "CARGO_PKG_VERSION_MINOR": "0", |
| 1030 | 1032 | "CARGO_PKG_VERSION_PATCH": "104", |
| 1031 | 1033 | "CARGO_PKG_VERSION_PRE": "", |
| 1034 | + "OPT_LEVEL": "2", | |
| 1032 | 1035 | }, |
| 1033 | 1036 | features = [ |
| 1034 | 1037 | "backtrace", |
| @@ -1122,23 +1125,23 @@ cargo.rust_library( | ||
| 1122 | 1125 | ) |
| 1123 | 1126 | |
| 1124 | 1127 | 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"], | |
| 1129 | 1132 | visibility = [], |
| 1130 | 1133 | ) |
| 1131 | 1134 | |
| 1132 | 1135 | cargo.rust_library( |
| 1133 | 1136 | name = "archery-1", |
| 1134 | - srcs = [":archery-1.2.3.crate"], | |
| 1137 | + srcs = [":archery-1.2.2.crate"], | |
| 1135 | 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 | 1140 | edition = "2024", |
| 1138 | 1141 | env = { |
| 1139 | 1142 | "CARGO_BIN_NAME": "archery", |
| 1140 | 1143 | "CARGO_CRATE_NAME": "archery", |
| 1141 | - "CARGO_MANIFEST_DIR": "archery-1.2.3.crate", | |
| 1144 | + "CARGO_MANIFEST_DIR": "archery-1.2.2.crate", | |
| 1142 | 1145 | "CARGO_PKG_AUTHORS": "Diogo Sousa <diogogsousa@gmail.com>", |
| 1143 | 1146 | "CARGO_PKG_DESCRIPTION": "Abstract over the atomicity of reference-counting pointers", |
| 1144 | 1147 | "CARGO_PKG_HOMEPAGE": "https://github.com/orium/archery", |
| @@ -1146,10 +1149,10 @@ cargo.rust_library( | ||
| 1146 | 1149 | "CARGO_PKG_README": "README.md", |
| 1147 | 1150 | "CARGO_PKG_REPOSITORY": "https://github.com/orium/archery", |
| 1148 | 1151 | "CARGO_PKG_RUST_VERSION": "1.85.0", |
| 1149 | - "CARGO_PKG_VERSION": "1.2.3", | |
| 1152 | + "CARGO_PKG_VERSION": "1.2.2", | |
| 1150 | 1153 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 1151 | 1154 | "CARGO_PKG_VERSION_MINOR": "2", |
| 1152 | - "CARGO_PKG_VERSION_PATCH": "3", | |
| 1155 | + "CARGO_PKG_VERSION_PATCH": "2", | |
| 1153 | 1156 | "CARGO_PKG_VERSION_PRE": "", |
| 1154 | 1157 | }, |
| 1155 | 1158 | features = ["triomphe"], |
| @@ -1268,23 +1271,23 @@ cargo.rust_library( | ||
| 1268 | 1271 | ) |
| 1269 | 1272 | |
| 1270 | 1273 | 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"], | |
| 1275 | 1278 | visibility = [], |
| 1276 | 1279 | ) |
| 1277 | 1280 | |
| 1278 | 1281 | cargo.rust_library( |
| 1279 | 1282 | name = "async-trait-0.1", |
| 1280 | - srcs = [":async-trait-0.1.92.crate"], | |
| 1283 | + srcs = [":async-trait-0.1.91.crate"], | |
| 1281 | 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 | 1286 | edition = "2021", |
| 1284 | 1287 | env = { |
| 1285 | 1288 | "CARGO_BIN_NAME": "async_trait", |
| 1286 | 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 | 1291 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 1289 | 1292 | "CARGO_PKG_DESCRIPTION": "Type erasure for async trait methods", |
| 1290 | 1293 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -1292,10 +1295,10 @@ cargo.rust_library( | ||
| 1292 | 1295 | "CARGO_PKG_README": "README.md", |
| 1293 | 1296 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/async-trait", |
| 1294 | 1297 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 1295 | - "CARGO_PKG_VERSION": "0.1.92", | |
| 1298 | + "CARGO_PKG_VERSION": "0.1.91", | |
| 1296 | 1299 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 1297 | 1300 | "CARGO_PKG_VERSION_MINOR": "1", |
| 1298 | - "CARGO_PKG_VERSION_PATCH": "92", | |
| 1301 | + "CARGO_PKG_VERSION_PATCH": "91", | |
| 1299 | 1302 | "CARGO_PKG_VERSION_PRE": "", |
| 1300 | 1303 | }, |
| 1301 | 1304 | proc_macro = True, |
| @@ -1584,23 +1587,23 @@ cargo.rust_library( | ||
| 1584 | 1587 | ) |
| 1585 | 1588 | |
| 1586 | 1589 | 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"], | |
| 1591 | 1594 | visibility = [], |
| 1592 | 1595 | ) |
| 1593 | 1596 | |
| 1594 | 1597 | cargo.rust_library( |
| 1595 | 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 | 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 | 1602 | edition = "2021", |
| 1600 | 1603 | env = { |
| 1601 | 1604 | "CARGO_BIN_NAME": "aws_lc_rs", |
| 1602 | 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 | 1607 | "CARGO_PKG_AUTHORS": "AWS-LibCrypto", |
| 1605 | 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 | 1609 | "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs", |
| @@ -1608,10 +1611,10 @@ cargo.rust_library( | ||
| 1608 | 1611 | "CARGO_PKG_README": "README.md", |
| 1609 | 1612 | "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs", |
| 1610 | 1613 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 1611 | - "CARGO_PKG_VERSION": "1.18.0", | |
| 1614 | + "CARGO_PKG_VERSION": "1.17.3", | |
| 1612 | 1615 | "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", | |
| 1615 | 1618 | "CARGO_PKG_VERSION_PRE": "", |
| 1616 | 1619 | "OUT_DIR": "$(location :aws-lc-rs-1-build-script-run[out_dir])", |
| 1617 | 1620 | }, |
| @@ -1626,7 +1629,7 @@ cargo.rust_library( | ||
| 1626 | 1629 | rustc_flags = ["@$(location :aws-lc-rs-1-build-script-run[rustc_flags])"], |
| 1627 | 1630 | visibility = [], |
| 1628 | 1631 | deps = [ |
| 1629 | - ":aws-lc-sys-0.44", | |
| 1632 | + ":aws-lc-sys-0.43", | |
| 1630 | 1633 | ":untrusted-0.7", |
| 1631 | 1634 | ":zeroize-1", |
| 1632 | 1635 | ], |
| @@ -1634,14 +1637,14 @@ cargo.rust_library( | ||
| 1634 | 1637 | |
| 1635 | 1638 | cargo.rust_binary( |
| 1636 | 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 | 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 | 1643 | edition = "2021", |
| 1641 | 1644 | env = { |
| 1642 | 1645 | "CARGO_BIN_NAME": "build-script-build", |
| 1643 | 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 | 1648 | "CARGO_PKG_AUTHORS": "AWS-LibCrypto", |
| 1646 | 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 | 1650 | "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs", |
| @@ -1649,10 +1652,10 @@ cargo.rust_binary( | ||
| 1649 | 1652 | "CARGO_PKG_README": "README.md", |
| 1650 | 1653 | "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs", |
| 1651 | 1654 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 1652 | - "CARGO_PKG_VERSION": "1.18.0", | |
| 1655 | + "CARGO_PKG_VERSION": "1.17.3", | |
| 1653 | 1656 | "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", | |
| 1656 | 1659 | "CARGO_PKG_VERSION_PRE": "", |
| 1657 | 1660 | }, |
| 1658 | 1661 | features = [ |
| @@ -1671,7 +1674,7 @@ buildscript_run( | ||
| 1671 | 1674 | package_name = "aws-lc-rs", |
| 1672 | 1675 | buildscript_rule = ":aws-lc-rs-1-build-script-build", |
| 1673 | 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 | 1678 | "CARGO_PKG_AUTHORS": "AWS-LibCrypto", |
| 1676 | 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 | 1680 | "CARGO_PKG_HOMEPAGE": "https://github.com/aws/aws-lc-rs", |
| @@ -1679,9 +1682,11 @@ buildscript_run( | ||
| 1679 | 1682 | "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs", |
| 1680 | 1683 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 1681 | 1684 | "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", | |
| 1684 | 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 | 1691 | features = [ |
| 1687 | 1692 | "alloc", |
| @@ -1691,27 +1696,27 @@ buildscript_run( | ||
| 1691 | 1696 | "ring-io", |
| 1692 | 1697 | "ring-sig-verify", |
| 1693 | 1698 | ], |
| 1694 | - version = "1.18.0", | |
| 1699 | + version = "1.17.3", | |
| 1695 | 1700 | ) |
| 1696 | 1701 | |
| 1697 | 1702 | 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"], | |
| 1702 | 1707 | visibility = [], |
| 1703 | 1708 | ) |
| 1704 | 1709 | |
| 1705 | 1710 | 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"], | |
| 1708 | 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 | 1715 | edition = "2021", |
| 1711 | 1716 | env = { |
| 1712 | 1717 | "CARGO_BIN_NAME": "aws_lc_sys", |
| 1713 | 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 | 1720 | "CARGO_PKG_AUTHORS": "AWS-LC", |
| 1716 | 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 | 1722 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -1719,28 +1724,28 @@ cargo.rust_library( | ||
| 1719 | 1724 | "CARGO_PKG_README": "README.md", |
| 1720 | 1725 | "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs", |
| 1721 | 1726 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 1722 | - "CARGO_PKG_VERSION": "0.44.0", | |
| 1727 | + "CARGO_PKG_VERSION": "0.43.0", | |
| 1723 | 1728 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 1724 | - "CARGO_PKG_VERSION_MINOR": "44", | |
| 1729 | + "CARGO_PKG_VERSION_MINOR": "43", | |
| 1725 | 1730 | "CARGO_PKG_VERSION_PATCH": "0", |
| 1726 | 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 | 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 | 1736 | visibility = [], |
| 1732 | 1737 | ) |
| 1733 | 1738 | |
| 1734 | 1739 | 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"], | |
| 1737 | 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 | 1744 | edition = "2021", |
| 1740 | 1745 | env = { |
| 1741 | 1746 | "CARGO_BIN_NAME": "build-script-main", |
| 1742 | 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 | 1749 | "CARGO_PKG_AUTHORS": "AWS-LC", |
| 1745 | 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 | 1751 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -1748,9 +1753,9 @@ cargo.rust_binary( | ||
| 1748 | 1753 | "CARGO_PKG_README": "README.md", |
| 1749 | 1754 | "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs", |
| 1750 | 1755 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 1751 | - "CARGO_PKG_VERSION": "0.44.0", | |
| 1756 | + "CARGO_PKG_VERSION": "0.43.0", | |
| 1752 | 1757 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 1753 | - "CARGO_PKG_VERSION_MINOR": "44", | |
| 1758 | + "CARGO_PKG_VERSION_MINOR": "43", | |
| 1754 | 1759 | "CARGO_PKG_VERSION_PATCH": "0", |
| 1755 | 1760 | "CARGO_PKG_VERSION_PRE": "", |
| 1756 | 1761 | }, |
| @@ -1766,11 +1771,11 @@ cargo.rust_binary( | ||
| 1766 | 1771 | ) |
| 1767 | 1772 | |
| 1768 | 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 | 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 | 1777 | env = { |
| 1773 | - "CARGO_MANIFEST_LINKS": "aws_lc_0_44_0", | |
| 1778 | + "CARGO_MANIFEST_LINKS": "aws_lc_0_43_0", | |
| 1774 | 1779 | "CARGO_PKG_AUTHORS": "AWS-LC", |
| 1775 | 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 | 1781 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -1778,12 +1783,13 @@ buildscript_run( | ||
| 1778 | 1783 | "CARGO_PKG_REPOSITORY": "https://github.com/aws/aws-lc-rs", |
| 1779 | 1784 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 1780 | 1785 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 1781 | - "CARGO_PKG_VERSION_MINOR": "44", | |
| 1786 | + "CARGO_PKG_VERSION_MINOR": "43", | |
| 1782 | 1787 | "CARGO_PKG_VERSION_PATCH": "0", |
| 1783 | 1788 | "CARGO_PKG_VERSION_PRE": "", |
| 1789 | + "OPT_LEVEL": "2", | |
| 1784 | 1790 | }, |
| 1785 | 1791 | features = ["prebuilt-nasm"], |
| 1786 | - version = "0.44.0", | |
| 1792 | + version = "0.43.0", | |
| 1787 | 1793 | ) |
| 1788 | 1794 | |
| 1789 | 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 | 1887 | http_archive( |
| 1916 | 1888 | name = "base32-0.5.1.crate", |
| 1917 | 1889 | sha256 = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076", |
| @@ -2123,6 +2095,7 @@ buildscript_run( | ||
| 2123 | 2095 | "CARGO_PKG_VERSION_MINOR": "70", |
| 2124 | 2096 | "CARGO_PKG_VERSION_PATCH": "1", |
| 2125 | 2097 | "CARGO_PKG_VERSION_PRE": "", |
| 2098 | + "OPT_LEVEL": "2", | |
| 2126 | 2099 | }, |
| 2127 | 2100 | features = [ |
| 2128 | 2101 | "default", |
| @@ -2242,6 +2215,7 @@ buildscript_run( | ||
| 2242 | 2215 | "CARGO_PKG_VERSION_MINOR": "72", |
| 2243 | 2216 | "CARGO_PKG_VERSION_PATCH": "1", |
| 2244 | 2217 | "CARGO_PKG_VERSION_PRE": "", |
| 2218 | + "OPT_LEVEL": "2", | |
| 2245 | 2219 | }, |
| 2246 | 2220 | features = [ |
| 2247 | 2221 | "default", |
| @@ -2323,23 +2297,23 @@ cargo.rust_library( | ||
| 2323 | 2297 | ) |
| 2324 | 2298 | |
| 2325 | 2299 | 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"], | |
| 2330 | 2304 | visibility = [], |
| 2331 | 2305 | ) |
| 2332 | 2306 | |
| 2333 | 2307 | cargo.rust_library( |
| 2334 | 2308 | name = "blake3-1", |
| 2335 | - srcs = [":blake3-1.8.7.crate"], | |
| 2309 | + srcs = [":blake3-1.8.5.crate"], | |
| 2336 | 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 | 2312 | edition = "2024", |
| 2339 | 2313 | env = { |
| 2340 | 2314 | "CARGO_BIN_NAME": "blake3", |
| 2341 | 2315 | "CARGO_CRATE_NAME": "blake3", |
| 2342 | - "CARGO_MANIFEST_DIR": "blake3-1.8.7.crate", | |
| 2316 | + "CARGO_MANIFEST_DIR": "blake3-1.8.5.crate", | |
| 2343 | 2317 | "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves", |
| 2344 | 2318 | "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function", |
| 2345 | 2319 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -2347,10 +2321,10 @@ cargo.rust_library( | ||
| 2347 | 2321 | "CARGO_PKG_README": "README.md", |
| 2348 | 2322 | "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3", |
| 2349 | 2323 | "CARGO_PKG_RUST_VERSION": "", |
| 2350 | - "CARGO_PKG_VERSION": "1.8.7", | |
| 2324 | + "CARGO_PKG_VERSION": "1.8.5", | |
| 2351 | 2325 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 2352 | 2326 | "CARGO_PKG_VERSION_MINOR": "8", |
| 2353 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 2327 | + "CARGO_PKG_VERSION_PATCH": "5", | |
| 2354 | 2328 | "CARGO_PKG_VERSION_PRE": "", |
| 2355 | 2329 | "OUT_DIR": "$(location :blake3-1-build-script-run[out_dir])", |
| 2356 | 2330 | }, |
| @@ -2369,6 +2343,7 @@ cargo.rust_library( | ||
| 2369 | 2343 | rustc_flags = ["@$(location :blake3-1-build-script-run[rustc_flags])"], |
| 2370 | 2344 | visibility = [], |
| 2371 | 2345 | deps = [ |
| 2346 | + ":arrayref-0.3", | |
| 2372 | 2347 | ":arrayvec-0.7", |
| 2373 | 2348 | ":cfg-if-1", |
| 2374 | 2349 | ":constant_time_eq-0.4", |
| @@ -2377,14 +2352,14 @@ cargo.rust_library( | ||
| 2377 | 2352 | |
| 2378 | 2353 | cargo.rust_binary( |
| 2379 | 2354 | name = "blake3-1-build-script-build", |
| 2380 | - srcs = [":blake3-1.8.7.crate"], | |
| 2355 | + srcs = [":blake3-1.8.5.crate"], | |
| 2381 | 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 | 2358 | edition = "2024", |
| 2384 | 2359 | env = { |
| 2385 | 2360 | "CARGO_BIN_NAME": "build-script-build", |
| 2386 | 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 | 2363 | "CARGO_PKG_AUTHORS": "Jack O'Connor <oconnor663@gmail.com>:Samuel Neves", |
| 2389 | 2364 | "CARGO_PKG_DESCRIPTION": "the BLAKE3 hash function", |
| 2390 | 2365 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -2392,10 +2367,10 @@ cargo.rust_binary( | ||
| 2392 | 2367 | "CARGO_PKG_README": "README.md", |
| 2393 | 2368 | "CARGO_PKG_REPOSITORY": "https://github.com/BLAKE3-team/BLAKE3", |
| 2394 | 2369 | "CARGO_PKG_RUST_VERSION": "", |
| 2395 | - "CARGO_PKG_VERSION": "1.8.7", | |
| 2370 | + "CARGO_PKG_VERSION": "1.8.5", | |
| 2396 | 2371 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 2397 | 2372 | "CARGO_PKG_VERSION_MINOR": "8", |
| 2398 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 2373 | + "CARGO_PKG_VERSION_PATCH": "5", | |
| 2399 | 2374 | "CARGO_PKG_VERSION_PRE": "", |
| 2400 | 2375 | }, |
| 2401 | 2376 | features = [ |
| @@ -2419,14 +2394,15 @@ buildscript_run( | ||
| 2419 | 2394 | "CARGO_PKG_RUST_VERSION": "", |
| 2420 | 2395 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 2421 | 2396 | "CARGO_PKG_VERSION_MINOR": "8", |
| 2422 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 2397 | + "CARGO_PKG_VERSION_PATCH": "5", | |
| 2423 | 2398 | "CARGO_PKG_VERSION_PRE": "", |
| 2399 | + "OPT_LEVEL": "2", | |
| 2424 | 2400 | }, |
| 2425 | 2401 | features = [ |
| 2426 | 2402 | "default", |
| 2427 | 2403 | "std", |
| 2428 | 2404 | ], |
| 2429 | - version = "1.8.7", | |
| 2405 | + version = "1.8.5", | |
| 2430 | 2406 | ) |
| 2431 | 2407 | |
| 2432 | 2408 | http_archive( |
| @@ -2698,33 +2674,33 @@ cargo.rust_library( | ||
| 2698 | 2674 | ) |
| 2699 | 2675 | |
| 2700 | 2676 | 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"], | |
| 2705 | 2681 | visibility = [], |
| 2706 | 2682 | ) |
| 2707 | 2683 | |
| 2708 | 2684 | cargo.rust_library( |
| 2709 | 2685 | name = "bytemuck_derive-1", |
| 2710 | - srcs = [":bytemuck_derive-1.12.0.crate"], | |
| 2686 | + srcs = [":bytemuck_derive-1.11.0.crate"], | |
| 2711 | 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 | 2689 | edition = "2018", |
| 2714 | 2690 | env = { |
| 2715 | 2691 | "CARGO_BIN_NAME": "bytemuck_derive", |
| 2716 | 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 | 2694 | "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>", |
| 2719 | 2695 | "CARGO_PKG_DESCRIPTION": "derive proc-macros for `bytemuck`", |
| 2720 | 2696 | "CARGO_PKG_HOMEPAGE": "", |
| 2721 | 2697 | "CARGO_PKG_NAME": "bytemuck_derive", |
| 2722 | 2698 | "CARGO_PKG_README": "README.md", |
| 2723 | 2699 | "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", | |
| 2726 | 2702 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 2727 | - "CARGO_PKG_VERSION_MINOR": "12", | |
| 2703 | + "CARGO_PKG_VERSION_MINOR": "11", | |
| 2728 | 2704 | "CARGO_PKG_VERSION_PATCH": "0", |
| 2729 | 2705 | "CARGO_PKG_VERSION_PRE": "", |
| 2730 | 2706 | }, |
| @@ -2733,7 +2709,7 @@ cargo.rust_library( | ||
| 2733 | 2709 | deps = [ |
| 2734 | 2710 | ":proc-macro2-1", |
| 2735 | 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 | 3001 | 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"], | |
| 3030 | 3006 | visibility = [], |
| 3031 | 3007 | ) |
| 3032 | 3008 | |
| 3033 | 3009 | cargo.rust_library( |
| 3034 | 3010 | name = "cc-1", |
| 3035 | - srcs = [":cc-1.4.4.crate"], | |
| 3011 | + srcs = [":cc-1.4.0.crate"], | |
| 3036 | 3012 | 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", | |
| 3039 | 3015 | env = { |
| 3040 | 3016 | "CARGO_BIN_NAME": "cc", |
| 3041 | 3017 | "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>", | |
| 3044 | 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 | 3021 | "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/cc-rs", |
| 3046 | 3022 | "CARGO_PKG_NAME": "cc", |
| 3047 | 3023 | "CARGO_PKG_README": "README.md", |
| 3048 | 3024 | "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", | |
| 3051 | 3027 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 3052 | 3028 | "CARGO_PKG_VERSION_MINOR": "4", |
| 3053 | - "CARGO_PKG_VERSION_PATCH": "4", | |
| 3029 | + "CARGO_PKG_VERSION_PATCH": "0", | |
| 3054 | 3030 | "CARGO_PKG_VERSION_PRE": "", |
| 3055 | 3031 | }, |
| 3056 | 3032 | features = ["parallel"], |
| @@ -3236,23 +3212,23 @@ cargo.rust_library( | ||
| 3236 | 3212 | ) |
| 3237 | 3213 | |
| 3238 | 3214 | 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"], | |
| 3243 | 3219 | visibility = [], |
| 3244 | 3220 | ) |
| 3245 | 3221 | |
| 3246 | 3222 | cargo.rust_library( |
| 3247 | 3223 | name = "chacha20-0.10", |
| 3248 | - srcs = [":chacha20-0.10.2.crate"], | |
| 3224 | + srcs = [":chacha20-0.10.1.crate"], | |
| 3249 | 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 | 3227 | edition = "2024", |
| 3252 | 3228 | env = { |
| 3253 | 3229 | "CARGO_BIN_NAME": "chacha20", |
| 3254 | 3230 | "CARGO_CRATE_NAME": "chacha20", |
| 3255 | - "CARGO_MANIFEST_DIR": "chacha20-0.10.2.crate", | |
| 3231 | + "CARGO_MANIFEST_DIR": "chacha20-0.10.1.crate", | |
| 3256 | 3232 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 3257 | 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 | 3234 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -3260,10 +3236,10 @@ cargo.rust_library( | ||
| 3260 | 3236 | "CARGO_PKG_README": "README.md", |
| 3261 | 3237 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/stream-ciphers", |
| 3262 | 3238 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 3263 | - "CARGO_PKG_VERSION": "0.10.2", | |
| 3239 | + "CARGO_PKG_VERSION": "0.10.1", | |
| 3264 | 3240 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 3265 | 3241 | "CARGO_PKG_VERSION_MINOR": "10", |
| 3266 | - "CARGO_PKG_VERSION_PATCH": "2", | |
| 3242 | + "CARGO_PKG_VERSION_PATCH": "1", | |
| 3267 | 3243 | "CARGO_PKG_VERSION_PRE": "", |
| 3268 | 3244 | }, |
| 3269 | 3245 | features = ["rng"], |
| @@ -3438,6 +3414,7 @@ buildscript_run( | ||
| 3438 | 3414 | "CARGO_PKG_VERSION_MINOR": "9", |
| 3439 | 3415 | "CARGO_PKG_VERSION_PATCH": "1", |
| 3440 | 3416 | "CARGO_PKG_VERSION_PRE": "", |
| 3417 | + "OPT_LEVEL": "2", | |
| 3441 | 3418 | }, |
| 3442 | 3419 | features = [ |
| 3443 | 3420 | "clang_10_0", |
| @@ -4326,23 +4303,23 @@ cargo.rust_library( | ||
| 4326 | 4303 | ) |
| 4327 | 4304 | |
| 4328 | 4305 | 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"], | |
| 4333 | 4310 | visibility = [], |
| 4334 | 4311 | ) |
| 4335 | 4312 | |
| 4336 | 4313 | cargo.rust_library( |
| 4337 | 4314 | name = "cpufeatures-0.3", |
| 4338 | - srcs = [":cpufeatures-0.3.1.crate"], | |
| 4315 | + srcs = [":cpufeatures-0.3.0.crate"], | |
| 4339 | 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 | 4318 | edition = "2024", |
| 4342 | 4319 | env = { |
| 4343 | 4320 | "CARGO_BIN_NAME": "cpufeatures", |
| 4344 | 4321 | "CARGO_CRATE_NAME": "cpufeatures", |
| 4345 | - "CARGO_MANIFEST_DIR": "cpufeatures-0.3.1.crate", | |
| 4322 | + "CARGO_MANIFEST_DIR": "cpufeatures-0.3.0.crate", | |
| 4346 | 4323 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 4347 | 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 | 4325 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -4350,10 +4327,10 @@ cargo.rust_library( | ||
| 4350 | 4327 | "CARGO_PKG_README": "README.md", |
| 4351 | 4328 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/utils", |
| 4352 | 4329 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 4353 | - "CARGO_PKG_VERSION": "0.3.1", | |
| 4330 | + "CARGO_PKG_VERSION": "0.3.0", | |
| 4354 | 4331 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 4355 | 4332 | "CARGO_PKG_VERSION_MINOR": "3", |
| 4356 | - "CARGO_PKG_VERSION_PATCH": "1", | |
| 4333 | + "CARGO_PKG_VERSION_PATCH": "0", | |
| 4357 | 4334 | "CARGO_PKG_VERSION_PRE": "", |
| 4358 | 4335 | }, |
| 4359 | 4336 | platform = { |
| @@ -4453,6 +4430,7 @@ buildscript_run( | ||
| 4453 | 4430 | "CARGO_PKG_VERSION_MINOR": "5", |
| 4454 | 4431 | "CARGO_PKG_VERSION_PATCH": "1", |
| 4455 | 4432 | "CARGO_PKG_VERSION_PRE": "", |
| 4433 | + "OPT_LEVEL": "2", | |
| 4456 | 4434 | }, |
| 4457 | 4435 | features = [ |
| 4458 | 4436 | "default", |
| @@ -4623,6 +4601,7 @@ buildscript_run( | ||
| 4623 | 4601 | "CARGO_PKG_VERSION_MINOR": "8", |
| 4624 | 4602 | "CARGO_PKG_VERSION_PATCH": "7", |
| 4625 | 4603 | "CARGO_PKG_VERSION_PRE": "", |
| 4604 | + "OPT_LEVEL": "2", | |
| 4626 | 4605 | }, |
| 4627 | 4606 | features = [ |
| 4628 | 4607 | "default", |
| @@ -4719,6 +4698,7 @@ buildscript_run( | ||
| 4719 | 4698 | "CARGO_PKG_VERSION_MINOR": "9", |
| 4720 | 4699 | "CARGO_PKG_VERSION_PATCH": "20", |
| 4721 | 4700 | "CARGO_PKG_VERSION_PRE": "", |
| 4701 | + "OPT_LEVEL": "2", | |
| 4722 | 4702 | }, |
| 4723 | 4703 | features = [ |
| 4724 | 4704 | "alloc", |
| @@ -4813,6 +4793,7 @@ buildscript_run( | ||
| 4813 | 4793 | "CARGO_PKG_VERSION_MINOR": "8", |
| 4814 | 4794 | "CARGO_PKG_VERSION_PATCH": "22", |
| 4815 | 4795 | "CARGO_PKG_VERSION_PRE": "", |
| 4796 | + "OPT_LEVEL": "2", | |
| 4816 | 4797 | }, |
| 4817 | 4798 | features = [ |
| 4818 | 4799 | "default", |
| @@ -4822,23 +4803,23 @@ buildscript_run( | ||
| 4822 | 4803 | ) |
| 4823 | 4804 | |
| 4824 | 4805 | 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"], | |
| 4829 | 4810 | visibility = [], |
| 4830 | 4811 | ) |
| 4831 | 4812 | |
| 4832 | 4813 | cargo.rust_library( |
| 4833 | 4814 | name = "crypto-common-0.1", |
| 4834 | - srcs = [":crypto-common-0.1.7.crate"], | |
| 4815 | + srcs = [":crypto-common-0.1.6.crate"], | |
| 4835 | 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 | 4818 | edition = "2018", |
| 4838 | 4819 | env = { |
| 4839 | 4820 | "CARGO_BIN_NAME": "crypto_common", |
| 4840 | 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 | 4823 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 4843 | 4824 | "CARGO_PKG_DESCRIPTION": "Common cryptographic traits", |
| 4844 | 4825 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -4846,10 +4827,10 @@ cargo.rust_library( | ||
| 4846 | 4827 | "CARGO_PKG_README": "README.md", |
| 4847 | 4828 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits", |
| 4848 | 4829 | "CARGO_PKG_RUST_VERSION": "", |
| 4849 | - "CARGO_PKG_VERSION": "0.1.7", | |
| 4830 | + "CARGO_PKG_VERSION": "0.1.6", | |
| 4850 | 4831 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 4851 | 4832 | "CARGO_PKG_VERSION_MINOR": "1", |
| 4852 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 4833 | + "CARGO_PKG_VERSION_PATCH": "6", | |
| 4853 | 4834 | "CARGO_PKG_VERSION_PRE": "", |
| 4854 | 4835 | }, |
| 4855 | 4836 | features = ["std"], |
| @@ -5122,6 +5103,7 @@ buildscript_run( | ||
| 5122 | 5103 | "CARGO_PKG_VERSION_MINOR": "0", |
| 5123 | 5104 | "CARGO_PKG_VERSION_PATCH": "0", |
| 5124 | 5105 | "CARGO_PKG_VERSION_PRE": "pre.1", |
| 5106 | + "OPT_LEVEL": "2", | |
| 5125 | 5107 | }, |
| 5126 | 5108 | features = [ |
| 5127 | 5109 | "alloc", |
| @@ -5475,34 +5457,34 @@ cargo.rust_library( | ||
| 5475 | 5457 | ) |
| 5476 | 5458 | |
| 5477 | 5459 | 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"], | |
| 5482 | 5464 | visibility = [], |
| 5483 | 5465 | ) |
| 5484 | 5466 | |
| 5485 | 5467 | cargo.rust_library( |
| 5486 | 5468 | name = "data-encoding-2", |
| 5487 | - srcs = [":data-encoding-2.11.1.crate"], | |
| 5469 | + srcs = [":data-encoding-2.11.0.crate"], | |
| 5488 | 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 | 5472 | edition = "2018", |
| 5491 | 5473 | env = { |
| 5492 | 5474 | "CARGO_BIN_NAME": "data_encoding", |
| 5493 | 5475 | "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>", | |
| 5496 | 5478 | "CARGO_PKG_DESCRIPTION": "Efficient and customizable data-encoding functions like base64, base32, and hex", |
| 5497 | 5479 | "CARGO_PKG_HOMEPAGE": "", |
| 5498 | 5480 | "CARGO_PKG_NAME": "data-encoding", |
| 5499 | 5481 | "CARGO_PKG_README": "README.md", |
| 5500 | 5482 | "CARGO_PKG_REPOSITORY": "https://github.com/ia0/data-encoding", |
| 5501 | 5483 | "CARGO_PKG_RUST_VERSION": "1.48", |
| 5502 | - "CARGO_PKG_VERSION": "2.11.1", | |
| 5484 | + "CARGO_PKG_VERSION": "2.11.0", | |
| 5503 | 5485 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 5504 | 5486 | "CARGO_PKG_VERSION_MINOR": "11", |
| 5505 | - "CARGO_PKG_VERSION_PATCH": "1", | |
| 5487 | + "CARGO_PKG_VERSION_PATCH": "0", | |
| 5506 | 5488 | "CARGO_PKG_VERSION_PRE": "", |
| 5507 | 5489 | }, |
| 5508 | 5490 | features = [ |
| @@ -6301,23 +6283,23 @@ cargo.rust_library( | ||
| 6301 | 6283 | ) |
| 6302 | 6284 | |
| 6303 | 6285 | 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"], | |
| 6308 | 6290 | visibility = [], |
| 6309 | 6291 | ) |
| 6310 | 6292 | |
| 6311 | 6293 | cargo.rust_library( |
| 6312 | 6294 | name = "ed25519-3", |
| 6313 | - srcs = [":ed25519-3.0.0.crate"], | |
| 6295 | + srcs = [":ed25519-3.0.0-rc.4.crate"], | |
| 6314 | 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 | 6298 | edition = "2024", |
| 6317 | 6299 | env = { |
| 6318 | 6300 | "CARGO_BIN_NAME": "ed25519", |
| 6319 | 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 | 6303 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 6322 | 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 | 6305 | "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/signatures/tree/master/ed25519", |
| @@ -6325,11 +6307,11 @@ cargo.rust_library( | ||
| 6325 | 6307 | "CARGO_PKG_README": "README.md", |
| 6326 | 6308 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/signatures", |
| 6327 | 6309 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 6328 | - "CARGO_PKG_VERSION": "3.0.0", | |
| 6310 | + "CARGO_PKG_VERSION": "3.0.0-rc.4", | |
| 6329 | 6311 | "CARGO_PKG_VERSION_MAJOR": "3", |
| 6330 | 6312 | "CARGO_PKG_VERSION_MINOR": "0", |
| 6331 | 6313 | "CARGO_PKG_VERSION_PATCH": "0", |
| 6332 | - "CARGO_PKG_VERSION_PRE": "", | |
| 6314 | + "CARGO_PKG_VERSION_PRE": "rc.4", | |
| 6333 | 6315 | }, |
| 6334 | 6316 | features = [ |
| 6335 | 6317 | "alloc", |
| @@ -6340,7 +6322,7 @@ cargo.rust_library( | ||
| 6340 | 6322 | visibility = [], |
| 6341 | 6323 | deps = [ |
| 6342 | 6324 | ":pkcs8-0.11", |
| 6343 | - ":serdect-0.4", | |
| 6325 | + ":serde-1", | |
| 6344 | 6326 | ":signature-3", |
| 6345 | 6327 | ], |
| 6346 | 6328 | ) |
| @@ -6577,33 +6559,33 @@ cargo.rust_library( | ||
| 6577 | 6559 | ) |
| 6578 | 6560 | |
| 6579 | 6561 | 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"], | |
| 6584 | 6566 | visibility = [], |
| 6585 | 6567 | ) |
| 6586 | 6568 | |
| 6587 | 6569 | cargo.rust_library( |
| 6588 | 6570 | name = "either-1", |
| 6589 | - srcs = [":either-1.18.0.crate"], | |
| 6571 | + srcs = [":either-1.17.0.crate"], | |
| 6590 | 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 | 6574 | edition = "2021", |
| 6593 | 6575 | env = { |
| 6594 | 6576 | "CARGO_BIN_NAME": "either", |
| 6595 | 6577 | "CARGO_CRATE_NAME": "either", |
| 6596 | - "CARGO_MANIFEST_DIR": "either-1.18.0.crate", | |
| 6578 | + "CARGO_MANIFEST_DIR": "either-1.17.0.crate", | |
| 6597 | 6579 | "CARGO_PKG_AUTHORS": "", |
| 6598 | 6580 | "CARGO_PKG_DESCRIPTION": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.\n", |
| 6599 | 6581 | "CARGO_PKG_HOMEPAGE": "", |
| 6600 | 6582 | "CARGO_PKG_NAME": "either", |
| 6601 | - "CARGO_PKG_README": "README.md", | |
| 6583 | + "CARGO_PKG_README": "README-crates.io.md", | |
| 6602 | 6584 | "CARGO_PKG_REPOSITORY": "https://github.com/rayon-rs/either", |
| 6603 | 6585 | "CARGO_PKG_RUST_VERSION": "1.63.0", |
| 6604 | - "CARGO_PKG_VERSION": "1.18.0", | |
| 6586 | + "CARGO_PKG_VERSION": "1.17.0", | |
| 6605 | 6587 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 6606 | - "CARGO_PKG_VERSION_MINOR": "18", | |
| 6588 | + "CARGO_PKG_VERSION_MINOR": "17", | |
| 6607 | 6589 | "CARGO_PKG_VERSION_PATCH": "0", |
| 6608 | 6590 | "CARGO_PKG_VERSION_PRE": "", |
| 6609 | 6591 | }, |
| @@ -6727,34 +6709,34 @@ cargo.rust_library( | ||
| 6727 | 6709 | ) |
| 6728 | 6710 | |
| 6729 | 6711 | 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"], | |
| 6734 | 6716 | visibility = [], |
| 6735 | 6717 | ) |
| 6736 | 6718 | |
| 6737 | 6719 | cargo.rust_library( |
| 6738 | 6720 | name = "enum-assoc-1", |
| 6739 | - srcs = [":enum-assoc-1.4.1.crate"], | |
| 6721 | + srcs = [":enum-assoc-1.3.0.crate"], | |
| 6740 | 6722 | 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", | |
| 6743 | 6725 | env = { |
| 6744 | 6726 | "CARGO_BIN_NAME": "enum_assoc", |
| 6745 | 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 | 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 | 6731 | "CARGO_PKG_HOMEPAGE": "https://github.com/Eolu/enum-assoc", |
| 6750 | 6732 | "CARGO_PKG_NAME": "enum-assoc", |
| 6751 | 6733 | "CARGO_PKG_README": "README.md", |
| 6752 | 6734 | "CARGO_PKG_REPOSITORY": "https://github.com/Eolu/enum-assoc", |
| 6753 | 6735 | "CARGO_PKG_RUST_VERSION": "", |
| 6754 | - "CARGO_PKG_VERSION": "1.4.1", | |
| 6736 | + "CARGO_PKG_VERSION": "1.3.0", | |
| 6755 | 6737 | "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", | |
| 6758 | 6740 | "CARGO_PKG_VERSION_PRE": "", |
| 6759 | 6741 | }, |
| 6760 | 6742 | proc_macro = True, |
| @@ -6762,7 +6744,7 @@ cargo.rust_library( | ||
| 6762 | 6744 | deps = [ |
| 6763 | 6745 | ":proc-macro2-1", |
| 6764 | 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 | 7302 | 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"], | |
| 7325 | 7307 | visibility = [], |
| 7326 | 7308 | ) |
| 7327 | 7309 | |
| 7328 | 7310 | cargo.rust_library( |
| 7329 | 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 | 7313 | 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", | |
| 7334 | 7316 | env = { |
| 7335 | 7317 | "CARGO_BIN_NAME": "find_msvc_tools", |
| 7336 | 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 | 7320 | "CARGO_PKG_AUTHORS": "", |
| 7339 | 7321 | "CARGO_PKG_DESCRIPTION": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces", |
| 7340 | 7322 | "CARGO_PKG_HOMEPAGE": "", |
| 7341 | 7323 | "CARGO_PKG_NAME": "find-msvc-tools", |
| 7342 | 7324 | "CARGO_PKG_README": "README.md", |
| 7343 | 7325 | "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", | |
| 7346 | 7328 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 7347 | 7329 | "CARGO_PKG_VERSION_MINOR": "1", |
| 7348 | - "CARGO_PKG_VERSION_PATCH": "11", | |
| 7330 | + "CARGO_PKG_VERSION_PATCH": "9", | |
| 7349 | 7331 | "CARGO_PKG_VERSION_PRE": "", |
| 7350 | 7332 | }, |
| 7351 | 7333 | visibility = [], |
| @@ -7780,23 +7762,23 @@ alias( | ||
| 7780 | 7762 | ) |
| 7781 | 7763 | |
| 7782 | 7764 | 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"], | |
| 7787 | 7769 | visibility = [], |
| 7788 | 7770 | ) |
| 7789 | 7771 | |
| 7790 | 7772 | cargo.rust_library( |
| 7791 | 7773 | name = "futures-0.3", |
| 7792 | - srcs = [":futures-0.3.34.crate"], | |
| 7774 | + srcs = [":futures-0.3.33.crate"], | |
| 7793 | 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 | 7777 | edition = "2018", |
| 7796 | 7778 | env = { |
| 7797 | 7779 | "CARGO_BIN_NAME": "futures", |
| 7798 | 7780 | "CARGO_CRATE_NAME": "futures", |
| 7799 | - "CARGO_MANIFEST_DIR": "futures-0.3.34.crate", | |
| 7781 | + "CARGO_MANIFEST_DIR": "futures-0.3.33.crate", | |
| 7800 | 7782 | "CARGO_PKG_AUTHORS": "", |
| 7801 | 7783 | "CARGO_PKG_DESCRIPTION": "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n", |
| 7802 | 7784 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -7804,10 +7786,10 @@ cargo.rust_library( | ||
| 7804 | 7786 | "CARGO_PKG_README": "README.md", |
| 7805 | 7787 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 7806 | 7788 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 7807 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 7789 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 7808 | 7790 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 7809 | 7791 | "CARGO_PKG_VERSION_MINOR": "3", |
| 7810 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 7792 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 7811 | 7793 | "CARGO_PKG_VERSION_PRE": "", |
| 7812 | 7794 | }, |
| 7813 | 7795 | features = [ |
| @@ -7873,23 +7855,23 @@ cargo.rust_library( | ||
| 7873 | 7855 | ) |
| 7874 | 7856 | |
| 7875 | 7857 | 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"], | |
| 7880 | 7862 | visibility = [], |
| 7881 | 7863 | ) |
| 7882 | 7864 | |
| 7883 | 7865 | cargo.rust_library( |
| 7884 | 7866 | name = "futures-channel-0.3", |
| 7885 | - srcs = [":futures-channel-0.3.34.crate"], | |
| 7867 | + srcs = [":futures-channel-0.3.33.crate"], | |
| 7886 | 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 | 7870 | edition = "2018", |
| 7889 | 7871 | env = { |
| 7890 | 7872 | "CARGO_BIN_NAME": "futures_channel", |
| 7891 | 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 | 7875 | "CARGO_PKG_AUTHORS": "", |
| 7894 | 7876 | "CARGO_PKG_DESCRIPTION": "Channels for asynchronous communication using futures-rs.\n", |
| 7895 | 7877 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -7897,10 +7879,10 @@ cargo.rust_library( | ||
| 7897 | 7879 | "CARGO_PKG_README": "README.md", |
| 7898 | 7880 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 7899 | 7881 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 7900 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 7882 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 7901 | 7883 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 7902 | 7884 | "CARGO_PKG_VERSION_MINOR": "3", |
| 7903 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 7885 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 7904 | 7886 | "CARGO_PKG_VERSION_PRE": "", |
| 7905 | 7887 | }, |
| 7906 | 7888 | features = [ |
| @@ -7964,23 +7946,23 @@ cargo.rust_library( | ||
| 7964 | 7946 | ) |
| 7965 | 7947 | |
| 7966 | 7948 | 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"], | |
| 7971 | 7953 | visibility = [], |
| 7972 | 7954 | ) |
| 7973 | 7955 | |
| 7974 | 7956 | cargo.rust_library( |
| 7975 | 7957 | name = "futures-core-0.3", |
| 7976 | - srcs = [":futures-core-0.3.34.crate"], | |
| 7958 | + srcs = [":futures-core-0.3.33.crate"], | |
| 7977 | 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 | 7961 | edition = "2018", |
| 7980 | 7962 | env = { |
| 7981 | 7963 | "CARGO_BIN_NAME": "futures_core", |
| 7982 | 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 | 7966 | "CARGO_PKG_AUTHORS": "", |
| 7985 | 7967 | "CARGO_PKG_DESCRIPTION": "The core traits and types in for the `futures` library.\n", |
| 7986 | 7968 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -7988,10 +7970,10 @@ cargo.rust_library( | ||
| 7988 | 7970 | "CARGO_PKG_README": "README.md", |
| 7989 | 7971 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 7990 | 7972 | "CARGO_PKG_RUST_VERSION": "1.36", |
| 7991 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 7973 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 7992 | 7974 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 7993 | 7975 | "CARGO_PKG_VERSION_MINOR": "3", |
| 7994 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 7976 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 7995 | 7977 | "CARGO_PKG_VERSION_PRE": "", |
| 7996 | 7978 | }, |
| 7997 | 7979 | features = [ |
| @@ -8003,23 +7985,23 @@ cargo.rust_library( | ||
| 8003 | 7985 | ) |
| 8004 | 7986 | |
| 8005 | 7987 | 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"], | |
| 8010 | 7992 | visibility = [], |
| 8011 | 7993 | ) |
| 8012 | 7994 | |
| 8013 | 7995 | cargo.rust_library( |
| 8014 | 7996 | name = "futures-executor-0.3", |
| 8015 | - srcs = [":futures-executor-0.3.34.crate"], | |
| 7997 | + srcs = [":futures-executor-0.3.33.crate"], | |
| 8016 | 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 | 8000 | edition = "2018", |
| 8019 | 8001 | env = { |
| 8020 | 8002 | "CARGO_BIN_NAME": "futures_executor", |
| 8021 | 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 | 8005 | "CARGO_PKG_AUTHORS": "", |
| 8024 | 8006 | "CARGO_PKG_DESCRIPTION": "Executors for asynchronous tasks based on the futures-rs library.\n", |
| 8025 | 8007 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -8027,10 +8009,10 @@ cargo.rust_library( | ||
| 8027 | 8009 | "CARGO_PKG_README": "README.md", |
| 8028 | 8010 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 8029 | 8011 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 8030 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 8012 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 8031 | 8013 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8032 | 8014 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8033 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 8015 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 8034 | 8016 | "CARGO_PKG_VERSION_PRE": "", |
| 8035 | 8017 | }, |
| 8036 | 8018 | features = ["std"], |
| @@ -8043,23 +8025,23 @@ cargo.rust_library( | ||
| 8043 | 8025 | ) |
| 8044 | 8026 | |
| 8045 | 8027 | 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"], | |
| 8050 | 8032 | visibility = [], |
| 8051 | 8033 | ) |
| 8052 | 8034 | |
| 8053 | 8035 | cargo.rust_library( |
| 8054 | 8036 | name = "futures-io-0.3", |
| 8055 | - srcs = [":futures-io-0.3.34.crate"], | |
| 8037 | + srcs = [":futures-io-0.3.33.crate"], | |
| 8056 | 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 | 8040 | edition = "2018", |
| 8059 | 8041 | env = { |
| 8060 | 8042 | "CARGO_BIN_NAME": "futures_io", |
| 8061 | 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 | 8045 | "CARGO_PKG_AUTHORS": "", |
| 8064 | 8046 | "CARGO_PKG_DESCRIPTION": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.\n", |
| 8065 | 8047 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -8067,10 +8049,10 @@ cargo.rust_library( | ||
| 8067 | 8049 | "CARGO_PKG_README": "README.md", |
| 8068 | 8050 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 8069 | 8051 | "CARGO_PKG_RUST_VERSION": "1.36", |
| 8070 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 8052 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 8071 | 8053 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8072 | 8054 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8073 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 8055 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 8074 | 8056 | "CARGO_PKG_VERSION_PRE": "", |
| 8075 | 8057 | }, |
| 8076 | 8058 | features = [ |
| @@ -8131,23 +8113,23 @@ cargo.rust_library( | ||
| 8131 | 8113 | ) |
| 8132 | 8114 | |
| 8133 | 8115 | 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"], | |
| 8138 | 8120 | visibility = [], |
| 8139 | 8121 | ) |
| 8140 | 8122 | |
| 8141 | 8123 | cargo.rust_library( |
| 8142 | 8124 | name = "futures-macro-0.3", |
| 8143 | - srcs = [":futures-macro-0.3.34.crate"], | |
| 8125 | + srcs = [":futures-macro-0.3.33.crate"], | |
| 8144 | 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 | 8128 | edition = "2018", |
| 8147 | 8129 | env = { |
| 8148 | 8130 | "CARGO_BIN_NAME": "futures_macro", |
| 8149 | 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 | 8133 | "CARGO_PKG_AUTHORS": "", |
| 8152 | 8134 | "CARGO_PKG_DESCRIPTION": "The futures-rs procedural macro implementations.\n", |
| 8153 | 8135 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -8155,10 +8137,10 @@ cargo.rust_library( | ||
| 8155 | 8137 | "CARGO_PKG_README": "", |
| 8156 | 8138 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 8157 | 8139 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 8158 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 8140 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 8159 | 8141 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8160 | 8142 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8161 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 8143 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 8162 | 8144 | "CARGO_PKG_VERSION_PRE": "", |
| 8163 | 8145 | }, |
| 8164 | 8146 | proc_macro = True, |
| @@ -8166,28 +8148,28 @@ cargo.rust_library( | ||
| 8166 | 8148 | deps = [ |
| 8167 | 8149 | ":proc-macro2-1", |
| 8168 | 8150 | ":quote-1", |
| 8169 | - ":syn-3", | |
| 8151 | + ":syn-2", | |
| 8170 | 8152 | ], |
| 8171 | 8153 | ) |
| 8172 | 8154 | |
| 8173 | 8155 | 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"], | |
| 8178 | 8160 | visibility = [], |
| 8179 | 8161 | ) |
| 8180 | 8162 | |
| 8181 | 8163 | cargo.rust_library( |
| 8182 | 8164 | name = "futures-sink-0.3", |
| 8183 | - srcs = [":futures-sink-0.3.34.crate"], | |
| 8165 | + srcs = [":futures-sink-0.3.33.crate"], | |
| 8184 | 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 | 8168 | edition = "2018", |
| 8187 | 8169 | env = { |
| 8188 | 8170 | "CARGO_BIN_NAME": "futures_sink", |
| 8189 | 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 | 8173 | "CARGO_PKG_AUTHORS": "", |
| 8192 | 8174 | "CARGO_PKG_DESCRIPTION": "The asynchronous `Sink` trait for the futures-rs library.\n", |
| 8193 | 8175 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -8195,10 +8177,10 @@ cargo.rust_library( | ||
| 8195 | 8177 | "CARGO_PKG_README": "README.md", |
| 8196 | 8178 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 8197 | 8179 | "CARGO_PKG_RUST_VERSION": "1.36", |
| 8198 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 8180 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 8199 | 8181 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8200 | 8182 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8201 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 8183 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 8202 | 8184 | "CARGO_PKG_VERSION_PRE": "", |
| 8203 | 8185 | }, |
| 8204 | 8186 | features = [ |
| @@ -8210,23 +8192,23 @@ cargo.rust_library( | ||
| 8210 | 8192 | ) |
| 8211 | 8193 | |
| 8212 | 8194 | 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"], | |
| 8217 | 8199 | visibility = [], |
| 8218 | 8200 | ) |
| 8219 | 8201 | |
| 8220 | 8202 | cargo.rust_library( |
| 8221 | 8203 | name = "futures-task-0.3", |
| 8222 | - srcs = [":futures-task-0.3.34.crate"], | |
| 8204 | + srcs = [":futures-task-0.3.33.crate"], | |
| 8223 | 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 | 8207 | edition = "2018", |
| 8226 | 8208 | env = { |
| 8227 | 8209 | "CARGO_BIN_NAME": "futures_task", |
| 8228 | 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 | 8212 | "CARGO_PKG_AUTHORS": "", |
| 8231 | 8213 | "CARGO_PKG_DESCRIPTION": "Tools for working with tasks.\n", |
| 8232 | 8214 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -8234,10 +8216,10 @@ cargo.rust_library( | ||
| 8234 | 8216 | "CARGO_PKG_README": "README.md", |
| 8235 | 8217 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 8236 | 8218 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 8237 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 8219 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 8238 | 8220 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8239 | 8221 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8240 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 8222 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 8241 | 8223 | "CARGO_PKG_VERSION_PRE": "", |
| 8242 | 8224 | }, |
| 8243 | 8225 | features = [ |
| @@ -8248,23 +8230,23 @@ cargo.rust_library( | ||
| 8248 | 8230 | ) |
| 8249 | 8231 | |
| 8250 | 8232 | 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"], | |
| 8255 | 8237 | visibility = [], |
| 8256 | 8238 | ) |
| 8257 | 8239 | |
| 8258 | 8240 | cargo.rust_library( |
| 8259 | 8241 | name = "futures-util-0.3", |
| 8260 | - srcs = [":futures-util-0.3.34.crate"], | |
| 8242 | + srcs = [":futures-util-0.3.33.crate"], | |
| 8261 | 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 | 8245 | edition = "2018", |
| 8264 | 8246 | env = { |
| 8265 | 8247 | "CARGO_BIN_NAME": "futures_util", |
| 8266 | 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 | 8250 | "CARGO_PKG_AUTHORS": "", |
| 8269 | 8251 | "CARGO_PKG_DESCRIPTION": "Common utilities and extension traits for the futures-rs library.\n", |
| 8270 | 8252 | "CARGO_PKG_HOMEPAGE": "https://rust-lang.github.io/futures-rs", |
| @@ -8272,10 +8254,10 @@ cargo.rust_library( | ||
| 8272 | 8254 | "CARGO_PKG_README": "README.md", |
| 8273 | 8255 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/futures-rs", |
| 8274 | 8256 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 8275 | - "CARGO_PKG_VERSION": "0.3.34", | |
| 8257 | + "CARGO_PKG_VERSION": "0.3.33", | |
| 8276 | 8258 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8277 | 8259 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8278 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 8260 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 8279 | 8261 | "CARGO_PKG_VERSION_PRE": "", |
| 8280 | 8262 | }, |
| 8281 | 8263 | features = [ |
| @@ -8309,23 +8291,23 @@ cargo.rust_library( | ||
| 8309 | 8291 | ) |
| 8310 | 8292 | |
| 8311 | 8293 | 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"], | |
| 8316 | 8298 | visibility = [], |
| 8317 | 8299 | ) |
| 8318 | 8300 | |
| 8319 | 8301 | cargo.rust_library( |
| 8320 | 8302 | name = "generic-array-0.14", |
| 8321 | - srcs = [":generic-array-0.14.7.crate"], | |
| 8303 | + srcs = [":generic-array-0.14.9.crate"], | |
| 8322 | 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 | 8306 | edition = "2015", |
| 8325 | 8307 | env = { |
| 8326 | 8308 | "CARGO_BIN_NAME": "generic_array", |
| 8327 | 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 | 8311 | "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>", |
| 8330 | 8312 | "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays", |
| 8331 | 8313 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -8333,10 +8315,10 @@ cargo.rust_library( | ||
| 8333 | 8315 | "CARGO_PKG_README": "README.md", |
| 8334 | 8316 | "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git", |
| 8335 | 8317 | "CARGO_PKG_RUST_VERSION": "", |
| 8336 | - "CARGO_PKG_VERSION": "0.14.7", | |
| 8318 | + "CARGO_PKG_VERSION": "0.14.9", | |
| 8337 | 8319 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8338 | 8320 | "CARGO_PKG_VERSION_MINOR": "14", |
| 8339 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 8321 | + "CARGO_PKG_VERSION_PATCH": "9", | |
| 8340 | 8322 | "CARGO_PKG_VERSION_PRE": "", |
| 8341 | 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 | 8331 | cargo.rust_binary( |
| 8350 | 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 | 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 | 8336 | edition = "2015", |
| 8355 | 8337 | env = { |
| 8356 | 8338 | "CARGO_BIN_NAME": "build-script-build", |
| 8357 | 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 | 8341 | "CARGO_PKG_AUTHORS": "Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>", |
| 8360 | 8342 | "CARGO_PKG_DESCRIPTION": "Generic types implementing functionality of arrays", |
| 8361 | 8343 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -8363,10 +8345,10 @@ cargo.rust_binary( | ||
| 8363 | 8345 | "CARGO_PKG_README": "README.md", |
| 8364 | 8346 | "CARGO_PKG_REPOSITORY": "https://github.com/fizyk20/generic-array.git", |
| 8365 | 8347 | "CARGO_PKG_RUST_VERSION": "", |
| 8366 | - "CARGO_PKG_VERSION": "0.14.7", | |
| 8348 | + "CARGO_PKG_VERSION": "0.14.9", | |
| 8367 | 8349 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8368 | 8350 | "CARGO_PKG_VERSION_MINOR": "14", |
| 8369 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 8351 | + "CARGO_PKG_VERSION_PATCH": "9", | |
| 8370 | 8352 | "CARGO_PKG_VERSION_PRE": "", |
| 8371 | 8353 | }, |
| 8372 | 8354 | features = ["more_lengths"], |
| @@ -8387,11 +8369,12 @@ buildscript_run( | ||
| 8387 | 8369 | "CARGO_PKG_RUST_VERSION": "", |
| 8388 | 8370 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 8389 | 8371 | "CARGO_PKG_VERSION_MINOR": "14", |
| 8390 | - "CARGO_PKG_VERSION_PATCH": "7", | |
| 8372 | + "CARGO_PKG_VERSION_PATCH": "9", | |
| 8391 | 8373 | "CARGO_PKG_VERSION_PRE": "", |
| 8374 | + "OPT_LEVEL": "2", | |
| 8392 | 8375 | }, |
| 8393 | 8376 | features = ["more_lengths"], |
| 8394 | - version = "0.14.7", | |
| 8377 | + version = "0.14.9", | |
| 8395 | 8378 | ) |
| 8396 | 8379 | |
| 8397 | 8380 | http_archive( |
| @@ -8551,6 +8534,7 @@ buildscript_run( | ||
| 8551 | 8534 | "CARGO_PKG_VERSION_MINOR": "3", |
| 8552 | 8535 | "CARGO_PKG_VERSION_PATCH": "4", |
| 8553 | 8536 | "CARGO_PKG_VERSION_PRE": "", |
| 8537 | + "OPT_LEVEL": "2", | |
| 8554 | 8538 | }, |
| 8555 | 8539 | features = ["std"], |
| 8556 | 8540 | version = "0.3.4", |
| @@ -8646,6 +8630,7 @@ buildscript_run( | ||
| 8646 | 8630 | "CARGO_PKG_VERSION_MINOR": "4", |
| 8647 | 8631 | "CARGO_PKG_VERSION_PATCH": "3", |
| 8648 | 8632 | "CARGO_PKG_VERSION_PRE": "", |
| 8633 | + "OPT_LEVEL": "2", | |
| 8649 | 8634 | }, |
| 8650 | 8635 | features = [ |
| 8651 | 8636 | "std", |
| @@ -9001,6 +8986,7 @@ buildscript_run( | ||
| 9001 | 8986 | "CARGO_PKG_VERSION_MINOR": "32", |
| 9002 | 8987 | "CARGO_PKG_VERSION_PATCH": "3", |
| 9003 | 8988 | "CARGO_PKG_VERSION_PRE": "", |
| 8989 | + "OPT_LEVEL": "2", | |
| 9004 | 8990 | }, |
| 9005 | 8991 | features = [ |
| 9006 | 8992 | "default", |
| @@ -9125,6 +9111,7 @@ buildscript_run( | ||
| 9125 | 9111 | "CARGO_PKG_VERSION_MINOR": "5", |
| 9126 | 9112 | "CARGO_PKG_VERSION_PATCH": "0", |
| 9127 | 9113 | "CARGO_PKG_VERSION_PRE": "", |
| 9114 | + "OPT_LEVEL": "2", | |
| 9128 | 9115 | }, |
| 9129 | 9116 | features = [ |
| 9130 | 9117 | "default", |
| @@ -9215,6 +9202,7 @@ buildscript_run( | ||
| 9215 | 9202 | "CARGO_PKG_VERSION_MINOR": "7", |
| 9216 | 9203 | "CARGO_PKG_VERSION_PATCH": "1", |
| 9217 | 9204 | "CARGO_PKG_VERSION_PRE": "", |
| 9205 | + "OPT_LEVEL": "2", | |
| 9218 | 9206 | }, |
| 9219 | 9207 | version = "0.7.1", |
| 9220 | 9208 | ) |
| @@ -9298,28 +9286,29 @@ buildscript_run( | ||
| 9298 | 9286 | "CARGO_PKG_VERSION_MINOR": "6", |
| 9299 | 9287 | "CARGO_PKG_VERSION_PATCH": "1", |
| 9300 | 9288 | "CARGO_PKG_VERSION_PRE": "", |
| 9289 | + "OPT_LEVEL": "2", | |
| 9301 | 9290 | }, |
| 9302 | 9291 | version = "0.6.1", |
| 9303 | 9292 | ) |
| 9304 | 9293 | |
| 9305 | 9294 | 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"], | |
| 9310 | 9299 | visibility = [], |
| 9311 | 9300 | ) |
| 9312 | 9301 | |
| 9313 | 9302 | cargo.rust_library( |
| 9314 | 9303 | name = "h2-0.4", |
| 9315 | - srcs = [":h2-0.4.19.crate"], | |
| 9304 | + srcs = [":h2-0.4.15.crate"], | |
| 9316 | 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 | 9307 | edition = "2021", |
| 9319 | 9308 | env = { |
| 9320 | 9309 | "CARGO_BIN_NAME": "h2", |
| 9321 | 9310 | "CARGO_CRATE_NAME": "h2", |
| 9322 | - "CARGO_MANIFEST_DIR": "h2-0.4.19.crate", | |
| 9311 | + "CARGO_MANIFEST_DIR": "h2-0.4.15.crate", | |
| 9323 | 9312 | "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>", |
| 9324 | 9313 | "CARGO_PKG_DESCRIPTION": "An HTTP/2 client and server", |
| 9325 | 9314 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -9327,10 +9316,10 @@ cargo.rust_library( | ||
| 9327 | 9316 | "CARGO_PKG_README": "README.md", |
| 9328 | 9317 | "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/h2", |
| 9329 | 9318 | "CARGO_PKG_RUST_VERSION": "1.63", |
| 9330 | - "CARGO_PKG_VERSION": "0.4.19", | |
| 9319 | + "CARGO_PKG_VERSION": "0.4.15", | |
| 9331 | 9320 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 9332 | 9321 | "CARGO_PKG_VERSION_MINOR": "4", |
| 9333 | - "CARGO_PKG_VERSION_PATCH": "19", | |
| 9322 | + "CARGO_PKG_VERSION_PATCH": "15", | |
| 9334 | 9323 | "CARGO_PKG_VERSION_PRE": "", |
| 9335 | 9324 | }, |
| 9336 | 9325 | features = ["stream"], |
| @@ -9653,6 +9642,7 @@ buildscript_run( | ||
| 9653 | 9642 | "CARGO_PKG_VERSION_MINOR": "7", |
| 9654 | 9643 | "CARGO_PKG_VERSION_PATCH": "17", |
| 9655 | 9644 | "CARGO_PKG_VERSION_PRE": "", |
| 9645 | + "OPT_LEVEL": "2", | |
| 9656 | 9646 | }, |
| 9657 | 9647 | features = [ |
| 9658 | 9648 | "atomic-polyfill", |
| @@ -9940,23 +9930,23 @@ cargo.rust_library( | ||
| 9940 | 9930 | ) |
| 9941 | 9931 | |
| 9942 | 9932 | 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"], | |
| 9947 | 9937 | visibility = [], |
| 9948 | 9938 | ) |
| 9949 | 9939 | |
| 9950 | 9940 | cargo.rust_library( |
| 9951 | 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 | 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 | 9945 | edition = "2018", |
| 9956 | 9946 | env = { |
| 9957 | 9947 | "CARGO_BIN_NAME": "http_body_util", |
| 9958 | 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 | 9950 | "CARGO_PKG_AUTHORS": "Carl Lerche <me@carllerche.com>:Lucio Franco <luciofranco14@gmail.com>:Sean McArthur <sean@seanmonstar.com>", |
| 9961 | 9951 | "CARGO_PKG_DESCRIPTION": "Combinators and adapters for HTTP request or response bodies.\n", |
| 9962 | 9952 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -9964,10 +9954,10 @@ cargo.rust_library( | ||
| 9964 | 9954 | "CARGO_PKG_README": "README.md", |
| 9965 | 9955 | "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/http-body", |
| 9966 | 9956 | "CARGO_PKG_RUST_VERSION": "1.61", |
| 9967 | - "CARGO_PKG_VERSION": "0.1.5", | |
| 9957 | + "CARGO_PKG_VERSION": "0.1.4", | |
| 9968 | 9958 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 9969 | 9959 | "CARGO_PKG_VERSION_MINOR": "1", |
| 9970 | - "CARGO_PKG_VERSION_PATCH": "5", | |
| 9960 | + "CARGO_PKG_VERSION_PATCH": "4", | |
| 9971 | 9961 | "CARGO_PKG_VERSION_PRE": "", |
| 9972 | 9962 | }, |
| 9973 | 9963 | features = ["default"], |
| @@ -10066,6 +10056,7 @@ buildscript_run( | ||
| 10066 | 10056 | "CARGO_PKG_VERSION_MINOR": "10", |
| 10067 | 10057 | "CARGO_PKG_VERSION_PATCH": "1", |
| 10068 | 10058 | "CARGO_PKG_VERSION_PRE": "", |
| 10059 | + "OPT_LEVEL": "2", | |
| 10069 | 10060 | }, |
| 10070 | 10061 | features = [ |
| 10071 | 10062 | "default", |
| @@ -10181,23 +10172,23 @@ cargo.rust_library( | ||
| 10181 | 10172 | ) |
| 10182 | 10173 | |
| 10183 | 10174 | 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"], | |
| 10188 | 10179 | visibility = [], |
| 10189 | 10180 | ) |
| 10190 | 10181 | |
| 10191 | 10182 | cargo.rust_library( |
| 10192 | 10183 | name = "hybrid-array-0.4", |
| 10193 | - srcs = [":hybrid-array-0.4.14.crate"], | |
| 10184 | + srcs = [":hybrid-array-0.4.13.crate"], | |
| 10194 | 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 | 10187 | edition = "2024", |
| 10197 | 10188 | env = { |
| 10198 | 10189 | "CARGO_BIN_NAME": "hybrid_array", |
| 10199 | 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 | 10192 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 10202 | 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 | 10194 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -10205,10 +10196,10 @@ cargo.rust_library( | ||
| 10205 | 10196 | "CARGO_PKG_README": "README.md", |
| 10206 | 10197 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/hybrid-array", |
| 10207 | 10198 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 10208 | - "CARGO_PKG_VERSION": "0.4.14", | |
| 10199 | + "CARGO_PKG_VERSION": "0.4.13", | |
| 10209 | 10200 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 10210 | 10201 | "CARGO_PKG_VERSION_MINOR": "4", |
| 10211 | - "CARGO_PKG_VERSION_PATCH": "14", | |
| 10202 | + "CARGO_PKG_VERSION_PATCH": "13", | |
| 10212 | 10203 | "CARGO_PKG_VERSION_PRE": "", |
| 10213 | 10204 | }, |
| 10214 | 10205 | visibility = [], |
| @@ -10216,23 +10207,23 @@ cargo.rust_library( | ||
| 10216 | 10207 | ) |
| 10217 | 10208 | |
| 10218 | 10209 | 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"], | |
| 10223 | 10214 | visibility = [], |
| 10224 | 10215 | ) |
| 10225 | 10216 | |
| 10226 | 10217 | cargo.rust_library( |
| 10227 | 10218 | name = "hyper-1", |
| 10228 | - srcs = [":hyper-1.11.1.crate"], | |
| 10219 | + srcs = [":hyper-1.11.0.crate"], | |
| 10229 | 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 | 10222 | edition = "2021", |
| 10232 | 10223 | env = { |
| 10233 | 10224 | "CARGO_BIN_NAME": "hyper", |
| 10234 | 10225 | "CARGO_CRATE_NAME": "hyper", |
| 10235 | - "CARGO_MANIFEST_DIR": "hyper-1.11.1.crate", | |
| 10226 | + "CARGO_MANIFEST_DIR": "hyper-1.11.0.crate", | |
| 10236 | 10227 | "CARGO_PKG_AUTHORS": "Sean McArthur <sean@seanmonstar.com>", |
| 10237 | 10228 | "CARGO_PKG_DESCRIPTION": "A protective and efficient HTTP library for all.", |
| 10238 | 10229 | "CARGO_PKG_HOMEPAGE": "https://hyper.rs", |
| @@ -10240,10 +10231,10 @@ cargo.rust_library( | ||
| 10240 | 10231 | "CARGO_PKG_README": "README.md", |
| 10241 | 10232 | "CARGO_PKG_REPOSITORY": "https://github.com/hyperium/hyper", |
| 10242 | 10233 | "CARGO_PKG_RUST_VERSION": "1.63", |
| 10243 | - "CARGO_PKG_VERSION": "1.11.1", | |
| 10234 | + "CARGO_PKG_VERSION": "1.11.0", | |
| 10244 | 10235 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 10245 | 10236 | "CARGO_PKG_VERSION_MINOR": "11", |
| 10246 | - "CARGO_PKG_VERSION_PATCH": "1", | |
| 10237 | + "CARGO_PKG_VERSION_PATCH": "0", | |
| 10247 | 10238 | "CARGO_PKG_VERSION_PRE": "", |
| 10248 | 10239 | }, |
| 10249 | 10240 | features = [ |
| @@ -10380,33 +10371,33 @@ cargo.rust_library( | ||
| 10380 | 10371 | ) |
| 10381 | 10372 | |
| 10382 | 10373 | 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"], | |
| 10387 | 10378 | visibility = [], |
| 10388 | 10379 | ) |
| 10389 | 10380 | |
| 10390 | 10381 | cargo.rust_library( |
| 10391 | 10382 | name = "icu_collections-2", |
| 10392 | - srcs = [":icu_collections-2.3.0.crate"], | |
| 10383 | + srcs = [":icu_collections-2.2.0.crate"], | |
| 10393 | 10384 | 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", | |
| 10396 | 10387 | env = { |
| 10397 | 10388 | "CARGO_BIN_NAME": "icu_collections", |
| 10398 | 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 | 10391 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10401 | 10392 | "CARGO_PKG_DESCRIPTION": "Collection of API for use in ICU libraries.", |
| 10402 | 10393 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10403 | 10394 | "CARGO_PKG_NAME": "icu_collections", |
| 10404 | 10395 | "CARGO_PKG_README": "README.md", |
| 10405 | 10396 | "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", | |
| 10408 | 10399 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10409 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10400 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10410 | 10401 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10411 | 10402 | "CARGO_PKG_VERSION_PRE": "", |
| 10412 | 10403 | }, |
| @@ -10422,33 +10413,33 @@ cargo.rust_library( | ||
| 10422 | 10413 | ) |
| 10423 | 10414 | |
| 10424 | 10415 | 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"], | |
| 10429 | 10420 | visibility = [], |
| 10430 | 10421 | ) |
| 10431 | 10422 | |
| 10432 | 10423 | cargo.rust_library( |
| 10433 | 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 | 10426 | 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", | |
| 10438 | 10429 | env = { |
| 10439 | 10430 | "CARGO_BIN_NAME": "icu_locale_core", |
| 10440 | 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 | 10433 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10443 | 10434 | "CARGO_PKG_DESCRIPTION": "API for managing Unicode Language and Locale Identifiers", |
| 10444 | 10435 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10445 | 10436 | "CARGO_PKG_NAME": "icu_locale_core", |
| 10446 | 10437 | "CARGO_PKG_README": "README.md", |
| 10447 | 10438 | "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", | |
| 10450 | 10441 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10451 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10442 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10452 | 10443 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10453 | 10444 | "CARGO_PKG_VERSION_PRE": "", |
| 10454 | 10445 | }, |
| @@ -10464,33 +10455,33 @@ cargo.rust_library( | ||
| 10464 | 10455 | ) |
| 10465 | 10456 | |
| 10466 | 10457 | 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"], | |
| 10471 | 10462 | visibility = [], |
| 10472 | 10463 | ) |
| 10473 | 10464 | |
| 10474 | 10465 | cargo.rust_library( |
| 10475 | 10466 | name = "icu_normalizer-2", |
| 10476 | - srcs = [":icu_normalizer-2.3.0.crate"], | |
| 10467 | + srcs = [":icu_normalizer-2.2.0.crate"], | |
| 10477 | 10468 | 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", | |
| 10480 | 10471 | env = { |
| 10481 | 10472 | "CARGO_BIN_NAME": "icu_normalizer", |
| 10482 | 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 | 10475 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10485 | 10476 | "CARGO_PKG_DESCRIPTION": "API for normalizing text into Unicode Normalization Forms", |
| 10486 | 10477 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10487 | 10478 | "CARGO_PKG_NAME": "icu_normalizer", |
| 10488 | 10479 | "CARGO_PKG_README": "README.md", |
| 10489 | 10480 | "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", | |
| 10492 | 10483 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10493 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10484 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10494 | 10485 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10495 | 10486 | "CARGO_PKG_VERSION_PRE": "", |
| 10496 | 10487 | }, |
| @@ -10506,33 +10497,33 @@ cargo.rust_library( | ||
| 10506 | 10497 | ) |
| 10507 | 10498 | |
| 10508 | 10499 | 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"], | |
| 10513 | 10504 | visibility = [], |
| 10514 | 10505 | ) |
| 10515 | 10506 | |
| 10516 | 10507 | cargo.rust_library( |
| 10517 | 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 | 10510 | 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", | |
| 10522 | 10513 | env = { |
| 10523 | 10514 | "CARGO_BIN_NAME": "icu_normalizer_data", |
| 10524 | 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 | 10517 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10527 | 10518 | "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate", |
| 10528 | 10519 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10529 | 10520 | "CARGO_PKG_NAME": "icu_normalizer_data", |
| 10530 | 10521 | "CARGO_PKG_README": "README.md", |
| 10531 | 10522 | "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", | |
| 10534 | 10525 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10535 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10526 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10536 | 10527 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10537 | 10528 | "CARGO_PKG_VERSION_PRE": "", |
| 10538 | 10529 | "OUT_DIR": "$(location :icu_normalizer_data-2-build-script-run[out_dir])", |
| @@ -10543,24 +10534,24 @@ cargo.rust_library( | ||
| 10543 | 10534 | |
| 10544 | 10535 | cargo.rust_binary( |
| 10545 | 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 | 10538 | 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", | |
| 10550 | 10541 | env = { |
| 10551 | 10542 | "CARGO_BIN_NAME": "build-script-build", |
| 10552 | 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 | 10545 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10555 | 10546 | "CARGO_PKG_DESCRIPTION": "Data for the icu_normalizer crate", |
| 10556 | 10547 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10557 | 10548 | "CARGO_PKG_NAME": "icu_normalizer_data", |
| 10558 | 10549 | "CARGO_PKG_README": "README.md", |
| 10559 | 10550 | "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", | |
| 10562 | 10553 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10563 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10554 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10564 | 10555 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10565 | 10556 | "CARGO_PKG_VERSION_PRE": "", |
| 10566 | 10557 | }, |
| @@ -10577,50 +10568,50 @@ buildscript_run( | ||
| 10577 | 10568 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10578 | 10569 | "CARGO_PKG_README": "README.md", |
| 10579 | 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 | 10572 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10582 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10573 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10583 | 10574 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10584 | 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 | 10581 | 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"], | |
| 10594 | 10586 | visibility = [], |
| 10595 | 10587 | ) |
| 10596 | 10588 | |
| 10597 | 10589 | cargo.rust_library( |
| 10598 | 10590 | name = "icu_properties-2", |
| 10599 | - srcs = [":icu_properties-2.3.0.crate"], | |
| 10591 | + srcs = [":icu_properties-2.2.0.crate"], | |
| 10600 | 10592 | 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", | |
| 10603 | 10595 | env = { |
| 10604 | 10596 | "CARGO_BIN_NAME": "icu_properties", |
| 10605 | 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 | 10599 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10608 | 10600 | "CARGO_PKG_DESCRIPTION": "Definitions for Unicode properties", |
| 10609 | 10601 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10610 | 10602 | "CARGO_PKG_NAME": "icu_properties", |
| 10611 | 10603 | "CARGO_PKG_README": "README.md", |
| 10612 | 10604 | "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", | |
| 10615 | 10607 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10616 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10608 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10617 | 10609 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10618 | 10610 | "CARGO_PKG_VERSION_PRE": "", |
| 10619 | 10611 | }, |
| 10620 | 10612 | features = ["compiled_data"], |
| 10621 | 10613 | visibility = [], |
| 10622 | 10614 | deps = [ |
| 10623 | - ":displaydoc-0.2", | |
| 10624 | 10615 | ":icu_collections-2", |
| 10625 | 10616 | ":icu_locale_core-2", |
| 10626 | 10617 | ":icu_properties_data-2", |
| @@ -10631,33 +10622,33 @@ cargo.rust_library( | ||
| 10631 | 10622 | ) |
| 10632 | 10623 | |
| 10633 | 10624 | 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"], | |
| 10638 | 10629 | visibility = [], |
| 10639 | 10630 | ) |
| 10640 | 10631 | |
| 10641 | 10632 | cargo.rust_library( |
| 10642 | 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 | 10635 | 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", | |
| 10647 | 10638 | env = { |
| 10648 | 10639 | "CARGO_BIN_NAME": "icu_properties_data", |
| 10649 | 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 | 10642 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10652 | 10643 | "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate", |
| 10653 | 10644 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10654 | 10645 | "CARGO_PKG_NAME": "icu_properties_data", |
| 10655 | 10646 | "CARGO_PKG_README": "README.md", |
| 10656 | 10647 | "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", | |
| 10659 | 10650 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10660 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10651 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10661 | 10652 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10662 | 10653 | "CARGO_PKG_VERSION_PRE": "", |
| 10663 | 10654 | "OUT_DIR": "$(location :icu_properties_data-2-build-script-run[out_dir])", |
| @@ -10668,24 +10659,24 @@ cargo.rust_library( | ||
| 10668 | 10659 | |
| 10669 | 10660 | cargo.rust_binary( |
| 10670 | 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 | 10663 | 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", | |
| 10675 | 10666 | env = { |
| 10676 | 10667 | "CARGO_BIN_NAME": "build-script-build", |
| 10677 | 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 | 10670 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10680 | 10671 | "CARGO_PKG_DESCRIPTION": "Data for the icu_properties crate", |
| 10681 | 10672 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10682 | 10673 | "CARGO_PKG_NAME": "icu_properties_data", |
| 10683 | 10674 | "CARGO_PKG_README": "README.md", |
| 10684 | 10675 | "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", | |
| 10687 | 10678 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10688 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10679 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10689 | 10680 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10690 | 10681 | "CARGO_PKG_VERSION_PRE": "", |
| 10691 | 10682 | }, |
| @@ -10702,44 +10693,45 @@ buildscript_run( | ||
| 10702 | 10693 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10703 | 10694 | "CARGO_PKG_README": "README.md", |
| 10704 | 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 | 10697 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 10707 | - "CARGO_PKG_VERSION_MINOR": "3", | |
| 10698 | + "CARGO_PKG_VERSION_MINOR": "2", | |
| 10708 | 10699 | "CARGO_PKG_VERSION_PATCH": "0", |
| 10709 | 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 | 10706 | 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"], | |
| 10719 | 10711 | visibility = [], |
| 10720 | 10712 | ) |
| 10721 | 10713 | |
| 10722 | 10714 | cargo.rust_library( |
| 10723 | 10715 | name = "icu_provider-2", |
| 10724 | - srcs = [":icu_provider-2.3.1.crate"], | |
| 10716 | + srcs = [":icu_provider-2.2.0.crate"], | |
| 10725 | 10717 | 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", | |
| 10728 | 10720 | env = { |
| 10729 | 10721 | "CARGO_BIN_NAME": "icu_provider", |
| 10730 | 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 | 10724 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 10733 | 10725 | "CARGO_PKG_DESCRIPTION": "Trait and struct definitions for the ICU data provider", |
| 10734 | 10726 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| 10735 | 10727 | "CARGO_PKG_NAME": "icu_provider", |
| 10736 | 10728 | "CARGO_PKG_README": "README.md", |
| 10737 | 10729 | "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", | |
| 10740 | 10732 | "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", | |
| 10743 | 10735 | "CARGO_PKG_VERSION_PRE": "", |
| 10744 | 10736 | }, |
| 10745 | 10737 | features = ["baked"], |
| @@ -11039,23 +11031,23 @@ cargo.rust_library( | ||
| 11039 | 11031 | ) |
| 11040 | 11032 | |
| 11041 | 11033 | 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"], | |
| 11046 | 11038 | visibility = [], |
| 11047 | 11039 | ) |
| 11048 | 11040 | |
| 11049 | 11041 | cargo.rust_library( |
| 11050 | 11042 | name = "indexmap-2", |
| 11051 | - srcs = [":indexmap-2.14.1.crate"], | |
| 11043 | + srcs = [":indexmap-2.14.0.crate"], | |
| 11052 | 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 | 11046 | edition = "2024", |
| 11055 | 11047 | env = { |
| 11056 | 11048 | "CARGO_BIN_NAME": "indexmap", |
| 11057 | 11049 | "CARGO_CRATE_NAME": "indexmap", |
| 11058 | - "CARGO_MANIFEST_DIR": "indexmap-2.14.1.crate", | |
| 11050 | + "CARGO_MANIFEST_DIR": "indexmap-2.14.0.crate", | |
| 11059 | 11051 | "CARGO_PKG_AUTHORS": "", |
| 11060 | 11052 | "CARGO_PKG_DESCRIPTION": "A hash table with consistent order and fast iteration.", |
| 11061 | 11053 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -11063,10 +11055,10 @@ cargo.rust_library( | ||
| 11063 | 11055 | "CARGO_PKG_README": "README.md", |
| 11064 | 11056 | "CARGO_PKG_REPOSITORY": "https://github.com/indexmap-rs/indexmap", |
| 11065 | 11057 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 11066 | - "CARGO_PKG_VERSION": "2.14.1", | |
| 11058 | + "CARGO_PKG_VERSION": "2.14.0", | |
| 11067 | 11059 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 11068 | 11060 | "CARGO_PKG_VERSION_MINOR": "14", |
| 11069 | - "CARGO_PKG_VERSION_PATCH": "1", | |
| 11061 | + "CARGO_PKG_VERSION_PATCH": "0", | |
| 11070 | 11062 | "CARGO_PKG_VERSION_PRE": "", |
| 11071 | 11063 | }, |
| 11072 | 11064 | features = [ |
| @@ -11116,23 +11108,23 @@ cargo.rust_library( | ||
| 11116 | 11108 | ) |
| 11117 | 11109 | |
| 11118 | 11110 | 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"], | |
| 11123 | 11115 | visibility = [], |
| 11124 | 11116 | ) |
| 11125 | 11117 | |
| 11126 | 11118 | cargo.rust_library( |
| 11127 | 11119 | name = "ipnet-2", |
| 11128 | - srcs = [":ipnet-2.12.1.crate"], | |
| 11120 | + srcs = [":ipnet-2.12.0.crate"], | |
| 11129 | 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 | 11123 | edition = "2018", |
| 11132 | 11124 | env = { |
| 11133 | 11125 | "CARGO_BIN_NAME": "ipnet", |
| 11134 | 11126 | "CARGO_CRATE_NAME": "ipnet", |
| 11135 | - "CARGO_MANIFEST_DIR": "ipnet-2.12.1.crate", | |
| 11127 | + "CARGO_MANIFEST_DIR": "ipnet-2.12.0.crate", | |
| 11136 | 11128 | "CARGO_PKG_AUTHORS": "Kris Price <kris@krisprice.nz>", |
| 11137 | 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 | 11130 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -11140,10 +11132,10 @@ cargo.rust_library( | ||
| 11140 | 11132 | "CARGO_PKG_README": "README.md", |
| 11141 | 11133 | "CARGO_PKG_REPOSITORY": "https://github.com/krisprice/ipnet", |
| 11142 | 11134 | "CARGO_PKG_RUST_VERSION": "", |
| 11143 | - "CARGO_PKG_VERSION": "2.12.1", | |
| 11135 | + "CARGO_PKG_VERSION": "2.12.0", | |
| 11144 | 11136 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 11145 | 11137 | "CARGO_PKG_VERSION_MINOR": "12", |
| 11146 | - "CARGO_PKG_VERSION_PATCH": "1", | |
| 11138 | + "CARGO_PKG_VERSION_PATCH": "0", | |
| 11147 | 11139 | "CARGO_PKG_VERSION_PRE": "", |
| 11148 | 11140 | }, |
| 11149 | 11141 | features = [ |
| @@ -11283,6 +11275,7 @@ buildscript_run( | ||
| 11283 | 11275 | "CARGO_PKG_VERSION_MINOR": "97", |
| 11284 | 11276 | "CARGO_PKG_VERSION_PATCH": "0", |
| 11285 | 11277 | "CARGO_PKG_VERSION_PRE": "", |
| 11278 | + "OPT_LEVEL": "2", | |
| 11286 | 11279 | }, |
| 11287 | 11280 | features = [ |
| 11288 | 11281 | "fast-apple-datapath", |
| @@ -11701,6 +11694,7 @@ buildscript_run( | ||
| 11701 | 11694 | "CARGO_PKG_VERSION_MINOR": "97", |
| 11702 | 11695 | "CARGO_PKG_VERSION_PATCH": "0", |
| 11703 | 11696 | "CARGO_PKG_VERSION_PRE": "", |
| 11697 | + "OPT_LEVEL": "2", | |
| 11704 | 11698 | }, |
| 11705 | 11699 | features = [ |
| 11706 | 11700 | "metrics", |
| @@ -12029,10 +12023,6 @@ cargo.rust_library( | ||
| 12029 | 12023 | features = [ |
| 12030 | 12024 | "alloc", |
| 12031 | 12025 | "std", |
| 12032 | - "tz-system", | |
| 12033 | - "tzdb-bundle-platform", | |
| 12034 | - "tzdb-concatenated", | |
| 12035 | - "tzdb-zoneinfo", | |
| 12036 | 12026 | ], |
| 12037 | 12027 | named_deps = { |
| 12038 | 12028 | "jcore": ":jiff-core-0.1", |
| @@ -12190,6 +12180,7 @@ buildscript_run( | ||
| 12190 | 12180 | "CARGO_PKG_VERSION_MINOR": "1", |
| 12191 | 12181 | "CARGO_PKG_VERSION_PATCH": "0", |
| 12192 | 12182 | "CARGO_PKG_VERSION_PRE": "", |
| 12183 | + "OPT_LEVEL": "2", | |
| 12193 | 12184 | }, |
| 12194 | 12185 | version = "3.1.0", |
| 12195 | 12186 | ) |
| @@ -12321,6 +12312,7 @@ buildscript_run( | ||
| 12321 | 12312 | "CARGO_PKG_VERSION_MINOR": "2", |
| 12322 | 12313 | "CARGO_PKG_VERSION_PATCH": "189", |
| 12323 | 12314 | "CARGO_PKG_VERSION_PRE": "", |
| 12315 | + "OPT_LEVEL": "2", | |
| 12324 | 12316 | }, |
| 12325 | 12317 | features = [ |
| 12326 | 12318 | "default", |
| @@ -12450,6 +12442,7 @@ buildscript_run( | ||
| 12450 | 12442 | "CARGO_PKG_VERSION_MINOR": "2", |
| 12451 | 12443 | "CARGO_PKG_VERSION_PATCH": "16", |
| 12452 | 12444 | "CARGO_PKG_VERSION_PRE": "", |
| 12445 | + "OPT_LEVEL": "2", | |
| 12453 | 12446 | }, |
| 12454 | 12447 | features = [ |
| 12455 | 12448 | "arch", |
| @@ -12550,23 +12543,23 @@ cargo.rust_library( | ||
| 12550 | 12543 | ) |
| 12551 | 12544 | |
| 12552 | 12545 | 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"], | |
| 12557 | 12550 | visibility = [], |
| 12558 | 12551 | ) |
| 12559 | 12552 | |
| 12560 | 12553 | cargo.rust_library( |
| 12561 | 12554 | name = "litemap-0.8", |
| 12562 | - srcs = [":litemap-0.8.3.crate"], | |
| 12555 | + srcs = [":litemap-0.8.2.crate"], | |
| 12563 | 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 | 12558 | edition = "2021", |
| 12566 | 12559 | env = { |
| 12567 | 12560 | "CARGO_BIN_NAME": "litemap", |
| 12568 | 12561 | "CARGO_CRATE_NAME": "litemap", |
| 12569 | - "CARGO_MANIFEST_DIR": "litemap-0.8.3.crate", | |
| 12562 | + "CARGO_MANIFEST_DIR": "litemap-0.8.2.crate", | |
| 12570 | 12563 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 12571 | 12564 | "CARGO_PKG_DESCRIPTION": "A key-value Map implementation based on a flat, sorted Vec.", |
| 12572 | 12565 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -12574,10 +12567,10 @@ cargo.rust_library( | ||
| 12574 | 12567 | "CARGO_PKG_README": "README.md", |
| 12575 | 12568 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 12576 | 12569 | "CARGO_PKG_RUST_VERSION": "1.82", |
| 12577 | - "CARGO_PKG_VERSION": "0.8.3", | |
| 12570 | + "CARGO_PKG_VERSION": "0.8.2", | |
| 12578 | 12571 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 12579 | 12572 | "CARGO_PKG_VERSION_MINOR": "8", |
| 12580 | - "CARGO_PKG_VERSION_PATCH": "3", | |
| 12573 | + "CARGO_PKG_VERSION_PATCH": "2", | |
| 12581 | 12574 | "CARGO_PKG_VERSION_PRE": "", |
| 12582 | 12575 | }, |
| 12583 | 12576 | visibility = [], |
| @@ -12663,23 +12656,23 @@ alias( | ||
| 12663 | 12656 | ) |
| 12664 | 12657 | |
| 12665 | 12658 | 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"], | |
| 12670 | 12663 | visibility = [], |
| 12671 | 12664 | ) |
| 12672 | 12665 | |
| 12673 | 12666 | cargo.rust_library( |
| 12674 | 12667 | name = "log-0.4", |
| 12675 | - srcs = [":log-0.4.34.crate"], | |
| 12668 | + srcs = [":log-0.4.33.crate"], | |
| 12676 | 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 | 12671 | edition = "2021", |
| 12679 | 12672 | env = { |
| 12680 | 12673 | "CARGO_BIN_NAME": "log", |
| 12681 | 12674 | "CARGO_CRATE_NAME": "log", |
| 12682 | - "CARGO_MANIFEST_DIR": "log-0.4.34.crate", | |
| 12675 | + "CARGO_MANIFEST_DIR": "log-0.4.33.crate", | |
| 12683 | 12676 | "CARGO_PKG_AUTHORS": "The Rust Project Developers", |
| 12684 | 12677 | "CARGO_PKG_DESCRIPTION": "A lightweight logging facade for Rust\n", |
| 12685 | 12678 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -12687,16 +12680,13 @@ cargo.rust_library( | ||
| 12687 | 12680 | "CARGO_PKG_README": "README.md", |
| 12688 | 12681 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/log", |
| 12689 | 12682 | "CARGO_PKG_RUST_VERSION": "1.71.0", |
| 12690 | - "CARGO_PKG_VERSION": "0.4.34", | |
| 12683 | + "CARGO_PKG_VERSION": "0.4.33", | |
| 12691 | 12684 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 12692 | 12685 | "CARGO_PKG_VERSION_MINOR": "4", |
| 12693 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 12686 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 12694 | 12687 | "CARGO_PKG_VERSION_PRE": "", |
| 12695 | 12688 | }, |
| 12696 | - features = [ | |
| 12697 | - "alloc", | |
| 12698 | - "std", | |
| 12699 | - ], | |
| 12689 | + features = ["std"], | |
| 12700 | 12690 | visibility = [], |
| 12701 | 12691 | ) |
| 12702 | 12692 | |
| @@ -13042,6 +13032,7 @@ buildscript_run( | ||
| 13042 | 13032 | "CARGO_PKG_VERSION_MINOR": "9", |
| 13043 | 13033 | "CARGO_PKG_VERSION_PATCH": "1", |
| 13044 | 13034 | "CARGO_PKG_VERSION_PRE": "", |
| 13035 | + "OPT_LEVEL": "2", | |
| 13045 | 13036 | }, |
| 13046 | 13037 | features = ["default"], |
| 13047 | 13038 | version = "0.9.1", |
| @@ -13211,23 +13202,23 @@ cargo.rust_library( | ||
| 13211 | 13202 | ) |
| 13212 | 13203 | |
| 13213 | 13204 | 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"], | |
| 13218 | 13209 | visibility = [], |
| 13219 | 13210 | ) |
| 13220 | 13211 | |
| 13221 | 13212 | cargo.rust_library( |
| 13222 | 13213 | name = "moka-0.12", |
| 13223 | - srcs = [":moka-0.12.16.crate"], | |
| 13214 | + srcs = [":moka-0.12.15.crate"], | |
| 13224 | 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 | 13217 | edition = "2021", |
| 13227 | 13218 | env = { |
| 13228 | 13219 | "CARGO_BIN_NAME": "moka", |
| 13229 | 13220 | "CARGO_CRATE_NAME": "moka", |
| 13230 | - "CARGO_MANIFEST_DIR": "moka-0.12.16.crate", | |
| 13221 | + "CARGO_MANIFEST_DIR": "moka-0.12.15.crate", | |
| 13231 | 13222 | "CARGO_PKG_AUTHORS": "", |
| 13232 | 13223 | "CARGO_PKG_DESCRIPTION": "A fast and concurrent cache library inspired by Java Caffeine", |
| 13233 | 13224 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -13235,10 +13226,10 @@ cargo.rust_library( | ||
| 13235 | 13226 | "CARGO_PKG_README": "README.md", |
| 13236 | 13227 | "CARGO_PKG_REPOSITORY": "https://github.com/moka-rs/moka", |
| 13237 | 13228 | "CARGO_PKG_RUST_VERSION": "1.71.1", |
| 13238 | - "CARGO_PKG_VERSION": "0.12.16", | |
| 13229 | + "CARGO_PKG_VERSION": "0.12.15", | |
| 13239 | 13230 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 13240 | 13231 | "CARGO_PKG_VERSION_MINOR": "12", |
| 13241 | - "CARGO_PKG_VERSION_PATCH": "16", | |
| 13232 | + "CARGO_PKG_VERSION_PATCH": "15", | |
| 13242 | 13233 | "CARGO_PKG_VERSION_PRE": "", |
| 13243 | 13234 | }, |
| 13244 | 13235 | features = [ |
| @@ -13409,6 +13400,7 @@ buildscript_run( | ||
| 13409 | 13400 | "CARGO_PKG_VERSION_MINOR": "1", |
| 13410 | 13401 | "CARGO_PKG_VERSION_PATCH": "0", |
| 13411 | 13402 | "CARGO_PKG_VERSION_PRE": "", |
| 13403 | + "OPT_LEVEL": "2", | |
| 13412 | 13404 | }, |
| 13413 | 13405 | features = [ |
| 13414 | 13406 | "capture-camera", |
| @@ -13760,6 +13752,7 @@ buildscript_run( | ||
| 13760 | 13752 | "CARGO_PKG_VERSION_MINOR": "3", |
| 13761 | 13753 | "CARGO_PKG_VERSION_PATCH": "2", |
| 13762 | 13754 | "CARGO_PKG_VERSION_PRE": "", |
| 13755 | + "OPT_LEVEL": "2", | |
| 13763 | 13756 | }, |
| 13764 | 13757 | version = "0.3.2", |
| 13765 | 13758 | ) |
| @@ -13912,23 +13905,23 @@ cargo.rust_library( | ||
| 13912 | 13905 | ) |
| 13913 | 13906 | |
| 13914 | 13907 | 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"], | |
| 13919 | 13912 | visibility = [], |
| 13920 | 13913 | ) |
| 13921 | 13914 | |
| 13922 | 13915 | cargo.rust_library( |
| 13923 | 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 | 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 | 13920 | edition = "2021", |
| 13928 | 13921 | env = { |
| 13929 | 13922 | "CARGO_BIN_NAME": "netlink_packet_core", |
| 13930 | 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 | 13925 | "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>", |
| 13933 | 13926 | "CARGO_PKG_DESCRIPTION": "netlink packet types", |
| 13934 | 13927 | "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-packet-core", |
| @@ -13936,10 +13929,10 @@ cargo.rust_library( | ||
| 13936 | 13929 | "CARGO_PKG_README": "README.md", |
| 13937 | 13930 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-packet-core", |
| 13938 | 13931 | "CARGO_PKG_RUST_VERSION": "", |
| 13939 | - "CARGO_PKG_VERSION": "0.8.2", | |
| 13932 | + "CARGO_PKG_VERSION": "0.8.1", | |
| 13940 | 13933 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 13941 | 13934 | "CARGO_PKG_VERSION_MINOR": "8", |
| 13942 | - "CARGO_PKG_VERSION_PATCH": "2", | |
| 13935 | + "CARGO_PKG_VERSION_PATCH": "1", | |
| 13943 | 13936 | "CARGO_PKG_VERSION_PRE": "", |
| 13944 | 13937 | }, |
| 13945 | 13938 | visibility = [], |
| @@ -13987,23 +13980,23 @@ cargo.rust_library( | ||
| 13987 | 13980 | ) |
| 13988 | 13981 | |
| 13989 | 13982 | 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"], | |
| 13994 | 13987 | visibility = [], |
| 13995 | 13988 | ) |
| 13996 | 13989 | |
| 13997 | 13990 | cargo.rust_library( |
| 13998 | 13991 | name = "netlink-proto-0.12", |
| 13999 | - srcs = [":netlink-proto-0.12.2.crate"], | |
| 13992 | + srcs = [":netlink-proto-0.12.1.crate"], | |
| 14000 | 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 | 13995 | edition = "2021", |
| 14003 | 13996 | env = { |
| 14004 | 13997 | "CARGO_BIN_NAME": "netlink_proto", |
| 14005 | 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 | 14000 | "CARGO_PKG_AUTHORS": "Corentin Henry <corentinhenry@gmail.com>", |
| 14008 | 14001 | "CARGO_PKG_DESCRIPTION": "async netlink protocol", |
| 14009 | 14002 | "CARGO_PKG_HOMEPAGE": "https://github.com/rust-netlink/netlink-proto", |
| @@ -14011,10 +14004,10 @@ cargo.rust_library( | ||
| 14011 | 14004 | "CARGO_PKG_README": "README.md", |
| 14012 | 14005 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-netlink/netlink-proto", |
| 14013 | 14006 | "CARGO_PKG_RUST_VERSION": "1.75", |
| 14014 | - "CARGO_PKG_VERSION": "0.12.2", | |
| 14007 | + "CARGO_PKG_VERSION": "0.12.1", | |
| 14015 | 14008 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 14016 | 14009 | "CARGO_PKG_VERSION_MINOR": "12", |
| 14017 | - "CARGO_PKG_VERSION_PATCH": "2", | |
| 14010 | + "CARGO_PKG_VERSION_PATCH": "1", | |
| 14018 | 14011 | "CARGO_PKG_VERSION_PRE": "", |
| 14019 | 14012 | }, |
| 14020 | 14013 | features = [ |
| @@ -14204,6 +14197,7 @@ buildscript_run( | ||
| 14204 | 14197 | "CARGO_PKG_VERSION_MINOR": "15", |
| 14205 | 14198 | "CARGO_PKG_VERSION_PATCH": "0", |
| 14206 | 14199 | "CARGO_PKG_VERSION_PRE": "", |
| 14200 | + "OPT_LEVEL": "2", | |
| 14207 | 14201 | }, |
| 14208 | 14202 | version = "0.15.0", |
| 14209 | 14203 | ) |
| @@ -14307,6 +14301,7 @@ buildscript_run( | ||
| 14307 | 14301 | "CARGO_PKG_VERSION_MINOR": "28", |
| 14308 | 14302 | "CARGO_PKG_VERSION_PATCH": "0", |
| 14309 | 14303 | "CARGO_PKG_VERSION_PRE": "", |
| 14304 | + "OPT_LEVEL": "2", | |
| 14310 | 14305 | }, |
| 14311 | 14306 | features = [ |
| 14312 | 14307 | "default", |
| @@ -14412,6 +14407,7 @@ buildscript_run( | ||
| 14412 | 14407 | "CARGO_PKG_VERSION_MINOR": "30", |
| 14413 | 14408 | "CARGO_PKG_VERSION_PATCH": "1", |
| 14414 | 14409 | "CARGO_PKG_VERSION_PRE": "", |
| 14410 | + "OPT_LEVEL": "2", | |
| 14415 | 14411 | }, |
| 14416 | 14412 | features = [ |
| 14417 | 14413 | "fs", |
| @@ -14606,6 +14602,7 @@ buildscript_run( | ||
| 14606 | 14602 | "CARGO_PKG_VERSION_MINOR": "17", |
| 14607 | 14603 | "CARGO_PKG_VERSION_PATCH": "0", |
| 14608 | 14604 | "CARGO_PKG_VERSION_PRE": "", |
| 14605 | + "OPT_LEVEL": "2", | |
| 14609 | 14606 | }, |
| 14610 | 14607 | features = [ |
| 14611 | 14608 | "aws-lc-rs", |
| @@ -14759,6 +14756,7 @@ buildscript_run( | ||
| 14759 | 14756 | "CARGO_PKG_VERSION_MINOR": "9", |
| 14760 | 14757 | "CARGO_PKG_VERSION_PATCH": "0", |
| 14761 | 14758 | "CARGO_PKG_VERSION_PRE": "", |
| 14759 | + "OPT_LEVEL": "2", | |
| 14762 | 14760 | }, |
| 14763 | 14761 | features = [ |
| 14764 | 14762 | "default", |
| @@ -15050,23 +15048,23 @@ cargo.rust_library( | ||
| 15050 | 15048 | ) |
| 15051 | 15049 | |
| 15052 | 15050 | 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"], | |
| 15057 | 15055 | visibility = [], |
| 15058 | 15056 | ) |
| 15059 | 15057 | |
| 15060 | 15058 | cargo.rust_library( |
| 15061 | 15059 | name = "num-integer-0.1", |
| 15062 | - srcs = [":num-integer-0.1.47.crate"], | |
| 15060 | + srcs = [":num-integer-0.1.46.crate"], | |
| 15063 | 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 | 15063 | edition = "2018", |
| 15066 | 15064 | env = { |
| 15067 | 15065 | "CARGO_BIN_NAME": "num_integer", |
| 15068 | 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 | 15068 | "CARGO_PKG_AUTHORS": "The Rust Project Developers", |
| 15071 | 15069 | "CARGO_PKG_DESCRIPTION": "Integer traits and functions", |
| 15072 | 15070 | "CARGO_PKG_HOMEPAGE": "https://github.com/rust-num/num-integer", |
| @@ -15074,10 +15072,10 @@ cargo.rust_library( | ||
| 15074 | 15072 | "CARGO_PKG_README": "README.md", |
| 15075 | 15073 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-num/num-integer", |
| 15076 | 15074 | "CARGO_PKG_RUST_VERSION": "1.31", |
| 15077 | - "CARGO_PKG_VERSION": "0.1.47", | |
| 15075 | + "CARGO_PKG_VERSION": "0.1.46", | |
| 15078 | 15076 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 15079 | 15077 | "CARGO_PKG_VERSION_MINOR": "1", |
| 15080 | - "CARGO_PKG_VERSION_PATCH": "47", | |
| 15078 | + "CARGO_PKG_VERSION_PATCH": "46", | |
| 15081 | 15079 | "CARGO_PKG_VERSION_PRE": "", |
| 15082 | 15080 | }, |
| 15083 | 15081 | features = [ |
| @@ -15229,6 +15227,7 @@ buildscript_run( | ||
| 15229 | 15227 | "CARGO_PKG_VERSION_MINOR": "2", |
| 15230 | 15228 | "CARGO_PKG_VERSION_PATCH": "19", |
| 15231 | 15229 | "CARGO_PKG_VERSION_PRE": "", |
| 15230 | + "OPT_LEVEL": "2", | |
| 15232 | 15231 | }, |
| 15233 | 15232 | features = [ |
| 15234 | 15233 | "default", |
| @@ -15488,6 +15487,7 @@ buildscript_run( | ||
| 15488 | 15487 | "CARGO_PKG_VERSION_MINOR": "3", |
| 15489 | 15488 | "CARGO_PKG_VERSION_PATCH": "5", |
| 15490 | 15489 | "CARGO_PKG_VERSION_PRE": "", |
| 15490 | + "OPT_LEVEL": "2", | |
| 15491 | 15491 | }, |
| 15492 | 15492 | features = [ |
| 15493 | 15493 | "alloc", |
| @@ -15634,6 +15634,7 @@ buildscript_run( | ||
| 15634 | 15634 | "CARGO_PKG_VERSION_MINOR": "6", |
| 15635 | 15635 | "CARGO_PKG_VERSION_PATCH": "4", |
| 15636 | 15636 | "CARGO_PKG_VERSION_PRE": "", |
| 15637 | + "OPT_LEVEL": "2", | |
| 15637 | 15638 | }, |
| 15638 | 15639 | features = [ |
| 15639 | 15640 | "alloc", |
| @@ -17289,6 +17290,7 @@ buildscript_run( | ||
| 17289 | 17290 | "CARGO_PKG_VERSION_MINOR": "37", |
| 17290 | 17291 | "CARGO_PKG_VERSION_PATCH": "3", |
| 17291 | 17292 | "CARGO_PKG_VERSION_PRE": "", |
| 17293 | + "OPT_LEVEL": "2", | |
| 17292 | 17294 | }, |
| 17293 | 17295 | features = [ |
| 17294 | 17296 | "archive", |
| @@ -17390,23 +17392,23 @@ alias( | ||
| 17390 | 17392 | ) |
| 17391 | 17393 | |
| 17392 | 17394 | 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"], | |
| 17397 | 17399 | visibility = [], |
| 17398 | 17400 | ) |
| 17399 | 17401 | |
| 17400 | 17402 | cargo.rust_library( |
| 17401 | 17403 | name = "openh264-0.9", |
| 17402 | - srcs = [":openh264-0.9.8.crate"], | |
| 17404 | + srcs = [":openh264-0.9.7.crate"], | |
| 17403 | 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 | 17407 | edition = "2024", |
| 17406 | 17408 | env = { |
| 17407 | 17409 | "CARGO_BIN_NAME": "openh264", |
| 17408 | 17410 | "CARGO_CRATE_NAME": "openh264", |
| 17409 | - "CARGO_MANIFEST_DIR": "openh264-0.9.8.crate", | |
| 17411 | + "CARGO_MANIFEST_DIR": "openh264-0.9.7.crate", | |
| 17410 | 17412 | "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>", |
| 17411 | 17413 | "CARGO_PKG_DESCRIPTION": "Idiomatic bindings for OpenH264.", |
| 17412 | 17414 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -17414,10 +17416,10 @@ cargo.rust_library( | ||
| 17414 | 17416 | "CARGO_PKG_README": "README.md", |
| 17415 | 17417 | "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs", |
| 17416 | 17418 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 17417 | - "CARGO_PKG_VERSION": "0.9.8", | |
| 17419 | + "CARGO_PKG_VERSION": "0.9.7", | |
| 17418 | 17420 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 17419 | 17421 | "CARGO_PKG_VERSION_MINOR": "9", |
| 17420 | - "CARGO_PKG_VERSION_PATCH": "8", | |
| 17422 | + "CARGO_PKG_VERSION_PATCH": "7", | |
| 17421 | 17423 | "CARGO_PKG_VERSION_PRE": "", |
| 17422 | 17424 | }, |
| 17423 | 17425 | features = [ |
| @@ -17432,23 +17434,23 @@ cargo.rust_library( | ||
| 17432 | 17434 | ) |
| 17433 | 17435 | |
| 17434 | 17436 | 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"], | |
| 17439 | 17441 | visibility = [], |
| 17440 | 17442 | ) |
| 17441 | 17443 | |
| 17442 | 17444 | cargo.rust_library( |
| 17443 | 17445 | name = "openh264-sys2-0.9", |
| 17444 | - srcs = [":openh264-sys2-0.9.8.crate"], | |
| 17446 | + srcs = [":openh264-sys2-0.9.7.crate"], | |
| 17445 | 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 | 17449 | edition = "2024", |
| 17448 | 17450 | env = { |
| 17449 | 17451 | "CARGO_BIN_NAME": "openh264_sys2", |
| 17450 | 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 | 17454 | "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>", |
| 17453 | 17455 | "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.", |
| 17454 | 17456 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -17456,10 +17458,10 @@ cargo.rust_library( | ||
| 17456 | 17458 | "CARGO_PKG_README": "README.md", |
| 17457 | 17459 | "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs", |
| 17458 | 17460 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 17459 | - "CARGO_PKG_VERSION": "0.9.8", | |
| 17461 | + "CARGO_PKG_VERSION": "0.9.7", | |
| 17460 | 17462 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 17461 | 17463 | "CARGO_PKG_VERSION_MINOR": "9", |
| 17462 | - "CARGO_PKG_VERSION_PATCH": "8", | |
| 17464 | + "CARGO_PKG_VERSION_PATCH": "7", | |
| 17463 | 17465 | "CARGO_PKG_VERSION_PRE": "", |
| 17464 | 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 | 17473 | cargo.rust_binary( |
| 17472 | 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 | 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 | 17478 | edition = "2024", |
| 17477 | 17479 | env = { |
| 17478 | 17480 | "CARGO_BIN_NAME": "build-script-build", |
| 17479 | 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 | 17483 | "CARGO_PKG_AUTHORS": "Ralf Biedert <rb@xr.io>", |
| 17482 | 17484 | "CARGO_PKG_DESCRIPTION": "Low-level bindings for OpenH264.", |
| 17483 | 17485 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -17485,10 +17487,10 @@ cargo.rust_binary( | ||
| 17485 | 17487 | "CARGO_PKG_README": "README.md", |
| 17486 | 17488 | "CARGO_PKG_REPOSITORY": "https://github.com/ralfbiedert/openh264-rs", |
| 17487 | 17489 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 17488 | - "CARGO_PKG_VERSION": "0.9.8", | |
| 17490 | + "CARGO_PKG_VERSION": "0.9.7", | |
| 17489 | 17491 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 17490 | 17492 | "CARGO_PKG_VERSION_MINOR": "9", |
| 17491 | - "CARGO_PKG_VERSION_PATCH": "8", | |
| 17493 | + "CARGO_PKG_VERSION_PATCH": "7", | |
| 17492 | 17494 | "CARGO_PKG_VERSION_PRE": "", |
| 17493 | 17495 | }, |
| 17494 | 17496 | features = ["source"], |
| @@ -17513,11 +17515,12 @@ buildscript_run( | ||
| 17513 | 17515 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 17514 | 17516 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 17515 | 17517 | "CARGO_PKG_VERSION_MINOR": "9", |
| 17516 | - "CARGO_PKG_VERSION_PATCH": "8", | |
| 17518 | + "CARGO_PKG_VERSION_PATCH": "7", | |
| 17517 | 17519 | "CARGO_PKG_VERSION_PRE": "", |
| 17520 | + "OPT_LEVEL": "2", | |
| 17518 | 17521 | }, |
| 17519 | 17522 | features = ["source"], |
| 17520 | - version = "0.9.8", | |
| 17523 | + version = "0.9.7", | |
| 17521 | 17524 | ) |
| 17522 | 17525 | |
| 17523 | 17526 | http_archive( |
| @@ -17599,23 +17602,23 @@ cargo.rust_library( | ||
| 17599 | 17602 | ) |
| 17600 | 17603 | |
| 17601 | 17604 | 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"], | |
| 17606 | 17609 | visibility = [], |
| 17607 | 17610 | ) |
| 17608 | 17611 | |
| 17609 | 17612 | cargo.rust_library( |
| 17610 | 17613 | name = "papaya-0.2", |
| 17611 | - srcs = [":papaya-0.2.5.crate"], | |
| 17614 | + srcs = [":papaya-0.2.4.crate"], | |
| 17612 | 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 | 17617 | edition = "2021", |
| 17615 | 17618 | env = { |
| 17616 | 17619 | "CARGO_BIN_NAME": "papaya", |
| 17617 | 17620 | "CARGO_CRATE_NAME": "papaya", |
| 17618 | - "CARGO_MANIFEST_DIR": "papaya-0.2.5.crate", | |
| 17621 | + "CARGO_MANIFEST_DIR": "papaya-0.2.4.crate", | |
| 17619 | 17622 | "CARGO_PKG_AUTHORS": "Ibraheem Ahmed <ibraheem@ibraheem.ca>", |
| 17620 | 17623 | "CARGO_PKG_DESCRIPTION": "A fast and ergonomic concurrent hash-table for read-heavy workloads.", |
| 17621 | 17624 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -17623,10 +17626,10 @@ cargo.rust_library( | ||
| 17623 | 17626 | "CARGO_PKG_README": "README.md", |
| 17624 | 17627 | "CARGO_PKG_REPOSITORY": "https://github.com/ibraheemdev/papaya", |
| 17625 | 17628 | "CARGO_PKG_RUST_VERSION": "1.72.0", |
| 17626 | - "CARGO_PKG_VERSION": "0.2.5", | |
| 17629 | + "CARGO_PKG_VERSION": "0.2.4", | |
| 17627 | 17630 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 17628 | 17631 | "CARGO_PKG_VERSION_MINOR": "2", |
| 17629 | - "CARGO_PKG_VERSION_PATCH": "5", | |
| 17632 | + "CARGO_PKG_VERSION_PATCH": "4", | |
| 17630 | 17633 | "CARGO_PKG_VERSION_PRE": "", |
| 17631 | 17634 | }, |
| 17632 | 17635 | visibility = [], |
| @@ -17806,6 +17809,7 @@ buildscript_run( | ||
| 17806 | 17809 | "CARGO_PKG_VERSION_MINOR": "9", |
| 17807 | 17810 | "CARGO_PKG_VERSION_PATCH": "12", |
| 17808 | 17811 | "CARGO_PKG_VERSION_PRE": "", |
| 17812 | + "OPT_LEVEL": "2", | |
| 17809 | 17813 | }, |
| 17810 | 17814 | features = [ |
| 17811 | 17815 | "backtrace", |
| @@ -17934,6 +17938,7 @@ buildscript_run( | ||
| 17934 | 17938 | "CARGO_PKG_VERSION_MINOR": "0", |
| 17935 | 17939 | "CARGO_PKG_VERSION_PATCH": "15", |
| 17936 | 17940 | "CARGO_PKG_VERSION_PRE": "", |
| 17941 | + "OPT_LEVEL": "2", | |
| 17937 | 17942 | }, |
| 17938 | 17943 | version = "1.0.15", |
| 17939 | 17944 | ) |
| @@ -18312,6 +18317,7 @@ buildscript_run( | ||
| 18312 | 18317 | "CARGO_PKG_VERSION_MINOR": "0", |
| 18313 | 18318 | "CARGO_PKG_VERSION_PATCH": "3", |
| 18314 | 18319 | "CARGO_PKG_VERSION_PRE": "", |
| 18320 | + "OPT_LEVEL": "2", | |
| 18315 | 18321 | }, |
| 18316 | 18322 | features = [ |
| 18317 | 18323 | "keys", |
| @@ -18321,23 +18327,23 @@ buildscript_run( | ||
| 18321 | 18327 | ) |
| 18322 | 18328 | |
| 18323 | 18329 | 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"], | |
| 18328 | 18334 | visibility = [], |
| 18329 | 18335 | ) |
| 18330 | 18336 | |
| 18331 | 18337 | cargo.rust_library( |
| 18332 | 18338 | name = "pkcs8-0.11", |
| 18333 | - srcs = [":pkcs8-0.11.0.crate"], | |
| 18339 | + srcs = [":pkcs8-0.11.0-rc.11.crate"], | |
| 18334 | 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 | 18342 | edition = "2024", |
| 18337 | 18343 | env = { |
| 18338 | 18344 | "CARGO_BIN_NAME": "pkcs8", |
| 18339 | 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 | 18347 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 18342 | 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 | 18349 | "CARGO_PKG_HOMEPAGE": "https://github.com/RustCrypto/formats/tree/master/pkcs8", |
| @@ -18345,11 +18351,11 @@ cargo.rust_library( | ||
| 18345 | 18351 | "CARGO_PKG_README": "README.md", |
| 18346 | 18352 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/formats", |
| 18347 | 18353 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 18348 | - "CARGO_PKG_VERSION": "0.11.0", | |
| 18354 | + "CARGO_PKG_VERSION": "0.11.0-rc.11", | |
| 18349 | 18355 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 18350 | 18356 | "CARGO_PKG_VERSION_MINOR": "11", |
| 18351 | 18357 | "CARGO_PKG_VERSION_PATCH": "0", |
| 18352 | - "CARGO_PKG_VERSION_PRE": "", | |
| 18358 | + "CARGO_PKG_VERSION_PRE": "rc.11", | |
| 18353 | 18359 | }, |
| 18354 | 18360 | features = [ |
| 18355 | 18361 | "alloc", |
| @@ -18363,34 +18369,34 @@ cargo.rust_library( | ||
| 18363 | 18369 | ) |
| 18364 | 18370 | |
| 18365 | 18371 | 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"], | |
| 18370 | 18376 | visibility = [], |
| 18371 | 18377 | ) |
| 18372 | 18378 | |
| 18373 | 18379 | cargo.rust_library( |
| 18374 | 18380 | name = "pkg-config-0.3", |
| 18375 | - srcs = [":pkg-config-0.3.34.crate"], | |
| 18381 | + srcs = [":pkg-config-0.3.33.crate"], | |
| 18376 | 18382 | 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", | |
| 18379 | 18385 | env = { |
| 18380 | 18386 | "CARGO_BIN_NAME": "pkg_config", |
| 18381 | 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 | 18389 | "CARGO_PKG_AUTHORS": "Alex Crichton <alex@alexcrichton.com>", |
| 18384 | 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 | 18391 | "CARGO_PKG_HOMEPAGE": "", |
| 18386 | 18392 | "CARGO_PKG_NAME": "pkg-config", |
| 18387 | 18393 | "CARGO_PKG_README": "README.md", |
| 18388 | 18394 | "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", | |
| 18391 | 18397 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 18392 | 18398 | "CARGO_PKG_VERSION_MINOR": "3", |
| 18393 | - "CARGO_PKG_VERSION_PATCH": "34", | |
| 18399 | + "CARGO_PKG_VERSION_PATCH": "33", | |
| 18394 | 18400 | "CARGO_PKG_VERSION_PRE": "", |
| 18395 | 18401 | }, |
| 18396 | 18402 | visibility = [], |
| @@ -18608,23 +18614,23 @@ cargo.rust_library( | ||
| 18608 | 18614 | ) |
| 18609 | 18615 | |
| 18610 | 18616 | 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"], | |
| 18615 | 18621 | visibility = [], |
| 18616 | 18622 | ) |
| 18617 | 18623 | |
| 18618 | 18624 | cargo.rust_library( |
| 18619 | 18625 | name = "portable-atomic-1", |
| 18620 | - srcs = [":portable-atomic-1.15.0.crate"], | |
| 18626 | + srcs = [":portable-atomic-1.14.0.crate"], | |
| 18621 | 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 | 18629 | edition = "2018", |
| 18624 | 18630 | env = { |
| 18625 | 18631 | "CARGO_BIN_NAME": "portable_atomic", |
| 18626 | 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 | 18634 | "CARGO_PKG_AUTHORS": "", |
| 18629 | 18635 | "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n", |
| 18630 | 18636 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -18632,9 +18638,9 @@ cargo.rust_library( | ||
| 18632 | 18638 | "CARGO_PKG_README": "README.md", |
| 18633 | 18639 | "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic", |
| 18634 | 18640 | "CARGO_PKG_RUST_VERSION": "1.34", |
| 18635 | - "CARGO_PKG_VERSION": "1.15.0", | |
| 18641 | + "CARGO_PKG_VERSION": "1.14.0", | |
| 18636 | 18642 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 18637 | - "CARGO_PKG_VERSION_MINOR": "15", | |
| 18643 | + "CARGO_PKG_VERSION_MINOR": "14", | |
| 18638 | 18644 | "CARGO_PKG_VERSION_PATCH": "0", |
| 18639 | 18645 | "CARGO_PKG_VERSION_PRE": "", |
| 18640 | 18646 | "OUT_DIR": "$(location :portable-atomic-1-build-script-run[out_dir])", |
| @@ -18652,14 +18658,14 @@ cargo.rust_library( | ||
| 18652 | 18658 | |
| 18653 | 18659 | cargo.rust_binary( |
| 18654 | 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 | 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 | 18664 | edition = "2018", |
| 18659 | 18665 | env = { |
| 18660 | 18666 | "CARGO_BIN_NAME": "build-script-build", |
| 18661 | 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 | 18669 | "CARGO_PKG_AUTHORS": "", |
| 18664 | 18670 | "CARGO_PKG_DESCRIPTION": "Portable atomic types including support for 128-bit atomics, atomic float, etc.\n", |
| 18665 | 18671 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -18667,9 +18673,9 @@ cargo.rust_binary( | ||
| 18667 | 18673 | "CARGO_PKG_README": "README.md", |
| 18668 | 18674 | "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic", |
| 18669 | 18675 | "CARGO_PKG_RUST_VERSION": "1.34", |
| 18670 | - "CARGO_PKG_VERSION": "1.15.0", | |
| 18676 | + "CARGO_PKG_VERSION": "1.14.0", | |
| 18671 | 18677 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 18672 | - "CARGO_PKG_VERSION_MINOR": "15", | |
| 18678 | + "CARGO_PKG_VERSION_MINOR": "14", | |
| 18673 | 18679 | "CARGO_PKG_VERSION_PATCH": "0", |
| 18674 | 18680 | "CARGO_PKG_VERSION_PRE": "", |
| 18675 | 18681 | }, |
| @@ -18694,9 +18700,10 @@ buildscript_run( | ||
| 18694 | 18700 | "CARGO_PKG_REPOSITORY": "https://github.com/taiki-e/portable-atomic", |
| 18695 | 18701 | "CARGO_PKG_RUST_VERSION": "1.34", |
| 18696 | 18702 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 18697 | - "CARGO_PKG_VERSION_MINOR": "15", | |
| 18703 | + "CARGO_PKG_VERSION_MINOR": "14", | |
| 18698 | 18704 | "CARGO_PKG_VERSION_PATCH": "0", |
| 18699 | 18705 | "CARGO_PKG_VERSION_PRE": "", |
| 18706 | + "OPT_LEVEL": "2", | |
| 18700 | 18707 | }, |
| 18701 | 18708 | features = [ |
| 18702 | 18709 | "default", |
| @@ -18704,7 +18711,7 @@ buildscript_run( | ||
| 18704 | 18711 | "serde", |
| 18705 | 18712 | "std", |
| 18706 | 18713 | ], |
| 18707 | - version = "1.15.0", | |
| 18714 | + version = "1.14.0", | |
| 18708 | 18715 | ) |
| 18709 | 18716 | |
| 18710 | 18717 | http_archive( |
| @@ -18856,23 +18863,23 @@ cargo.rust_library( | ||
| 18856 | 18863 | ) |
| 18857 | 18864 | |
| 18858 | 18865 | 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"], | |
| 18863 | 18870 | visibility = [], |
| 18864 | 18871 | ) |
| 18865 | 18872 | |
| 18866 | 18873 | cargo.rust_library( |
| 18867 | 18874 | name = "potential_utf-0.1", |
| 18868 | - srcs = [":potential_utf-0.1.6.crate"], | |
| 18875 | + srcs = [":potential_utf-0.1.5.crate"], | |
| 18869 | 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 | 18878 | edition = "2021", |
| 18872 | 18879 | env = { |
| 18873 | 18880 | "CARGO_BIN_NAME": "potential_utf", |
| 18874 | 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 | 18883 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 18877 | 18884 | "CARGO_PKG_DESCRIPTION": "Unvalidated string and character types", |
| 18878 | 18885 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| @@ -18880,10 +18887,10 @@ cargo.rust_library( | ||
| 18880 | 18887 | "CARGO_PKG_README": "README.md", |
| 18881 | 18888 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 18882 | 18889 | "CARGO_PKG_RUST_VERSION": "1.82", |
| 18883 | - "CARGO_PKG_VERSION": "0.1.6", | |
| 18890 | + "CARGO_PKG_VERSION": "0.1.5", | |
| 18884 | 18891 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 18885 | 18892 | "CARGO_PKG_VERSION_MINOR": "1", |
| 18886 | - "CARGO_PKG_VERSION_PATCH": "6", | |
| 18893 | + "CARGO_PKG_VERSION_PATCH": "5", | |
| 18887 | 18894 | "CARGO_PKG_VERSION_PRE": "", |
| 18888 | 18895 | }, |
| 18889 | 18896 | features = ["zerovec"], |
| @@ -19048,6 +19055,7 @@ buildscript_run( | ||
| 19048 | 19055 | "CARGO_PKG_VERSION_MINOR": "2", |
| 19049 | 19056 | "CARGO_PKG_VERSION_PATCH": "37", |
| 19050 | 19057 | "CARGO_PKG_VERSION_PRE": "", |
| 19058 | + "OPT_LEVEL": "2", | |
| 19051 | 19059 | }, |
| 19052 | 19060 | features = ["verbatim"], |
| 19053 | 19061 | version = "0.2.37", |
| @@ -19209,6 +19217,7 @@ buildscript_run( | ||
| 19209 | 19217 | "CARGO_PKG_VERSION_MINOR": "0", |
| 19210 | 19218 | "CARGO_PKG_VERSION_PATCH": "107", |
| 19211 | 19219 | "CARGO_PKG_VERSION_PRE": "", |
| 19220 | + "OPT_LEVEL": "2", | |
| 19212 | 19221 | }, |
| 19213 | 19222 | features = [ |
| 19214 | 19223 | "default", |
| @@ -19493,6 +19502,7 @@ buildscript_run( | ||
| 19493 | 19502 | "CARGO_PKG_VERSION_MINOR": "0", |
| 19494 | 19503 | "CARGO_PKG_VERSION_PATCH": "47", |
| 19495 | 19504 | "CARGO_PKG_VERSION_PRE": "", |
| 19505 | + "OPT_LEVEL": "2", | |
| 19496 | 19506 | }, |
| 19497 | 19507 | features = [ |
| 19498 | 19508 | "default", |
| @@ -19508,23 +19518,23 @@ alias( | ||
| 19508 | 19518 | ) |
| 19509 | 19519 | |
| 19510 | 19520 | 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"], | |
| 19515 | 19525 | visibility = [], |
| 19516 | 19526 | ) |
| 19517 | 19527 | |
| 19518 | 19528 | cargo.rust_library( |
| 19519 | 19529 | name = "rand-0.8", |
| 19520 | - srcs = [":rand-0.8.8.crate"], | |
| 19530 | + srcs = [":rand-0.8.7.crate"], | |
| 19521 | 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 | 19533 | edition = "2018", |
| 19524 | 19534 | env = { |
| 19525 | 19535 | "CARGO_BIN_NAME": "rand", |
| 19526 | 19536 | "CARGO_CRATE_NAME": "rand", |
| 19527 | - "CARGO_MANIFEST_DIR": "rand-0.8.8.crate", | |
| 19537 | + "CARGO_MANIFEST_DIR": "rand-0.8.7.crate", | |
| 19528 | 19538 | "CARGO_PKG_AUTHORS": "The Rand Project Developers:The Rust Project Developers", |
| 19529 | 19539 | "CARGO_PKG_DESCRIPTION": "Random number generators and other randomness functionality.\n", |
| 19530 | 19540 | "CARGO_PKG_HOMEPAGE": "https://rust-random.github.io/book", |
| @@ -19532,10 +19542,10 @@ cargo.rust_library( | ||
| 19532 | 19542 | "CARGO_PKG_README": "README.md", |
| 19533 | 19543 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-random/rand", |
| 19534 | 19544 | "CARGO_PKG_RUST_VERSION": "", |
| 19535 | - "CARGO_PKG_VERSION": "0.8.8", | |
| 19545 | + "CARGO_PKG_VERSION": "0.8.7", | |
| 19536 | 19546 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 19537 | 19547 | "CARGO_PKG_VERSION_MINOR": "8", |
| 19538 | - "CARGO_PKG_VERSION_PATCH": "8", | |
| 19548 | + "CARGO_PKG_VERSION_PATCH": "7", | |
| 19539 | 19549 | "CARGO_PKG_VERSION_PRE": "", |
| 19540 | 19550 | }, |
| 19541 | 19551 | features = [ |
| @@ -19998,28 +20008,29 @@ buildscript_run( | ||
| 19998 | 20008 | "CARGO_PKG_VERSION_MINOR": "13", |
| 19999 | 20009 | "CARGO_PKG_VERSION_PATCH": "0", |
| 20000 | 20010 | "CARGO_PKG_VERSION_PRE": "", |
| 20011 | + "OPT_LEVEL": "2", | |
| 20001 | 20012 | }, |
| 20002 | 20013 | version = "1.13.0", |
| 20003 | 20014 | ) |
| 20004 | 20015 | |
| 20005 | 20016 | 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"], | |
| 20010 | 20021 | visibility = [], |
| 20011 | 20022 | ) |
| 20012 | 20023 | |
| 20013 | 20024 | cargo.rust_library( |
| 20014 | 20025 | name = "rcgen-0.14", |
| 20015 | - srcs = [":rcgen-0.14.10.crate"], | |
| 20026 | + srcs = [":rcgen-0.14.8.crate"], | |
| 20016 | 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 | 20029 | edition = "2021", |
| 20019 | 20030 | env = { |
| 20020 | 20031 | "CARGO_BIN_NAME": "rcgen", |
| 20021 | 20032 | "CARGO_CRATE_NAME": "rcgen", |
| 20022 | - "CARGO_MANIFEST_DIR": "rcgen-0.14.10.crate", | |
| 20033 | + "CARGO_MANIFEST_DIR": "rcgen-0.14.8.crate", | |
| 20023 | 20034 | "CARGO_PKG_AUTHORS": "", |
| 20024 | 20035 | "CARGO_PKG_DESCRIPTION": "Rust X.509 certificate generator", |
| 20025 | 20036 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -20027,10 +20038,10 @@ cargo.rust_library( | ||
| 20027 | 20038 | "CARGO_PKG_README": "README.md", |
| 20028 | 20039 | "CARGO_PKG_REPOSITORY": "https://github.com/rustls/rcgen", |
| 20029 | 20040 | "CARGO_PKG_RUST_VERSION": "1.88", |
| 20030 | - "CARGO_PKG_VERSION": "0.14.10", | |
| 20041 | + "CARGO_PKG_VERSION": "0.14.8", | |
| 20031 | 20042 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 20032 | 20043 | "CARGO_PKG_VERSION_MINOR": "14", |
| 20033 | - "CARGO_PKG_VERSION_PATCH": "10", | |
| 20044 | + "CARGO_PKG_VERSION_PATCH": "8", | |
| 20034 | 20045 | "CARGO_PKG_VERSION_PRE": "", |
| 20035 | 20046 | }, |
| 20036 | 20047 | features = [ |
| @@ -20085,23 +20096,23 @@ cargo.rust_library( | ||
| 20085 | 20096 | ) |
| 20086 | 20097 | |
| 20087 | 20098 | 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"], | |
| 20092 | 20103 | visibility = [], |
| 20093 | 20104 | ) |
| 20094 | 20105 | |
| 20095 | 20106 | cargo.rust_library( |
| 20096 | 20107 | name = "ref-cast-1", |
| 20097 | - srcs = [":ref-cast-1.0.27.crate"], | |
| 20108 | + srcs = [":ref-cast-1.0.26.crate"], | |
| 20098 | 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 | 20111 | edition = "2021", |
| 20101 | 20112 | env = { |
| 20102 | 20113 | "CARGO_BIN_NAME": "ref_cast", |
| 20103 | 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 | 20116 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 20106 | 20117 | "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.", |
| 20107 | 20118 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -20109,10 +20120,10 @@ cargo.rust_library( | ||
| 20109 | 20120 | "CARGO_PKG_README": "README.md", |
| 20110 | 20121 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast", |
| 20111 | 20122 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 20112 | - "CARGO_PKG_VERSION": "1.0.27", | |
| 20123 | + "CARGO_PKG_VERSION": "1.0.26", | |
| 20113 | 20124 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 20114 | 20125 | "CARGO_PKG_VERSION_MINOR": "0", |
| 20115 | - "CARGO_PKG_VERSION_PATCH": "27", | |
| 20126 | + "CARGO_PKG_VERSION_PATCH": "26", | |
| 20116 | 20127 | "CARGO_PKG_VERSION_PRE": "", |
| 20117 | 20128 | "OUT_DIR": "$(location :ref-cast-1-build-script-run[out_dir])", |
| 20118 | 20129 | }, |
| @@ -20123,14 +20134,14 @@ cargo.rust_library( | ||
| 20123 | 20134 | |
| 20124 | 20135 | cargo.rust_binary( |
| 20125 | 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 | 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 | 20140 | edition = "2021", |
| 20130 | 20141 | env = { |
| 20131 | 20142 | "CARGO_BIN_NAME": "build-script-build", |
| 20132 | 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 | 20145 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 20135 | 20146 | "CARGO_PKG_DESCRIPTION": "Safely cast &T to &U where the struct U contains a single field of type T.", |
| 20136 | 20147 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -20138,10 +20149,10 @@ cargo.rust_binary( | ||
| 20138 | 20149 | "CARGO_PKG_README": "README.md", |
| 20139 | 20150 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast", |
| 20140 | 20151 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 20141 | - "CARGO_PKG_VERSION": "1.0.27", | |
| 20152 | + "CARGO_PKG_VERSION": "1.0.26", | |
| 20142 | 20153 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 20143 | 20154 | "CARGO_PKG_VERSION_MINOR": "0", |
| 20144 | - "CARGO_PKG_VERSION_PATCH": "27", | |
| 20155 | + "CARGO_PKG_VERSION_PATCH": "26", | |
| 20145 | 20156 | "CARGO_PKG_VERSION_PRE": "", |
| 20146 | 20157 | }, |
| 20147 | 20158 | visibility = [], |
| @@ -20160,30 +20171,31 @@ buildscript_run( | ||
| 20160 | 20171 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 20161 | 20172 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 20162 | 20173 | "CARGO_PKG_VERSION_MINOR": "0", |
| 20163 | - "CARGO_PKG_VERSION_PATCH": "27", | |
| 20174 | + "CARGO_PKG_VERSION_PATCH": "26", | |
| 20164 | 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 | 20181 | 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"], | |
| 20174 | 20186 | visibility = [], |
| 20175 | 20187 | ) |
| 20176 | 20188 | |
| 20177 | 20189 | cargo.rust_library( |
| 20178 | 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 | 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 | 20194 | edition = "2021", |
| 20183 | 20195 | env = { |
| 20184 | 20196 | "CARGO_BIN_NAME": "ref_cast_impl", |
| 20185 | 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 | 20199 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 20188 | 20200 | "CARGO_PKG_DESCRIPTION": "Derive implementation for ref_cast::RefCast.", |
| 20189 | 20201 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -20191,10 +20203,10 @@ cargo.rust_library( | ||
| 20191 | 20203 | "CARGO_PKG_README": "", |
| 20192 | 20204 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/ref-cast", |
| 20193 | 20205 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 20194 | - "CARGO_PKG_VERSION": "1.0.27", | |
| 20206 | + "CARGO_PKG_VERSION": "1.0.26", | |
| 20195 | 20207 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 20196 | 20208 | "CARGO_PKG_VERSION_MINOR": "0", |
| 20197 | - "CARGO_PKG_VERSION_PATCH": "27", | |
| 20209 | + "CARGO_PKG_VERSION_PATCH": "26", | |
| 20198 | 20210 | "CARGO_PKG_VERSION_PRE": "", |
| 20199 | 20211 | }, |
| 20200 | 20212 | proc_macro = True, |
| @@ -20266,23 +20278,23 @@ cargo.rust_library( | ||
| 20266 | 20278 | ) |
| 20267 | 20279 | |
| 20268 | 20280 | 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"], | |
| 20273 | 20285 | visibility = [], |
| 20274 | 20286 | ) |
| 20275 | 20287 | |
| 20276 | 20288 | cargo.rust_library( |
| 20277 | 20289 | name = "regex-automata-0.4", |
| 20278 | - srcs = [":regex-automata-0.4.18.crate"], | |
| 20290 | + srcs = [":regex-automata-0.4.16.crate"], | |
| 20279 | 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 | 20293 | edition = "2021", |
| 20282 | 20294 | env = { |
| 20283 | 20295 | "CARGO_BIN_NAME": "regex_automata", |
| 20284 | 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 | 20298 | "CARGO_PKG_AUTHORS": "The Rust Project Developers:Andrew Gallant <jamslam@gmail.com>", |
| 20287 | 20299 | "CARGO_PKG_DESCRIPTION": "Automata construction and matching using regular expressions.", |
| 20288 | 20300 | "CARGO_PKG_HOMEPAGE": "https://github.com/rust-lang/regex/tree/master/regex-automata", |
| @@ -20290,10 +20302,10 @@ cargo.rust_library( | ||
| 20290 | 20302 | "CARGO_PKG_README": "README.md", |
| 20291 | 20303 | "CARGO_PKG_REPOSITORY": "https://github.com/rust-lang/regex", |
| 20292 | 20304 | "CARGO_PKG_RUST_VERSION": "1.65", |
| 20293 | - "CARGO_PKG_VERSION": "0.4.18", | |
| 20305 | + "CARGO_PKG_VERSION": "0.4.16", | |
| 20294 | 20306 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 20295 | 20307 | "CARGO_PKG_VERSION_MINOR": "4", |
| 20296 | - "CARGO_PKG_VERSION_PATCH": "18", | |
| 20308 | + "CARGO_PKG_VERSION_PATCH": "16", | |
| 20297 | 20309 | "CARGO_PKG_VERSION_PRE": "", |
| 20298 | 20310 | }, |
| 20299 | 20311 | features = [ |
| @@ -21019,6 +21031,7 @@ buildscript_run( | ||
| 21019 | 21031 | "CARGO_PKG_VERSION_MINOR": "38", |
| 21020 | 21032 | "CARGO_PKG_VERSION_PATCH": "44", |
| 21021 | 21033 | "CARGO_PKG_VERSION_PRE": "", |
| 21034 | + "OPT_LEVEL": "2", | |
| 21022 | 21035 | }, |
| 21023 | 21036 | features = [ |
| 21024 | 21037 | "alloc", |
| @@ -21144,6 +21157,7 @@ buildscript_run( | ||
| 21144 | 21157 | "CARGO_PKG_VERSION_MINOR": "1", |
| 21145 | 21158 | "CARGO_PKG_VERSION_PATCH": "4", |
| 21146 | 21159 | "CARGO_PKG_VERSION_PRE": "", |
| 21160 | + "OPT_LEVEL": "2", | |
| 21147 | 21161 | }, |
| 21148 | 21162 | features = [ |
| 21149 | 21163 | "alloc", |
| @@ -21275,6 +21289,7 @@ buildscript_run( | ||
| 21275 | 21289 | "CARGO_PKG_VERSION_MINOR": "23", |
| 21276 | 21290 | "CARGO_PKG_VERSION_PATCH": "43", |
| 21277 | 21291 | "CARGO_PKG_VERSION_PRE": "", |
| 21292 | + "OPT_LEVEL": "2", | |
| 21278 | 21293 | }, |
| 21279 | 21294 | features = [ |
| 21280 | 21295 | "aws-lc-rs", |
| @@ -21558,23 +21573,23 @@ cargo.rust_library( | ||
| 21558 | 21573 | ) |
| 21559 | 21574 | |
| 21560 | 21575 | 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"], | |
| 21565 | 21580 | visibility = [], |
| 21566 | 21581 | ) |
| 21567 | 21582 | |
| 21568 | 21583 | cargo.rust_library( |
| 21569 | 21584 | name = "rustls-webpki-0.103", |
| 21570 | - srcs = [":rustls-webpki-0.103.15.crate"], | |
| 21585 | + srcs = [":rustls-webpki-0.103.13.crate"], | |
| 21571 | 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 | 21588 | edition = "2021", |
| 21574 | 21589 | env = { |
| 21575 | 21590 | "CARGO_BIN_NAME": "webpki", |
| 21576 | 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 | 21593 | "CARGO_PKG_AUTHORS": "", |
| 21579 | 21594 | "CARGO_PKG_DESCRIPTION": "Web PKI X.509 Certificate Verification.", |
| 21580 | 21595 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -21582,10 +21597,10 @@ cargo.rust_library( | ||
| 21582 | 21597 | "CARGO_PKG_README": "README.md", |
| 21583 | 21598 | "CARGO_PKG_REPOSITORY": "https://github.com/rustls/webpki", |
| 21584 | 21599 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 21585 | - "CARGO_PKG_VERSION": "0.103.15", | |
| 21600 | + "CARGO_PKG_VERSION": "0.103.13", | |
| 21586 | 21601 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 21587 | 21602 | "CARGO_PKG_VERSION_MINOR": "103", |
| 21588 | - "CARGO_PKG_VERSION_PATCH": "15", | |
| 21603 | + "CARGO_PKG_VERSION_PATCH": "13", | |
| 21589 | 21604 | "CARGO_PKG_VERSION_PRE": "", |
| 21590 | 21605 | }, |
| 21591 | 21606 | features = [ |
| @@ -21682,6 +21697,7 @@ buildscript_run( | ||
| 21682 | 21697 | "CARGO_PKG_VERSION_MINOR": "0", |
| 21683 | 21698 | "CARGO_PKG_VERSION_PATCH": "23", |
| 21684 | 21699 | "CARGO_PKG_VERSION_PRE": "", |
| 21700 | + "OPT_LEVEL": "2", | |
| 21685 | 21701 | }, |
| 21686 | 21702 | version = "1.0.23", |
| 21687 | 21703 | ) |
| @@ -21809,6 +21825,7 @@ buildscript_run( | ||
| 21809 | 21825 | "CARGO_PKG_VERSION_MINOR": "1", |
| 21810 | 21826 | "CARGO_PKG_VERSION_PATCH": "0", |
| 21811 | 21827 | "CARGO_PKG_VERSION_PRE": "", |
| 21828 | + "OPT_LEVEL": "2", | |
| 21812 | 21829 | }, |
| 21813 | 21830 | features = [ |
| 21814 | 21831 | "camera-apple", |
| @@ -21916,6 +21933,7 @@ buildscript_run( | ||
| 21916 | 21933 | "CARGO_PKG_VERSION_MINOR": "1", |
| 21917 | 21934 | "CARGO_PKG_VERSION_PATCH": "0", |
| 21918 | 21935 | "CARGO_PKG_VERSION_PRE": "", |
| 21936 | + "OPT_LEVEL": "2", | |
| 21919 | 21937 | }, |
| 21920 | 21938 | features = [ |
| 21921 | 21939 | "h264", |
| @@ -21961,23 +21979,23 @@ cargo.rust_library( | ||
| 21961 | 21979 | ) |
| 21962 | 21980 | |
| 21963 | 21981 | 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"], | |
| 21968 | 21986 | visibility = [], |
| 21969 | 21987 | ) |
| 21970 | 21988 | |
| 21971 | 21989 | cargo.rust_library( |
| 21972 | 21990 | name = "safe_arch-1", |
| 21973 | - srcs = [":safe_arch-1.2.0.crate"], | |
| 21991 | + srcs = [":safe_arch-1.1.0.crate"], | |
| 21974 | 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 | 21994 | edition = "2024", |
| 21977 | 21995 | env = { |
| 21978 | 21996 | "CARGO_BIN_NAME": "safe_arch", |
| 21979 | 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 | 21999 | "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>", |
| 21982 | 22000 | "CARGO_PKG_DESCRIPTION": "Crate that exposes `core::arch` safely via `#[cfg()]`.", |
| 21983 | 22001 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -21985,9 +22003,9 @@ cargo.rust_library( | ||
| 21985 | 22003 | "CARGO_PKG_README": "README.md", |
| 21986 | 22004 | "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/safe_arch", |
| 21987 | 22005 | "CARGO_PKG_RUST_VERSION": "1.89", |
| 21988 | - "CARGO_PKG_VERSION": "1.2.0", | |
| 22006 | + "CARGO_PKG_VERSION": "1.1.0", | |
| 21989 | 22007 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 21990 | - "CARGO_PKG_VERSION_MINOR": "2", | |
| 22008 | + "CARGO_PKG_VERSION_MINOR": "1", | |
| 21991 | 22009 | "CARGO_PKG_VERSION_PATCH": "0", |
| 21992 | 22010 | "CARGO_PKG_VERSION_PRE": "", |
| 21993 | 22011 | }, |
| @@ -22266,7 +22284,14 @@ cargo.rust_library( | ||
| 22266 | 22284 | "CARGO_PKG_VERSION_PATCH": "1", |
| 22267 | 22285 | "CARGO_PKG_VERSION_PRE": "", |
| 22268 | 22286 | }, |
| 22287 | + features = [ | |
| 22288 | + "default", | |
| 22289 | + "fast-barrier", | |
| 22290 | + "libc", | |
| 22291 | + "windows-sys", | |
| 22292 | + ], | |
| 22269 | 22293 | visibility = [], |
| 22294 | + deps = [":libc-0.2"], | |
| 22270 | 22295 | ) |
| 22271 | 22296 | |
| 22272 | 22297 | http_archive( |
| @@ -22438,6 +22463,7 @@ buildscript_run( | ||
| 22438 | 22463 | "CARGO_PKG_VERSION_MINOR": "0", |
| 22439 | 22464 | "CARGO_PKG_VERSION_PATCH": "229", |
| 22440 | 22465 | "CARGO_PKG_VERSION_PRE": "", |
| 22466 | + "OPT_LEVEL": "2", | |
| 22441 | 22467 | }, |
| 22442 | 22468 | features = [ |
| 22443 | 22469 | "alloc", |
| @@ -22613,6 +22639,7 @@ buildscript_run( | ||
| 22613 | 22639 | "CARGO_PKG_VERSION_MINOR": "0", |
| 22614 | 22640 | "CARGO_PKG_VERSION_PATCH": "229", |
| 22615 | 22641 | "CARGO_PKG_VERSION_PRE": "", |
| 22642 | + "OPT_LEVEL": "2", | |
| 22616 | 22643 | }, |
| 22617 | 22644 | features = [ |
| 22618 | 22645 | "alloc", |
| @@ -22757,6 +22784,7 @@ buildscript_run( | ||
| 22757 | 22784 | "CARGO_PKG_VERSION_MINOR": "0", |
| 22758 | 22785 | "CARGO_PKG_VERSION_PATCH": "151", |
| 22759 | 22786 | "CARGO_PKG_VERSION_PRE": "", |
| 22787 | + "OPT_LEVEL": "2", | |
| 22760 | 22788 | }, |
| 22761 | 22789 | features = [ |
| 22762 | 22790 | "alloc", |
| @@ -22807,23 +22835,23 @@ cargo.rust_library( | ||
| 22807 | 22835 | ) |
| 22808 | 22836 | |
| 22809 | 22837 | 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"], | |
| 22814 | 22842 | visibility = [], |
| 22815 | 22843 | ) |
| 22816 | 22844 | |
| 22817 | 22845 | cargo.rust_library( |
| 22818 | 22846 | name = "serde_with-3", |
| 22819 | - srcs = [":serde_with-3.22.0.crate"], | |
| 22847 | + srcs = [":serde_with-3.21.0.crate"], | |
| 22820 | 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 | 22850 | edition = "2021", |
| 22823 | 22851 | env = { |
| 22824 | 22852 | "CARGO_BIN_NAME": "serde_with", |
| 22825 | 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 | 22855 | "CARGO_PKG_AUTHORS": "Jonas Bushart:Marcin Kaźmierczak", |
| 22828 | 22856 | "CARGO_PKG_DESCRIPTION": "Custom de/serialization functions for Rust's serde", |
| 22829 | 22857 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -22831,9 +22859,9 @@ cargo.rust_library( | ||
| 22831 | 22859 | "CARGO_PKG_README": "README.md", |
| 22832 | 22860 | "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/", |
| 22833 | 22861 | "CARGO_PKG_RUST_VERSION": "1.88", |
| 22834 | - "CARGO_PKG_VERSION": "3.22.0", | |
| 22862 | + "CARGO_PKG_VERSION": "3.21.0", | |
| 22835 | 22863 | "CARGO_PKG_VERSION_MAJOR": "3", |
| 22836 | - "CARGO_PKG_VERSION_MINOR": "22", | |
| 22864 | + "CARGO_PKG_VERSION_MINOR": "21", | |
| 22837 | 22865 | "CARGO_PKG_VERSION_PATCH": "0", |
| 22838 | 22866 | "CARGO_PKG_VERSION_PRE": "", |
| 22839 | 22867 | }, |
| @@ -22853,23 +22881,23 @@ cargo.rust_library( | ||
| 22853 | 22881 | ) |
| 22854 | 22882 | |
| 22855 | 22883 | 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"], | |
| 22860 | 22888 | visibility = [], |
| 22861 | 22889 | ) |
| 22862 | 22890 | |
| 22863 | 22891 | cargo.rust_library( |
| 22864 | 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 | 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 | 22896 | edition = "2021", |
| 22869 | 22897 | env = { |
| 22870 | 22898 | "CARGO_BIN_NAME": "serde_with_macros", |
| 22871 | 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 | 22901 | "CARGO_PKG_AUTHORS": "Jonas Bushart", |
| 22874 | 22902 | "CARGO_PKG_DESCRIPTION": "proc-macro library for serde_with", |
| 22875 | 22903 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -22877,9 +22905,9 @@ cargo.rust_library( | ||
| 22877 | 22905 | "CARGO_PKG_README": "README.md", |
| 22878 | 22906 | "CARGO_PKG_REPOSITORY": "https://github.com/jonasbb/serde_with/", |
| 22879 | 22907 | "CARGO_PKG_RUST_VERSION": "1.88", |
| 22880 | - "CARGO_PKG_VERSION": "3.22.0", | |
| 22908 | + "CARGO_PKG_VERSION": "3.21.0", | |
| 22881 | 22909 | "CARGO_PKG_VERSION_MAJOR": "3", |
| 22882 | - "CARGO_PKG_VERSION_MINOR": "22", | |
| 22910 | + "CARGO_PKG_VERSION_MINOR": "21", | |
| 22883 | 22911 | "CARGO_PKG_VERSION_PATCH": "0", |
| 22884 | 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 | 22924 | http_archive( |
| 22935 | 22925 | name = "sfv-0.14.0.crate", |
| 22936 | 22926 | sha256 = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87", |
| @@ -23245,23 +23235,23 @@ cargo.rust_library( | ||
| 23245 | 23235 | ) |
| 23246 | 23236 | |
| 23247 | 23237 | 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"], | |
| 23252 | 23242 | visibility = [], |
| 23253 | 23243 | ) |
| 23254 | 23244 | |
| 23255 | 23245 | cargo.rust_library( |
| 23256 | 23246 | name = "signature-3", |
| 23257 | - srcs = [":signature-3.0.0.crate"], | |
| 23247 | + srcs = [":signature-3.0.0-rc.10.crate"], | |
| 23258 | 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 | 23250 | edition = "2024", |
| 23261 | 23251 | env = { |
| 23262 | 23252 | "CARGO_BIN_NAME": "signature", |
| 23263 | 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 | 23255 | "CARGO_PKG_AUTHORS": "RustCrypto Developers", |
| 23266 | 23256 | "CARGO_PKG_DESCRIPTION": "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)", |
| 23267 | 23257 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -23269,11 +23259,11 @@ cargo.rust_library( | ||
| 23269 | 23259 | "CARGO_PKG_README": "README.md", |
| 23270 | 23260 | "CARGO_PKG_REPOSITORY": "https://github.com/RustCrypto/traits", |
| 23271 | 23261 | "CARGO_PKG_RUST_VERSION": "1.85", |
| 23272 | - "CARGO_PKG_VERSION": "3.0.0", | |
| 23262 | + "CARGO_PKG_VERSION": "3.0.0-rc.10", | |
| 23273 | 23263 | "CARGO_PKG_VERSION_MAJOR": "3", |
| 23274 | 23264 | "CARGO_PKG_VERSION_MINOR": "0", |
| 23275 | 23265 | "CARGO_PKG_VERSION_PATCH": "0", |
| 23276 | - "CARGO_PKG_VERSION_PRE": "", | |
| 23266 | + "CARGO_PKG_VERSION_PRE": "rc.10", | |
| 23277 | 23267 | }, |
| 23278 | 23268 | features = ["alloc"], |
| 23279 | 23269 | visibility = [], |
| @@ -23614,6 +23604,7 @@ buildscript_run( | ||
| 23614 | 23604 | "CARGO_PKG_VERSION_MINOR": "19", |
| 23615 | 23605 | "CARGO_PKG_VERSION_PATCH": "2", |
| 23616 | 23606 | "CARGO_PKG_VERSION_PRE": "", |
| 23607 | + "OPT_LEVEL": "2", | |
| 23617 | 23608 | }, |
| 23618 | 23609 | features = [ |
| 23619 | 23610 | "calloop", |
| @@ -23728,6 +23719,7 @@ buildscript_run( | ||
| 23728 | 23719 | "CARGO_PKG_VERSION_MINOR": "20", |
| 23729 | 23720 | "CARGO_PKG_VERSION_PATCH": "0", |
| 23730 | 23721 | "CARGO_PKG_VERSION_PRE": "", |
| 23722 | + "OPT_LEVEL": "2", | |
| 23731 | 23723 | }, |
| 23732 | 23724 | features = [ |
| 23733 | 23725 | "calloop", |
| @@ -24877,23 +24869,23 @@ cargo.rust_library( | ||
| 24877 | 24869 | ) |
| 24878 | 24870 | |
| 24879 | 24871 | 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"], | |
| 24884 | 24876 | visibility = [], |
| 24885 | 24877 | ) |
| 24886 | 24878 | |
| 24887 | 24879 | cargo.rust_library( |
| 24888 | 24880 | name = "syn-3", |
| 24889 | - srcs = [":syn-3.0.4.crate"], | |
| 24881 | + srcs = [":syn-3.0.3.crate"], | |
| 24890 | 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 | 24884 | edition = "2021", |
| 24893 | 24885 | env = { |
| 24894 | 24886 | "CARGO_BIN_NAME": "syn", |
| 24895 | 24887 | "CARGO_CRATE_NAME": "syn", |
| 24896 | - "CARGO_MANIFEST_DIR": "syn-3.0.4.crate", | |
| 24888 | + "CARGO_MANIFEST_DIR": "syn-3.0.3.crate", | |
| 24897 | 24889 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 24898 | 24890 | "CARGO_PKG_DESCRIPTION": "Parser for Rust source code", |
| 24899 | 24891 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -24901,17 +24893,16 @@ cargo.rust_library( | ||
| 24901 | 24893 | "CARGO_PKG_README": "README.md", |
| 24902 | 24894 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/syn", |
| 24903 | 24895 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 24904 | - "CARGO_PKG_VERSION": "3.0.4", | |
| 24896 | + "CARGO_PKG_VERSION": "3.0.3", | |
| 24905 | 24897 | "CARGO_PKG_VERSION_MAJOR": "3", |
| 24906 | 24898 | "CARGO_PKG_VERSION_MINOR": "0", |
| 24907 | - "CARGO_PKG_VERSION_PATCH": "4", | |
| 24899 | + "CARGO_PKG_VERSION_PATCH": "3", | |
| 24908 | 24900 | "CARGO_PKG_VERSION_PRE": "", |
| 24909 | 24901 | }, |
| 24910 | 24902 | features = [ |
| 24911 | 24903 | "clone-impls", |
| 24912 | 24904 | "default", |
| 24913 | 24905 | "derive", |
| 24914 | - "extra-traits", | |
| 24915 | 24906 | "full", |
| 24916 | 24907 | "parsing", |
| 24917 | 24908 | "printing", |
| @@ -25120,28 +25111,29 @@ buildscript_run( | ||
| 25120 | 25111 | "CARGO_PKG_VERSION_MINOR": "0", |
| 25121 | 25112 | "CARGO_PKG_VERSION_PATCH": "69", |
| 25122 | 25113 | "CARGO_PKG_VERSION_PRE": "", |
| 25114 | + "OPT_LEVEL": "2", | |
| 25123 | 25115 | }, |
| 25124 | 25116 | version = "1.0.69", |
| 25125 | 25117 | ) |
| 25126 | 25118 | |
| 25127 | 25119 | 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"], | |
| 25132 | 25124 | visibility = [], |
| 25133 | 25125 | ) |
| 25134 | 25126 | |
| 25135 | 25127 | cargo.rust_library( |
| 25136 | 25128 | name = "thiserror-2", |
| 25137 | - srcs = [":thiserror-2.0.20.crate"], | |
| 25129 | + srcs = [":thiserror-2.0.19.crate"], | |
| 25138 | 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 | 25132 | edition = "2021", |
| 25141 | 25133 | env = { |
| 25142 | 25134 | "CARGO_BIN_NAME": "thiserror", |
| 25143 | 25135 | "CARGO_CRATE_NAME": "thiserror", |
| 25144 | - "CARGO_MANIFEST_DIR": "thiserror-2.0.20.crate", | |
| 25136 | + "CARGO_MANIFEST_DIR": "thiserror-2.0.19.crate", | |
| 25145 | 25137 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 25146 | 25138 | "CARGO_PKG_DESCRIPTION": "derive(Error)", |
| 25147 | 25139 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -25149,10 +25141,10 @@ cargo.rust_library( | ||
| 25149 | 25141 | "CARGO_PKG_README": "README.md", |
| 25150 | 25142 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror", |
| 25151 | 25143 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 25152 | - "CARGO_PKG_VERSION": "2.0.20", | |
| 25144 | + "CARGO_PKG_VERSION": "2.0.19", | |
| 25153 | 25145 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 25154 | 25146 | "CARGO_PKG_VERSION_MINOR": "0", |
| 25155 | - "CARGO_PKG_VERSION_PATCH": "20", | |
| 25147 | + "CARGO_PKG_VERSION_PATCH": "19", | |
| 25156 | 25148 | "CARGO_PKG_VERSION_PRE": "", |
| 25157 | 25149 | "OUT_DIR": "$(location :thiserror-2-build-script-run[out_dir])", |
| 25158 | 25150 | }, |
| @@ -25167,14 +25159,14 @@ cargo.rust_library( | ||
| 25167 | 25159 | |
| 25168 | 25160 | cargo.rust_binary( |
| 25169 | 25161 | name = "thiserror-2-build-script-build", |
| 25170 | - srcs = [":thiserror-2.0.20.crate"], | |
| 25162 | + srcs = [":thiserror-2.0.19.crate"], | |
| 25171 | 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 | 25165 | edition = "2021", |
| 25174 | 25166 | env = { |
| 25175 | 25167 | "CARGO_BIN_NAME": "build-script-build", |
| 25176 | 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 | 25170 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 25179 | 25171 | "CARGO_PKG_DESCRIPTION": "derive(Error)", |
| 25180 | 25172 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -25182,10 +25174,10 @@ cargo.rust_binary( | ||
| 25182 | 25174 | "CARGO_PKG_README": "README.md", |
| 25183 | 25175 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror", |
| 25184 | 25176 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 25185 | - "CARGO_PKG_VERSION": "2.0.20", | |
| 25177 | + "CARGO_PKG_VERSION": "2.0.19", | |
| 25186 | 25178 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 25187 | 25179 | "CARGO_PKG_VERSION_MINOR": "0", |
| 25188 | - "CARGO_PKG_VERSION_PATCH": "20", | |
| 25180 | + "CARGO_PKG_VERSION_PATCH": "19", | |
| 25189 | 25181 | "CARGO_PKG_VERSION_PRE": "", |
| 25190 | 25182 | }, |
| 25191 | 25183 | features = [ |
| @@ -25208,14 +25200,15 @@ buildscript_run( | ||
| 25208 | 25200 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 25209 | 25201 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 25210 | 25202 | "CARGO_PKG_VERSION_MINOR": "0", |
| 25211 | - "CARGO_PKG_VERSION_PATCH": "20", | |
| 25203 | + "CARGO_PKG_VERSION_PATCH": "19", | |
| 25212 | 25204 | "CARGO_PKG_VERSION_PRE": "", |
| 25205 | + "OPT_LEVEL": "2", | |
| 25213 | 25206 | }, |
| 25214 | 25207 | features = [ |
| 25215 | 25208 | "default", |
| 25216 | 25209 | "std", |
| 25217 | 25210 | ], |
| 25218 | - version = "2.0.20", | |
| 25211 | + version = "2.0.19", | |
| 25219 | 25212 | ) |
| 25220 | 25213 | |
| 25221 | 25214 | http_archive( |
| @@ -25259,23 +25252,23 @@ cargo.rust_library( | ||
| 25259 | 25252 | ) |
| 25260 | 25253 | |
| 25261 | 25254 | 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"], | |
| 25266 | 25259 | visibility = [], |
| 25267 | 25260 | ) |
| 25268 | 25261 | |
| 25269 | 25262 | cargo.rust_library( |
| 25270 | 25263 | name = "thiserror-impl-2", |
| 25271 | - srcs = [":thiserror-impl-2.0.20.crate"], | |
| 25264 | + srcs = [":thiserror-impl-2.0.19.crate"], | |
| 25272 | 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 | 25267 | edition = "2021", |
| 25275 | 25268 | env = { |
| 25276 | 25269 | "CARGO_BIN_NAME": "thiserror_impl", |
| 25277 | 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 | 25272 | "CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>", |
| 25280 | 25273 | "CARGO_PKG_DESCRIPTION": "Implementation detail of the `thiserror` crate", |
| 25281 | 25274 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -25283,10 +25276,10 @@ cargo.rust_library( | ||
| 25283 | 25276 | "CARGO_PKG_README": "", |
| 25284 | 25277 | "CARGO_PKG_REPOSITORY": "https://github.com/dtolnay/thiserror", |
| 25285 | 25278 | "CARGO_PKG_RUST_VERSION": "1.71", |
| 25286 | - "CARGO_PKG_VERSION": "2.0.20", | |
| 25279 | + "CARGO_PKG_VERSION": "2.0.19", | |
| 25287 | 25280 | "CARGO_PKG_VERSION_MAJOR": "2", |
| 25288 | 25281 | "CARGO_PKG_VERSION_MINOR": "0", |
| 25289 | - "CARGO_PKG_VERSION_PATCH": "20", | |
| 25282 | + "CARGO_PKG_VERSION_PATCH": "19", | |
| 25290 | 25283 | "CARGO_PKG_VERSION_PRE": "", |
| 25291 | 25284 | }, |
| 25292 | 25285 | proc_macro = True, |
| @@ -25424,23 +25417,23 @@ cargo.rust_library( | ||
| 25424 | 25417 | ) |
| 25425 | 25418 | |
| 25426 | 25419 | 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"], | |
| 25431 | 25424 | visibility = [], |
| 25432 | 25425 | ) |
| 25433 | 25426 | |
| 25434 | 25427 | cargo.rust_library( |
| 25435 | 25428 | name = "time-0.3", |
| 25436 | - srcs = [":time-0.3.55.crate"], | |
| 25429 | + srcs = [":time-0.3.54.crate"], | |
| 25437 | 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 | 25432 | edition = "2024", |
| 25440 | 25433 | env = { |
| 25441 | 25434 | "CARGO_BIN_NAME": "time", |
| 25442 | 25435 | "CARGO_CRATE_NAME": "time", |
| 25443 | - "CARGO_MANIFEST_DIR": "time-0.3.55.crate", | |
| 25436 | + "CARGO_MANIFEST_DIR": "time-0.3.54.crate", | |
| 25444 | 25437 | "CARGO_PKG_AUTHORS": "Jacob Pratt <open-source@jhpratt.dev>:Time contributors", |
| 25445 | 25438 | "CARGO_PKG_DESCRIPTION": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].", |
| 25446 | 25439 | "CARGO_PKG_HOMEPAGE": "https://time-rs.github.io", |
| @@ -25448,10 +25441,10 @@ cargo.rust_library( | ||
| 25448 | 25441 | "CARGO_PKG_README": "README.md", |
| 25449 | 25442 | "CARGO_PKG_REPOSITORY": "https://github.com/time-rs/time", |
| 25450 | 25443 | "CARGO_PKG_RUST_VERSION": "1.88.0", |
| 25451 | - "CARGO_PKG_VERSION": "0.3.55", | |
| 25444 | + "CARGO_PKG_VERSION": "0.3.54", | |
| 25452 | 25445 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 25453 | 25446 | "CARGO_PKG_VERSION_MINOR": "3", |
| 25454 | - "CARGO_PKG_VERSION_PATCH": "55", | |
| 25447 | + "CARGO_PKG_VERSION_PATCH": "54", | |
| 25455 | 25448 | "CARGO_PKG_VERSION_PRE": "", |
| 25456 | 25449 | }, |
| 25457 | 25450 | features = [ |
| @@ -25597,23 +25590,23 @@ cargo.rust_library( | ||
| 25597 | 25590 | ) |
| 25598 | 25591 | |
| 25599 | 25592 | 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"], | |
| 25604 | 25597 | visibility = [], |
| 25605 | 25598 | ) |
| 25606 | 25599 | |
| 25607 | 25600 | cargo.rust_library( |
| 25608 | 25601 | name = "tinystr-0.8", |
| 25609 | - srcs = [":tinystr-0.8.4.crate"], | |
| 25602 | + srcs = [":tinystr-0.8.3.crate"], | |
| 25610 | 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 | 25605 | edition = "2021", |
| 25613 | 25606 | env = { |
| 25614 | 25607 | "CARGO_BIN_NAME": "tinystr", |
| 25615 | 25608 | "CARGO_CRATE_NAME": "tinystr", |
| 25616 | - "CARGO_MANIFEST_DIR": "tinystr-0.8.4.crate", | |
| 25609 | + "CARGO_MANIFEST_DIR": "tinystr-0.8.3.crate", | |
| 25617 | 25610 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 25618 | 25611 | "CARGO_PKG_DESCRIPTION": "A small ASCII-only bounded length string representation.", |
| 25619 | 25612 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -25621,10 +25614,10 @@ cargo.rust_library( | ||
| 25621 | 25614 | "CARGO_PKG_README": "README.md", |
| 25622 | 25615 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 25623 | 25616 | "CARGO_PKG_RUST_VERSION": "1.82", |
| 25624 | - "CARGO_PKG_VERSION": "0.8.4", | |
| 25617 | + "CARGO_PKG_VERSION": "0.8.3", | |
| 25625 | 25618 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 25626 | 25619 | "CARGO_PKG_VERSION_MINOR": "8", |
| 25627 | - "CARGO_PKG_VERSION_PATCH": "4", | |
| 25620 | + "CARGO_PKG_VERSION_PATCH": "3", | |
| 25628 | 25621 | "CARGO_PKG_VERSION_PRE": "", |
| 25629 | 25622 | }, |
| 25630 | 25623 | features = ["zerovec"], |
| @@ -27292,23 +27285,23 @@ cargo.rust_library( | ||
| 27292 | 27285 | ) |
| 27293 | 27286 | |
| 27294 | 27287 | 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"], | |
| 27299 | 27292 | visibility = [], |
| 27300 | 27293 | ) |
| 27301 | 27294 | |
| 27302 | 27295 | cargo.rust_library( |
| 27303 | 27296 | name = "uuid-1", |
| 27304 | - srcs = [":uuid-1.26.0.crate"], | |
| 27297 | + srcs = [":uuid-1.24.0.crate"], | |
| 27305 | 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 | 27300 | edition = "2021", |
| 27308 | 27301 | env = { |
| 27309 | 27302 | "CARGO_BIN_NAME": "uuid", |
| 27310 | 27303 | "CARGO_CRATE_NAME": "uuid", |
| 27311 | - "CARGO_MANIFEST_DIR": "uuid-1.26.0.crate", | |
| 27304 | + "CARGO_MANIFEST_DIR": "uuid-1.24.0.crate", | |
| 27312 | 27305 | "CARGO_PKG_AUTHORS": "Ashley Mannix<ashleymannix@live.com.au>:Dylan DPC<dylan.dpc@gmail.com>:Hunar Roop Kahlon<hunar.roop@gmail.com>", |
| 27313 | 27306 | "CARGO_PKG_DESCRIPTION": "A library to generate and parse UUIDs.", |
| 27314 | 27307 | "CARGO_PKG_HOMEPAGE": "https://github.com/uuid-rs/uuid", |
| @@ -27316,9 +27309,9 @@ cargo.rust_library( | ||
| 27316 | 27309 | "CARGO_PKG_README": "README.md", |
| 27317 | 27310 | "CARGO_PKG_REPOSITORY": "https://github.com/uuid-rs/uuid", |
| 27318 | 27311 | "CARGO_PKG_RUST_VERSION": "1.85.0", |
| 27319 | - "CARGO_PKG_VERSION": "1.26.0", | |
| 27312 | + "CARGO_PKG_VERSION": "1.24.0", | |
| 27320 | 27313 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 27321 | - "CARGO_PKG_VERSION_MINOR": "26", | |
| 27314 | + "CARGO_PKG_VERSION_MINOR": "24", | |
| 27322 | 27315 | "CARGO_PKG_VERSION_PATCH": "0", |
| 27323 | 27316 | "CARGO_PKG_VERSION_PRE": "", |
| 27324 | 27317 | }, |
| @@ -27425,6 +27418,7 @@ buildscript_run( | ||
| 27425 | 27418 | "CARGO_PKG_VERSION_MINOR": "0", |
| 27426 | 27419 | "CARGO_PKG_VERSION_PATCH": "7", |
| 27427 | 27420 | "CARGO_PKG_VERSION_PRE": "", |
| 27421 | + "OPT_LEVEL": "2", | |
| 27428 | 27422 | }, |
| 27429 | 27423 | version = "0.0.7", |
| 27430 | 27424 | ) |
| @@ -27512,6 +27506,7 @@ buildscript_run( | ||
| 27512 | 27506 | "CARGO_PKG_VERSION_MINOR": "1", |
| 27513 | 27507 | "CARGO_PKG_VERSION_PATCH": "0", |
| 27514 | 27508 | "CARGO_PKG_VERSION_PRE": "", |
| 27509 | + "OPT_LEVEL": "2", | |
| 27515 | 27510 | }, |
| 27516 | 27511 | version = "9.1.0", |
| 27517 | 27512 | ) |
| @@ -27603,6 +27598,7 @@ buildscript_run( | ||
| 27603 | 27598 | "CARGO_PKG_VERSION_MINOR": "0", |
| 27604 | 27599 | "CARGO_PKG_VERSION_PATCH": "8", |
| 27605 | 27600 | "CARGO_PKG_VERSION_PRE": "", |
| 27601 | + "OPT_LEVEL": "2", | |
| 27606 | 27602 | }, |
| 27607 | 27603 | features = ["default"], |
| 27608 | 27604 | version = "1.0.8", |
| @@ -27698,6 +27694,7 @@ buildscript_run( | ||
| 27698 | 27694 | "CARGO_PKG_VERSION_MINOR": "1", |
| 27699 | 27695 | "CARGO_PKG_VERSION_PATCH": "6", |
| 27700 | 27696 | "CARGO_PKG_VERSION_PRE": "", |
| 27697 | + "OPT_LEVEL": "2", | |
| 27701 | 27698 | }, |
| 27702 | 27699 | features = [ |
| 27703 | 27700 | "default", |
| @@ -27790,6 +27787,7 @@ buildscript_run( | ||
| 27790 | 27787 | "CARGO_PKG_VERSION_MINOR": "1", |
| 27791 | 27788 | "CARGO_PKG_VERSION_PATCH": "0", |
| 27792 | 27789 | "CARGO_PKG_VERSION_PRE": "", |
| 27790 | + "OPT_LEVEL": "2", | |
| 27793 | 27791 | }, |
| 27794 | 27792 | features = ["default"], |
| 27795 | 27793 | version = "9.1.0", |
| @@ -28038,6 +28036,7 @@ buildscript_run( | ||
| 28038 | 28036 | "CARGO_PKG_VERSION_MINOR": "3", |
| 28039 | 28037 | "CARGO_PKG_VERSION_PATCH": "17", |
| 28040 | 28038 | "CARGO_PKG_VERSION_PRE": "", |
| 28039 | + "OPT_LEVEL": "2", | |
| 28041 | 28040 | }, |
| 28042 | 28041 | features = [ |
| 28043 | 28042 | "client_system", |
| @@ -28129,6 +28128,7 @@ buildscript_run( | ||
| 28129 | 28128 | "CARGO_PKG_VERSION_MINOR": "31", |
| 28130 | 28129 | "CARGO_PKG_VERSION_PATCH": "15", |
| 28131 | 28130 | "CARGO_PKG_VERSION_PRE": "", |
| 28131 | + "OPT_LEVEL": "2", | |
| 28132 | 28132 | }, |
| 28133 | 28133 | version = "0.31.15", |
| 28134 | 28134 | ) |
| @@ -28572,6 +28572,7 @@ buildscript_run( | ||
| 28572 | 28572 | "CARGO_PKG_VERSION_MINOR": "31", |
| 28573 | 28573 | "CARGO_PKG_VERSION_PATCH": "11", |
| 28574 | 28574 | "CARGO_PKG_VERSION_PRE": "", |
| 28575 | + "OPT_LEVEL": "2", | |
| 28575 | 28576 | }, |
| 28576 | 28577 | features = [ |
| 28577 | 28578 | "client", |
| @@ -28935,23 +28936,23 @@ cargo.rust_library( | ||
| 28935 | 28936 | ) |
| 28936 | 28937 | |
| 28937 | 28938 | 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"], | |
| 28942 | 28943 | visibility = [], |
| 28943 | 28944 | ) |
| 28944 | 28945 | |
| 28945 | 28946 | cargo.rust_library( |
| 28946 | 28947 | name = "wide-1", |
| 28947 | - srcs = [":wide-1.7.0.crate"], | |
| 28948 | + srcs = [":wide-1.5.0.crate"], | |
| 28948 | 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 | 28951 | edition = "2024", |
| 28951 | 28952 | env = { |
| 28952 | 28953 | "CARGO_BIN_NAME": "wide", |
| 28953 | 28954 | "CARGO_CRATE_NAME": "wide", |
| 28954 | - "CARGO_MANIFEST_DIR": "wide-1.7.0.crate", | |
| 28955 | + "CARGO_MANIFEST_DIR": "wide-1.5.0.crate", | |
| 28955 | 28956 | "CARGO_PKG_AUTHORS": "Lokathor <zefria@gmail.com>", |
| 28956 | 28957 | "CARGO_PKG_DESCRIPTION": "A crate to help you go wide.", |
| 28957 | 28958 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -28959,9 +28960,9 @@ cargo.rust_library( | ||
| 28959 | 28960 | "CARGO_PKG_README": "README.md", |
| 28960 | 28961 | "CARGO_PKG_REPOSITORY": "https://github.com/Lokathor/wide", |
| 28961 | 28962 | "CARGO_PKG_RUST_VERSION": "1.89", |
| 28962 | - "CARGO_PKG_VERSION": "1.7.0", | |
| 28963 | + "CARGO_PKG_VERSION": "1.5.0", | |
| 28963 | 28964 | "CARGO_PKG_VERSION_MAJOR": "1", |
| 28964 | - "CARGO_PKG_VERSION_MINOR": "7", | |
| 28965 | + "CARGO_PKG_VERSION_MINOR": "5", | |
| 28965 | 28966 | "CARGO_PKG_VERSION_PATCH": "0", |
| 28966 | 28967 | "CARGO_PKG_VERSION_PRE": "", |
| 28967 | 28968 | }, |
| @@ -29216,6 +29217,7 @@ buildscript_run( | ||
| 29216 | 29217 | "CARGO_PKG_VERSION_MINOR": "30", |
| 29217 | 29218 | "CARGO_PKG_VERSION_PATCH": "13", |
| 29218 | 29219 | "CARGO_PKG_VERSION_PRE": "", |
| 29220 | + "OPT_LEVEL": "2", | |
| 29219 | 29221 | }, |
| 29220 | 29222 | features = [ |
| 29221 | 29223 | "ahash", |
| @@ -29283,23 +29285,23 @@ cargo.rust_library( | ||
| 29283 | 29285 | ) |
| 29284 | 29286 | |
| 29285 | 29287 | 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"], | |
| 29290 | 29292 | visibility = [], |
| 29291 | 29293 | ) |
| 29292 | 29294 | |
| 29293 | 29295 | cargo.rust_library( |
| 29294 | 29296 | name = "writeable-0.6", |
| 29295 | - srcs = [":writeable-0.6.4.crate"], | |
| 29297 | + srcs = [":writeable-0.6.3.crate"], | |
| 29296 | 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 | 29300 | edition = "2021", |
| 29299 | 29301 | env = { |
| 29300 | 29302 | "CARGO_BIN_NAME": "writeable", |
| 29301 | 29303 | "CARGO_CRATE_NAME": "writeable", |
| 29302 | - "CARGO_MANIFEST_DIR": "writeable-0.6.4.crate", | |
| 29304 | + "CARGO_MANIFEST_DIR": "writeable-0.6.3.crate", | |
| 29303 | 29305 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 29304 | 29306 | "CARGO_PKG_DESCRIPTION": "A more efficient alternative to fmt::Display", |
| 29305 | 29307 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -29307,10 +29309,10 @@ cargo.rust_library( | ||
| 29307 | 29309 | "CARGO_PKG_README": "README.md", |
| 29308 | 29310 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 29309 | 29311 | "CARGO_PKG_RUST_VERSION": "1.82", |
| 29310 | - "CARGO_PKG_VERSION": "0.6.4", | |
| 29312 | + "CARGO_PKG_VERSION": "0.6.3", | |
| 29311 | 29313 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 29312 | 29314 | "CARGO_PKG_VERSION_MINOR": "6", |
| 29313 | - "CARGO_PKG_VERSION_PATCH": "4", | |
| 29315 | + "CARGO_PKG_VERSION_PATCH": "3", | |
| 29314 | 29316 | "CARGO_PKG_VERSION_PRE": "", |
| 29315 | 29317 | }, |
| 29316 | 29318 | visibility = [], |
| @@ -29398,6 +29400,7 @@ buildscript_run( | ||
| 29398 | 29400 | "CARGO_PKG_VERSION_MINOR": "21", |
| 29399 | 29401 | "CARGO_PKG_VERSION_PATCH": "0", |
| 29400 | 29402 | "CARGO_PKG_VERSION_PRE": "", |
| 29403 | + "OPT_LEVEL": "2", | |
| 29401 | 29404 | }, |
| 29402 | 29405 | version = "2.21.0", |
| 29403 | 29406 | ) |
| @@ -29615,23 +29618,23 @@ cargo.rust_library( | ||
| 29615 | 29618 | ) |
| 29616 | 29619 | |
| 29617 | 29620 | 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"], | |
| 29622 | 29625 | visibility = [], |
| 29623 | 29626 | ) |
| 29624 | 29627 | |
| 29625 | 29628 | cargo.rust_library( |
| 29626 | 29629 | name = "xml-rs-0.8", |
| 29627 | - srcs = [":xml-rs-0.8.29.crate"], | |
| 29630 | + srcs = [":xml-rs-0.8.28.crate"], | |
| 29628 | 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 | 29633 | edition = "2021", |
| 29631 | 29634 | env = { |
| 29632 | 29635 | "CARGO_BIN_NAME": "xml", |
| 29633 | 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 | 29638 | "CARGO_PKG_AUTHORS": "Vladimir Matveev <vmatveev@citrine.cc>", |
| 29636 | 29639 | "CARGO_PKG_DESCRIPTION": "An XML library in pure Rust", |
| 29637 | 29640 | "CARGO_PKG_HOMEPAGE": "https://lib.rs/crates/xml", |
| @@ -29639,10 +29642,10 @@ cargo.rust_library( | ||
| 29639 | 29642 | "CARGO_PKG_README": "README.md", |
| 29640 | 29643 | "CARGO_PKG_REPOSITORY": "https://github.com/kornelski/xml-rs", |
| 29641 | 29644 | "CARGO_PKG_RUST_VERSION": "1.70", |
| 29642 | - "CARGO_PKG_VERSION": "0.8.29", | |
| 29645 | + "CARGO_PKG_VERSION": "0.8.28", | |
| 29643 | 29646 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 29644 | 29647 | "CARGO_PKG_VERSION_MINOR": "8", |
| 29645 | - "CARGO_PKG_VERSION_PATCH": "29", | |
| 29648 | + "CARGO_PKG_VERSION_PATCH": "28", | |
| 29646 | 29649 | "CARGO_PKG_VERSION_PRE": "", |
| 29647 | 29650 | }, |
| 29648 | 29651 | visibility = [], |
| @@ -29809,23 +29812,23 @@ cargo.rust_library( | ||
| 29809 | 29812 | ) |
| 29810 | 29813 | |
| 29811 | 29814 | 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"], | |
| 29816 | 29819 | visibility = [], |
| 29817 | 29820 | ) |
| 29818 | 29821 | |
| 29819 | 29822 | cargo.rust_library( |
| 29820 | 29823 | name = "yuv-0.8", |
| 29821 | - srcs = [":yuv-0.8.17.crate"], | |
| 29824 | + srcs = [":yuv-0.8.16.crate"], | |
| 29822 | 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 | 29827 | edition = "2021", |
| 29825 | 29828 | env = { |
| 29826 | 29829 | "CARGO_BIN_NAME": "yuv", |
| 29827 | 29830 | "CARGO_CRATE_NAME": "yuv", |
| 29828 | - "CARGO_MANIFEST_DIR": "yuv-0.8.17.crate", | |
| 29831 | + "CARGO_MANIFEST_DIR": "yuv-0.8.16.crate", | |
| 29829 | 29832 | "CARGO_PKG_AUTHORS": "Radzivon Bartoshyk", |
| 29830 | 29833 | "CARGO_PKG_DESCRIPTION": "High performance utilities for YUV format handling and conversion.", |
| 29831 | 29834 | "CARGO_PKG_HOMEPAGE": "https://github.com/awxkee/yuvutils-rs", |
| @@ -29833,10 +29836,10 @@ cargo.rust_library( | ||
| 29833 | 29836 | "CARGO_PKG_README": "README.md", |
| 29834 | 29837 | "CARGO_PKG_REPOSITORY": "https://github.com/awxkee/yuvutils-rs", |
| 29835 | 29838 | "CARGO_PKG_RUST_VERSION": "1.82.0", |
| 29836 | - "CARGO_PKG_VERSION": "0.8.17", | |
| 29839 | + "CARGO_PKG_VERSION": "0.8.16", | |
| 29837 | 29840 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 29838 | 29841 | "CARGO_PKG_VERSION_MINOR": "8", |
| 29839 | - "CARGO_PKG_VERSION_PATCH": "17", | |
| 29842 | + "CARGO_PKG_VERSION_PATCH": "16", | |
| 29840 | 29843 | "CARGO_PKG_VERSION_PRE": "", |
| 29841 | 29844 | }, |
| 29842 | 29845 | features = [ |
| @@ -29884,34 +29887,34 @@ cargo.rust_library( | ||
| 29884 | 29887 | ) |
| 29885 | 29888 | |
| 29886 | 29889 | 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"], | |
| 29891 | 29894 | visibility = [], |
| 29892 | 29895 | ) |
| 29893 | 29896 | |
| 29894 | 29897 | cargo.rust_library( |
| 29895 | 29898 | name = "zerocopy-0.8", |
| 29896 | - srcs = [":zerocopy-0.8.56.crate"], | |
| 29899 | + srcs = [":zerocopy-0.8.55.crate"], | |
| 29897 | 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 | 29902 | edition = "2021", |
| 29900 | 29903 | env = { |
| 29901 | 29904 | "CARGO_BIN_NAME": "zerocopy", |
| 29902 | 29905 | "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>", | |
| 29905 | 29908 | "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", |
| 29906 | 29909 | "CARGO_PKG_HOMEPAGE": "", |
| 29907 | 29910 | "CARGO_PKG_NAME": "zerocopy", |
| 29908 | 29911 | "CARGO_PKG_README": "README.md", |
| 29909 | 29912 | "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy", |
| 29910 | 29913 | "CARGO_PKG_RUST_VERSION": "1.56.0", |
| 29911 | - "CARGO_PKG_VERSION": "0.8.56", | |
| 29914 | + "CARGO_PKG_VERSION": "0.8.55", | |
| 29912 | 29915 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 29913 | 29916 | "CARGO_PKG_VERSION_MINOR": "8", |
| 29914 | - "CARGO_PKG_VERSION_PATCH": "56", | |
| 29917 | + "CARGO_PKG_VERSION_PATCH": "55", | |
| 29915 | 29918 | "CARGO_PKG_VERSION_PRE": "", |
| 29916 | 29919 | "OUT_DIR": "$(location :zerocopy-0.8-build-script-run[out_dir])", |
| 29917 | 29920 | }, |
| @@ -29927,25 +29930,25 @@ cargo.rust_library( | ||
| 29927 | 29930 | |
| 29928 | 29931 | cargo.rust_binary( |
| 29929 | 29932 | name = "zerocopy-0.8-build-script-build", |
| 29930 | - srcs = [":zerocopy-0.8.56.crate"], | |
| 29933 | + srcs = [":zerocopy-0.8.55.crate"], | |
| 29931 | 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 | 29936 | edition = "2021", |
| 29934 | 29937 | env = { |
| 29935 | 29938 | "CARGO_BIN_NAME": "build-script-build", |
| 29936 | 29939 | "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>", | |
| 29939 | 29942 | "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", |
| 29940 | 29943 | "CARGO_PKG_HOMEPAGE": "", |
| 29941 | 29944 | "CARGO_PKG_NAME": "zerocopy", |
| 29942 | 29945 | "CARGO_PKG_README": "README.md", |
| 29943 | 29946 | "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy", |
| 29944 | 29947 | "CARGO_PKG_RUST_VERSION": "1.56.0", |
| 29945 | - "CARGO_PKG_VERSION": "0.8.56", | |
| 29948 | + "CARGO_PKG_VERSION": "0.8.55", | |
| 29946 | 29949 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 29947 | 29950 | "CARGO_PKG_VERSION_MINOR": "8", |
| 29948 | - "CARGO_PKG_VERSION_PATCH": "56", | |
| 29951 | + "CARGO_PKG_VERSION_PATCH": "55", | |
| 29949 | 29952 | "CARGO_PKG_VERSION_PRE": "", |
| 29950 | 29953 | }, |
| 29951 | 29954 | features = [ |
| @@ -29961,7 +29964,7 @@ buildscript_run( | ||
| 29961 | 29964 | package_name = "zerocopy", |
| 29962 | 29965 | buildscript_rule = ":zerocopy-0.8-build-script-build", |
| 29963 | 29966 | env = { |
| 29964 | - "CARGO_PKG_AUTHORS": "", | |
| 29967 | + "CARGO_PKG_AUTHORS": "Joshua Liebow-Feeser <joshlf@google.com>:Jack Wrenn <jswrenn@amazon.com>", | |
| 29965 | 29968 | "CARGO_PKG_DESCRIPTION": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.", |
| 29966 | 29969 | "CARGO_PKG_HOMEPAGE": "", |
| 29967 | 29970 | "CARGO_PKG_README": "README.md", |
| @@ -29969,46 +29972,47 @@ buildscript_run( | ||
| 29969 | 29972 | "CARGO_PKG_RUST_VERSION": "1.56.0", |
| 29970 | 29973 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 29971 | 29974 | "CARGO_PKG_VERSION_MINOR": "8", |
| 29972 | - "CARGO_PKG_VERSION_PATCH": "56", | |
| 29975 | + "CARGO_PKG_VERSION_PATCH": "55", | |
| 29973 | 29976 | "CARGO_PKG_VERSION_PRE": "", |
| 29977 | + "OPT_LEVEL": "2", | |
| 29974 | 29978 | }, |
| 29975 | 29979 | features = [ |
| 29976 | 29980 | "derive", |
| 29977 | 29981 | "simd", |
| 29978 | 29982 | "zerocopy-derive", |
| 29979 | 29983 | ], |
| 29980 | - version = "0.8.56", | |
| 29984 | + version = "0.8.55", | |
| 29981 | 29985 | ) |
| 29982 | 29986 | |
| 29983 | 29987 | 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"], | |
| 29988 | 29992 | visibility = [], |
| 29989 | 29993 | ) |
| 29990 | 29994 | |
| 29991 | 29995 | cargo.rust_library( |
| 29992 | 29996 | name = "zerocopy-derive-0.8", |
| 29993 | - srcs = [":zerocopy-derive-0.8.56.crate"], | |
| 29997 | + srcs = [":zerocopy-derive-0.8.55.crate"], | |
| 29994 | 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 | 30000 | edition = "2021", |
| 29997 | 30001 | env = { |
| 29998 | 30002 | "CARGO_BIN_NAME": "zerocopy_derive", |
| 29999 | 30003 | "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>", | |
| 30002 | 30006 | "CARGO_PKG_DESCRIPTION": "Custom derive for traits from the zerocopy crate", |
| 30003 | 30007 | "CARGO_PKG_HOMEPAGE": "", |
| 30004 | 30008 | "CARGO_PKG_NAME": "zerocopy-derive", |
| 30005 | 30009 | "CARGO_PKG_README": "", |
| 30006 | 30010 | "CARGO_PKG_REPOSITORY": "https://github.com/google/zerocopy", |
| 30007 | 30011 | "CARGO_PKG_RUST_VERSION": "", |
| 30008 | - "CARGO_PKG_VERSION": "0.8.56", | |
| 30012 | + "CARGO_PKG_VERSION": "0.8.55", | |
| 30009 | 30013 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 30010 | 30014 | "CARGO_PKG_VERSION_MINOR": "8", |
| 30011 | - "CARGO_PKG_VERSION_PATCH": "56", | |
| 30015 | + "CARGO_PKG_VERSION_PATCH": "55", | |
| 30012 | 30016 | "CARGO_PKG_VERSION_PRE": "", |
| 30013 | 30017 | }, |
| 30014 | 30018 | proc_macro = True, |
| @@ -30179,23 +30183,23 @@ cargo.rust_library( | ||
| 30179 | 30183 | ) |
| 30180 | 30184 | |
| 30181 | 30185 | 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"], | |
| 30186 | 30190 | visibility = [], |
| 30187 | 30191 | ) |
| 30188 | 30192 | |
| 30189 | 30193 | cargo.rust_library( |
| 30190 | 30194 | name = "zerotrie-0.2", |
| 30191 | - srcs = [":zerotrie-0.2.5.crate"], | |
| 30195 | + srcs = [":zerotrie-0.2.4.crate"], | |
| 30192 | 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 | 30198 | edition = "2021", |
| 30195 | 30199 | env = { |
| 30196 | 30200 | "CARGO_BIN_NAME": "zerotrie", |
| 30197 | 30201 | "CARGO_CRATE_NAME": "zerotrie", |
| 30198 | - "CARGO_MANIFEST_DIR": "zerotrie-0.2.5.crate", | |
| 30202 | + "CARGO_MANIFEST_DIR": "zerotrie-0.2.4.crate", | |
| 30199 | 30203 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 30200 | 30204 | "CARGO_PKG_DESCRIPTION": "A data structure that efficiently maps strings to integers", |
| 30201 | 30205 | "CARGO_PKG_HOMEPAGE": "https://icu4x.unicode.org", |
| @@ -30203,10 +30207,10 @@ cargo.rust_library( | ||
| 30203 | 30207 | "CARGO_PKG_README": "README.md", |
| 30204 | 30208 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 30205 | 30209 | "CARGO_PKG_RUST_VERSION": "1.82", |
| 30206 | - "CARGO_PKG_VERSION": "0.2.5", | |
| 30210 | + "CARGO_PKG_VERSION": "0.2.4", | |
| 30207 | 30211 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 30208 | 30212 | "CARGO_PKG_VERSION_MINOR": "2", |
| 30209 | - "CARGO_PKG_VERSION_PATCH": "5", | |
| 30213 | + "CARGO_PKG_VERSION_PATCH": "4", | |
| 30210 | 30214 | "CARGO_PKG_VERSION_PRE": "", |
| 30211 | 30215 | }, |
| 30212 | 30216 | features = [ |
| @@ -30222,23 +30226,23 @@ cargo.rust_library( | ||
| 30222 | 30226 | ) |
| 30223 | 30227 | |
| 30224 | 30228 | 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"], | |
| 30229 | 30233 | visibility = [], |
| 30230 | 30234 | ) |
| 30231 | 30235 | |
| 30232 | 30236 | cargo.rust_library( |
| 30233 | 30237 | name = "zerovec-0.11", |
| 30234 | - srcs = [":zerovec-0.11.8.crate"], | |
| 30238 | + srcs = [":zerovec-0.11.6.crate"], | |
| 30235 | 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 | 30241 | edition = "2021", |
| 30238 | 30242 | env = { |
| 30239 | 30243 | "CARGO_BIN_NAME": "zerovec", |
| 30240 | 30244 | "CARGO_CRATE_NAME": "zerovec", |
| 30241 | - "CARGO_MANIFEST_DIR": "zerovec-0.11.8.crate", | |
| 30245 | + "CARGO_MANIFEST_DIR": "zerovec-0.11.6.crate", | |
| 30242 | 30246 | "CARGO_PKG_AUTHORS": "The ICU4X Project Developers", |
| 30243 | 30247 | "CARGO_PKG_DESCRIPTION": "Zero-copy vector backed by a byte array", |
| 30244 | 30248 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -30246,10 +30250,10 @@ cargo.rust_library( | ||
| 30246 | 30250 | "CARGO_PKG_README": "README.md", |
| 30247 | 30251 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 30248 | 30252 | "CARGO_PKG_RUST_VERSION": "1.83", |
| 30249 | - "CARGO_PKG_VERSION": "0.11.8", | |
| 30253 | + "CARGO_PKG_VERSION": "0.11.6", | |
| 30250 | 30254 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 30251 | 30255 | "CARGO_PKG_VERSION_MINOR": "11", |
| 30252 | - "CARGO_PKG_VERSION_PATCH": "8", | |
| 30256 | + "CARGO_PKG_VERSION_PATCH": "6", | |
| 30253 | 30257 | "CARGO_PKG_VERSION_PRE": "", |
| 30254 | 30258 | }, |
| 30255 | 30259 | features = [ |
| @@ -30265,23 +30269,23 @@ cargo.rust_library( | ||
| 30265 | 30269 | ) |
| 30266 | 30270 | |
| 30267 | 30271 | 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"], | |
| 30272 | 30276 | visibility = [], |
| 30273 | 30277 | ) |
| 30274 | 30278 | |
| 30275 | 30279 | cargo.rust_library( |
| 30276 | 30280 | name = "zerovec-derive-0.11", |
| 30277 | - srcs = [":zerovec-derive-0.11.6.crate"], | |
| 30281 | + srcs = [":zerovec-derive-0.11.3.crate"], | |
| 30278 | 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 | 30284 | edition = "2021", |
| 30281 | 30285 | env = { |
| 30282 | 30286 | "CARGO_BIN_NAME": "zerovec_derive", |
| 30283 | 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 | 30289 | "CARGO_PKG_AUTHORS": "Manish Goregaokar <manishsmail@gmail.com>", |
| 30286 | 30290 | "CARGO_PKG_DESCRIPTION": "Custom derive for the zerovec crate", |
| 30287 | 30291 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -30289,10 +30293,10 @@ cargo.rust_library( | ||
| 30289 | 30293 | "CARGO_PKG_README": "README.md", |
| 30290 | 30294 | "CARGO_PKG_REPOSITORY": "https://github.com/unicode-org/icu4x", |
| 30291 | 30295 | "CARGO_PKG_RUST_VERSION": "", |
| 30292 | - "CARGO_PKG_VERSION": "0.11.6", | |
| 30296 | + "CARGO_PKG_VERSION": "0.11.3", | |
| 30293 | 30297 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 30294 | 30298 | "CARGO_PKG_VERSION_MINOR": "11", |
| 30295 | - "CARGO_PKG_VERSION_PATCH": "6", | |
| 30299 | + "CARGO_PKG_VERSION_PATCH": "3", | |
| 30296 | 30300 | "CARGO_PKG_VERSION_PRE": "", |
| 30297 | 30301 | }, |
| 30298 | 30302 | proc_macro = True, |
| @@ -30300,7 +30304,7 @@ cargo.rust_library( | ||
| 30300 | 30304 | deps = [ |
| 30301 | 30305 | ":proc-macro2-1", |
| 30302 | 30306 | ":quote-1", |
| 30303 | - ":syn-3", | |
| 30307 | + ":syn-2", | |
| 30304 | 30308 | ], |
| 30305 | 30309 | ) |
| 30306 | 30310 | |
| @@ -30412,6 +30416,7 @@ buildscript_run( | ||
| 30412 | 30416 | "CARGO_PKG_VERSION_MINOR": "4", |
| 30413 | 30417 | "CARGO_PKG_VERSION_PATCH": "2", |
| 30414 | 30418 | "CARGO_PKG_VERSION_PRE": "", |
| 30419 | + "OPT_LEVEL": "2", | |
| 30415 | 30420 | }, |
| 30416 | 30421 | features = [ |
| 30417 | 30422 | "_deflate-any", |
| @@ -30501,6 +30506,7 @@ buildscript_run( | ||
| 30501 | 30506 | "CARGO_PKG_VERSION_MINOR": "0", |
| 30502 | 30507 | "CARGO_PKG_VERSION_PATCH": "23", |
| 30503 | 30508 | "CARGO_PKG_VERSION_PRE": "", |
| 30509 | + "OPT_LEVEL": "2", | |
| 30504 | 30510 | }, |
| 30505 | 30511 | version = "1.0.23", |
| 30506 | 30512 | ) |
| @@ -30552,23 +30558,23 @@ cargo.rust_library( | ||
| 30552 | 30558 | ) |
| 30553 | 30559 | |
| 30554 | 30560 | 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"], | |
| 30559 | 30565 | visibility = [], |
| 30560 | 30566 | ) |
| 30561 | 30567 | |
| 30562 | 30568 | cargo.rust_library( |
| 30563 | 30569 | name = "zune-core-0.5", |
| 30564 | - srcs = [":zune-core-0.5.3.crate"], | |
| 30570 | + srcs = [":zune-core-0.5.1.crate"], | |
| 30565 | 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 | 30573 | edition = "2021", |
| 30568 | 30574 | env = { |
| 30569 | 30575 | "CARGO_BIN_NAME": "zune_core", |
| 30570 | 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 | 30578 | "CARGO_PKG_AUTHORS": "", |
| 30573 | 30579 | "CARGO_PKG_DESCRIPTION": "Core utilities for image processing in the zune family of crates", |
| 30574 | 30580 | "CARGO_PKG_HOMEPAGE": "", |
| @@ -30576,10 +30582,10 @@ cargo.rust_library( | ||
| 30576 | 30582 | "CARGO_PKG_README": "README.md", |
| 30577 | 30583 | "CARGO_PKG_REPOSITORY": "https://github.com/etemesi254/zune-image", |
| 30578 | 30584 | "CARGO_PKG_RUST_VERSION": "1.75.0", |
| 30579 | - "CARGO_PKG_VERSION": "0.5.3", | |
| 30585 | + "CARGO_PKG_VERSION": "0.5.1", | |
| 30580 | 30586 | "CARGO_PKG_VERSION_MAJOR": "0", |
| 30581 | 30587 | "CARGO_PKG_VERSION_MINOR": "5", |
| 30582 | - "CARGO_PKG_VERSION_PATCH": "3", | |
| 30588 | + "CARGO_PKG_VERSION_PATCH": "1", | |
| 30583 | 30589 | "CARGO_PKG_VERSION_PRE": "", |
| 30584 | 30590 | }, |
| 30585 | 30591 | 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 @@ | ||
| 1 | 1 | # This file is automatically @generated by Cargo. |
| 2 | 2 | # It is not intended for manual editing. |
| 3 | -version = 3 | |
| 3 | +version = 4 | |
| 4 | 4 | |
| 5 | 5 | [[package]] |
| 6 | 6 | name = "ab_glyph" |
| @@ -39,7 +39,7 @@ version = "0.5.2" | ||
| 39 | 39 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 40 | 40 | checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" |
| 41 | 41 | dependencies = [ |
| 42 | - "crypto-common 0.1.7", | |
| 42 | + "crypto-common 0.1.6", | |
| 43 | 43 | "generic-array", |
| 44 | 44 | ] |
| 45 | 45 | |
| @@ -83,9 +83,9 @@ dependencies = [ | ||
| 83 | 83 | |
| 84 | 84 | [[package]] |
| 85 | 85 | name = "aho-corasick" |
| 86 | -version = "1.1.5" | |
| 86 | +version = "1.1.4" | |
| 87 | 87 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 88 | -checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba" | |
| 88 | +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" | |
| 89 | 89 | dependencies = [ |
| 90 | 90 | "memchr", |
| 91 | 91 | ] |
| @@ -134,7 +134,7 @@ dependencies = [ | ||
| 134 | 134 | "ndk-context", |
| 135 | 135 | "ndk-sys", |
| 136 | 136 | "num_enum", |
| 137 | - "thiserror 2.0.20", | |
| 137 | + "thiserror 2.0.19", | |
| 138 | 138 | ] |
| 139 | 139 | |
| 140 | 140 | [[package]] |
| @@ -145,9 +145,9 @@ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" | ||
| 145 | 145 | |
| 146 | 146 | [[package]] |
| 147 | 147 | name = "android_system_properties" |
| 148 | -version = "0.1.6" | |
| 148 | +version = "0.1.5" | |
| 149 | 149 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 150 | -checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc" | |
| 150 | +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" | |
| 151 | 151 | dependencies = [ |
| 152 | 152 | "libc", |
| 153 | 153 | ] |
| @@ -267,15 +267,15 @@ dependencies = [ | ||
| 267 | 267 | "objc2-foundation 0.3.2", |
| 268 | 268 | "parking_lot", |
| 269 | 269 | "percent-encoding", |
| 270 | - "windows-sys 0.60.2", | |
| 270 | + "windows-sys 0.59.0", | |
| 271 | 271 | "x11rb", |
| 272 | 272 | ] |
| 273 | 273 | |
| 274 | 274 | [[package]] |
| 275 | 275 | name = "archery" |
| 276 | -version = "1.2.3" | |
| 276 | +version = "1.2.2" | |
| 277 | 277 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 278 | -checksum = "33ca55ee147b1926dbea904f50fe4902494e97bc742205abbbf10c709e43815f" | |
| 278 | +checksum = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d" | |
| 279 | 279 | dependencies = [ |
| 280 | 280 | "triomphe", |
| 281 | 281 | ] |
| @@ -322,7 +322,7 @@ dependencies = [ | ||
| 322 | 322 | "nom 7.1.3", |
| 323 | 323 | "num-traits", |
| 324 | 324 | "rusticata-macros", |
| 325 | - "thiserror 2.0.20", | |
| 325 | + "thiserror 2.0.19", | |
| 326 | 326 | "time", |
| 327 | 327 | ] |
| 328 | 328 | |
| @@ -351,13 +351,13 @@ dependencies = [ | ||
| 351 | 351 | |
| 352 | 352 | [[package]] |
| 353 | 353 | name = "async-trait" |
| 354 | -version = "0.1.92" | |
| 354 | +version = "0.1.91" | |
| 355 | 355 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 356 | -checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667" | |
| 356 | +checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec" | |
| 357 | 357 | dependencies = [ |
| 358 | 358 | "proc-macro2", |
| 359 | 359 | "quote", |
| 360 | - "syn 3.0.4", | |
| 360 | + "syn 3.0.3", | |
| 361 | 361 | ] |
| 362 | 362 | |
| 363 | 363 | [[package]] |
| @@ -458,9 +458,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" | ||
| 458 | 458 | |
| 459 | 459 | [[package]] |
| 460 | 460 | name = "aws-lc-rs" |
| 461 | -version = "1.18.0" | |
| 461 | +version = "1.17.3" | |
| 462 | 462 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 463 | -checksum = "ce2b2dcc879c3bae0d371e77c99f2238400ef24ec001394befa67b6e543add9e" | |
| 463 | +checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1" | |
| 464 | 464 | dependencies = [ |
| 465 | 465 | "aws-lc-sys", |
| 466 | 466 | "untrusted 0.7.1", |
| @@ -469,9 +469,9 @@ dependencies = [ | ||
| 469 | 469 | |
| 470 | 470 | [[package]] |
| 471 | 471 | name = "aws-lc-sys" |
| 472 | -version = "0.44.0" | |
| 472 | +version = "0.43.0" | |
| 473 | 473 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 474 | -checksum = "f09fae7be8bb3174e05c6afdb34199e6dc0c7c04ba9fa237b1967adfbde27483" | |
| 474 | +checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c" | |
| 475 | 475 | dependencies = [ |
| 476 | 476 | "cc", |
| 477 | 477 | "cmake", |
| @@ -506,12 +506,6 @@ dependencies = [ | ||
| 506 | 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 | 509 | [[package]] |
| 516 | 510 | name = "base32" |
| 517 | 511 | version = "0.5.1" |
| @@ -594,15 +588,16 @@ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" | ||
| 594 | 588 | |
| 595 | 589 | [[package]] |
| 596 | 590 | name = "blake3" |
| 597 | -version = "1.8.7" | |
| 591 | +version = "1.8.5" | |
| 598 | 592 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 599 | -checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae" | |
| 593 | +checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" | |
| 600 | 594 | dependencies = [ |
| 595 | + "arrayref", | |
| 601 | 596 | "arrayvec", |
| 602 | 597 | "cc", |
| 603 | 598 | "cfg-if", |
| 604 | 599 | "constant_time_eq", |
| 605 | - "cpufeatures 0.3.1", | |
| 600 | + "cpufeatures 0.3.0", | |
| 606 | 601 | ] |
| 607 | 602 | |
| 608 | 603 | [[package]] |
| @@ -676,13 +671,13 @@ dependencies = [ | ||
| 676 | 671 | |
| 677 | 672 | [[package]] |
| 678 | 673 | name = "bytemuck_derive" |
| 679 | -version = "1.12.0" | |
| 674 | +version = "1.11.0" | |
| 680 | 675 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 681 | -checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f" | |
| 676 | +checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5" | |
| 682 | 677 | dependencies = [ |
| 683 | 678 | "proc-macro2", |
| 684 | 679 | "quote", |
| 685 | - "syn 3.0.4", | |
| 680 | + "syn 2.0.119", | |
| 686 | 681 | ] |
| 687 | 682 | |
| 688 | 683 | [[package]] |
| @@ -759,9 +754,9 @@ dependencies = [ | ||
| 759 | 754 | |
| 760 | 755 | [[package]] |
| 761 | 756 | name = "cc" |
| 762 | -version = "1.4.4" | |
| 757 | +version = "1.4.0" | |
| 763 | 758 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 764 | -checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273" | |
| 759 | +checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9" | |
| 765 | 760 | dependencies = [ |
| 766 | 761 | "find-msvc-tools", |
| 767 | 762 | "jobserver", |
| @@ -786,9 +781,9 @@ dependencies = [ | ||
| 786 | 781 | |
| 787 | 782 | [[package]] |
| 788 | 783 | name = "cfg-expr" |
| 789 | -version = "0.20.9" | |
| 784 | +version = "0.20.8" | |
| 790 | 785 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 791 | -checksum = "fe4ece8474b5f766c63426647e7b4b316b67431ade1036a8313cee24a03ae917" | |
| 786 | +checksum = "fb693542bcafa528e198be0ebd9d3632ca5b7c93dbe7237460e199910835997c" | |
| 792 | 787 | dependencies = [ |
| 793 | 788 | "smallvec", |
| 794 | 789 | "target-lexicon", |
| @@ -823,12 +818,12 @@ dependencies = [ | ||
| 823 | 818 | |
| 824 | 819 | [[package]] |
| 825 | 820 | name = "chacha20" |
| 826 | -version = "0.10.2" | |
| 821 | +version = "0.10.1" | |
| 827 | 822 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 828 | -checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06" | |
| 823 | +checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" | |
| 829 | 824 | dependencies = [ |
| 830 | 825 | "cfg-if", |
| 831 | - "cpufeatures 0.3.1", | |
| 826 | + "cpufeatures 0.3.0", | |
| 832 | 827 | "rand_core 0.10.1", |
| 833 | 828 | ] |
| 834 | 829 | |
| @@ -850,7 +845,7 @@ version = "0.4.4" | ||
| 850 | 845 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 851 | 846 | checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" |
| 852 | 847 | dependencies = [ |
| 853 | - "crypto-common 0.1.7", | |
| 848 | + "crypto-common 0.1.6", | |
| 854 | 849 | "inout", |
| 855 | 850 | ] |
| 856 | 851 | |
| @@ -935,7 +930,7 @@ version = "0.3.0" | ||
| 935 | 930 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 936 | 931 | checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" |
| 937 | 932 | dependencies = [ |
| 938 | - "thiserror 2.0.20", | |
| 933 | + "thiserror 2.0.19", | |
| 939 | 934 | ] |
| 940 | 935 | |
| 941 | 936 | [[package]] |
| @@ -958,9 +953,9 @@ dependencies = [ | ||
| 958 | 953 | |
| 959 | 954 | [[package]] |
| 960 | 955 | name = "combine" |
| 961 | -version = "4.6.8" | |
| 956 | +version = "4.6.7" | |
| 962 | 957 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 963 | -checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e" | |
| 958 | +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" | |
| 964 | 959 | dependencies = [ |
| 965 | 960 | "bytes", |
| 966 | 961 | "memchr", |
| @@ -978,7 +973,7 @@ dependencies = [ | ||
| 978 | 973 | [[package]] |
| 979 | 974 | name = "conducer" |
| 980 | 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 | 978 | [[package]] |
| 984 | 979 | name = "const-oid" |
| @@ -1150,9 +1145,9 @@ dependencies = [ | ||
| 1150 | 1145 | |
| 1151 | 1146 | [[package]] |
| 1152 | 1147 | name = "cpufeatures" |
| 1153 | -version = "0.3.1" | |
| 1148 | +version = "0.3.0" | |
| 1154 | 1149 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1155 | -checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566" | |
| 1150 | +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" | |
| 1156 | 1151 | dependencies = [ |
| 1157 | 1152 | "libc", |
| 1158 | 1153 | ] |
| @@ -1214,9 +1209,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" | ||
| 1214 | 1209 | |
| 1215 | 1210 | [[package]] |
| 1216 | 1211 | name = "crypto-common" |
| 1217 | -version = "0.1.7" | |
| 1212 | +version = "0.1.6" | |
| 1218 | 1213 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1219 | -checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" | |
| 1214 | +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" | |
| 1220 | 1215 | dependencies = [ |
| 1221 | 1216 | "generic-array", |
| 1222 | 1217 | "typenum", |
| @@ -1361,9 +1356,9 @@ checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" | ||
| 1361 | 1356 | |
| 1362 | 1357 | [[package]] |
| 1363 | 1358 | name = "data-encoding" |
| 1364 | -version = "2.11.1" | |
| 1359 | +version = "2.11.0" | |
| 1365 | 1360 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1366 | -checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06" | |
| 1361 | +checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" | |
| 1367 | 1362 | |
| 1368 | 1363 | [[package]] |
| 1369 | 1364 | name = "dbus" |
| @@ -1403,7 +1398,7 @@ version = "1.0.0" | ||
| 1403 | 1398 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1404 | 1399 | checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e" |
| 1405 | 1400 | dependencies = [ |
| 1406 | - "thiserror 2.0.20", | |
| 1401 | + "thiserror 2.0.19", | |
| 1407 | 1402 | ] |
| 1408 | 1403 | |
| 1409 | 1404 | [[package]] |
| @@ -1518,7 +1513,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1518 | 1513 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" |
| 1519 | 1514 | dependencies = [ |
| 1520 | 1515 | "block-buffer 0.10.4", |
| 1521 | - "crypto-common 0.1.7", | |
| 1516 | + "crypto-common 0.1.6", | |
| 1522 | 1517 | ] |
| 1523 | 1518 | |
| 1524 | 1519 | [[package]] |
| @@ -1558,7 +1553,7 @@ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8" | ||
| 1558 | 1553 | dependencies = [ |
| 1559 | 1554 | "proc-macro2", |
| 1560 | 1555 | "quote", |
| 1561 | - "syn 3.0.4", | |
| 1556 | + "syn 3.0.3", | |
| 1562 | 1557 | ] |
| 1563 | 1558 | |
| 1564 | 1559 | [[package]] |
| @@ -1626,12 +1621,12 @@ dependencies = [ | ||
| 1626 | 1621 | |
| 1627 | 1622 | [[package]] |
| 1628 | 1623 | name = "ed25519" |
| 1629 | -version = "3.0.0" | |
| 1624 | +version = "3.0.0-rc.4" | |
| 1630 | 1625 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1631 | -checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a" | |
| 1626 | +checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890" | |
| 1632 | 1627 | dependencies = [ |
| 1633 | 1628 | "pkcs8", |
| 1634 | - "serdect", | |
| 1629 | + "serde", | |
| 1635 | 1630 | "signature", |
| 1636 | 1631 | ] |
| 1637 | 1632 | |
| @@ -1704,9 +1699,9 @@ dependencies = [ | ||
| 1704 | 1699 | |
| 1705 | 1700 | [[package]] |
| 1706 | 1701 | name = "either" |
| 1707 | -version = "1.18.0" | |
| 1702 | +version = "1.17.0" | |
| 1708 | 1703 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1709 | -checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34" | |
| 1704 | +checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d" | |
| 1710 | 1705 | |
| 1711 | 1706 | [[package]] |
| 1712 | 1707 | name = "emath" |
| @@ -1752,13 +1747,13 @@ dependencies = [ | ||
| 1752 | 1747 | |
| 1753 | 1748 | [[package]] |
| 1754 | 1749 | name = "enum-assoc" |
| 1755 | -version = "1.4.1" | |
| 1750 | +version = "1.3.0" | |
| 1756 | 1751 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1757 | -checksum = "0590c4a94da3372e83493b956755a6e2266830b6e4e3b101afe66e3f39477b91" | |
| 1752 | +checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7" | |
| 1758 | 1753 | dependencies = [ |
| 1759 | 1754 | "proc-macro2", |
| 1760 | 1755 | "quote", |
| 1761 | - "syn 3.0.4", | |
| 1756 | + "syn 2.0.119", | |
| 1762 | 1757 | ] |
| 1763 | 1758 | |
| 1764 | 1759 | [[package]] |
| @@ -1914,9 +1909,9 @@ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24" | ||
| 1914 | 1909 | |
| 1915 | 1910 | [[package]] |
| 1916 | 1911 | name = "find-msvc-tools" |
| 1917 | -version = "0.1.11" | |
| 1912 | +version = "0.1.9" | |
| 1918 | 1913 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1919 | -checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890" | |
| 1914 | +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" | |
| 1920 | 1915 | |
| 1921 | 1916 | [[package]] |
| 1922 | 1917 | name = "fixed-resample" |
| @@ -1983,7 +1978,7 @@ checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225" | ||
| 1983 | 1978 | dependencies = [ |
| 1984 | 1979 | "proc-macro2", |
| 1985 | 1980 | "quote", |
| 1986 | - "syn 3.0.4", | |
| 1981 | + "syn 3.0.3", | |
| 1987 | 1982 | ] |
| 1988 | 1983 | |
| 1989 | 1984 | [[package]] |
| @@ -2009,9 +2004,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" | ||
| 2009 | 2004 | |
| 2010 | 2005 | [[package]] |
| 2011 | 2006 | name = "futures" |
| 2012 | -version = "0.3.34" | |
| 2007 | +version = "0.3.33" | |
| 2013 | 2008 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2014 | -checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3" | |
| 2009 | +checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218" | |
| 2015 | 2010 | dependencies = [ |
| 2016 | 2011 | "futures-channel", |
| 2017 | 2012 | "futures-core", |
| @@ -2037,9 +2032,9 @@ dependencies = [ | ||
| 2037 | 2032 | |
| 2038 | 2033 | [[package]] |
| 2039 | 2034 | name = "futures-channel" |
| 2040 | -version = "0.3.34" | |
| 2035 | +version = "0.3.33" | |
| 2041 | 2036 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2042 | -checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4" | |
| 2037 | +checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae" | |
| 2043 | 2038 | dependencies = [ |
| 2044 | 2039 | "futures-core", |
| 2045 | 2040 | "futures-sink", |
| @@ -2060,15 +2055,15 @@ dependencies = [ | ||
| 2060 | 2055 | |
| 2061 | 2056 | [[package]] |
| 2062 | 2057 | name = "futures-core" |
| 2063 | -version = "0.3.34" | |
| 2058 | +version = "0.3.33" | |
| 2064 | 2059 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2065 | -checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e" | |
| 2060 | +checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7" | |
| 2066 | 2061 | |
| 2067 | 2062 | [[package]] |
| 2068 | 2063 | name = "futures-executor" |
| 2069 | -version = "0.3.34" | |
| 2064 | +version = "0.3.33" | |
| 2070 | 2065 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2071 | -checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432" | |
| 2066 | +checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458" | |
| 2072 | 2067 | dependencies = [ |
| 2073 | 2068 | "futures-core", |
| 2074 | 2069 | "futures-task", |
| @@ -2077,9 +2072,9 @@ dependencies = [ | ||
| 2077 | 2072 | |
| 2078 | 2073 | [[package]] |
| 2079 | 2074 | name = "futures-io" |
| 2080 | -version = "0.3.34" | |
| 2075 | +version = "0.3.33" | |
| 2081 | 2076 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2082 | -checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed" | |
| 2077 | +checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" | |
| 2083 | 2078 | |
| 2084 | 2079 | [[package]] |
| 2085 | 2080 | name = "futures-lite" |
| @@ -2096,32 +2091,32 @@ dependencies = [ | ||
| 2096 | 2091 | |
| 2097 | 2092 | [[package]] |
| 2098 | 2093 | name = "futures-macro" |
| 2099 | -version = "0.3.34" | |
| 2094 | +version = "0.3.33" | |
| 2100 | 2095 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2101 | -checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44" | |
| 2096 | +checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b" | |
| 2102 | 2097 | dependencies = [ |
| 2103 | 2098 | "proc-macro2", |
| 2104 | 2099 | "quote", |
| 2105 | - "syn 3.0.4", | |
| 2100 | + "syn 2.0.119", | |
| 2106 | 2101 | ] |
| 2107 | 2102 | |
| 2108 | 2103 | [[package]] |
| 2109 | 2104 | name = "futures-sink" |
| 2110 | -version = "0.3.34" | |
| 2105 | +version = "0.3.33" | |
| 2111 | 2106 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2112 | -checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d" | |
| 2107 | +checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307" | |
| 2113 | 2108 | |
| 2114 | 2109 | [[package]] |
| 2115 | 2110 | name = "futures-task" |
| 2116 | -version = "0.3.34" | |
| 2111 | +version = "0.3.33" | |
| 2117 | 2112 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2118 | -checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd" | |
| 2113 | +checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109" | |
| 2119 | 2114 | |
| 2120 | 2115 | [[package]] |
| 2121 | 2116 | name = "futures-util" |
| 2122 | -version = "0.3.34" | |
| 2117 | +version = "0.3.33" | |
| 2123 | 2118 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2124 | -checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc" | |
| 2119 | +checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa" | |
| 2125 | 2120 | dependencies = [ |
| 2126 | 2121 | "futures-channel", |
| 2127 | 2122 | "futures-core", |
| @@ -2151,9 +2146,9 @@ dependencies = [ | ||
| 2151 | 2146 | |
| 2152 | 2147 | [[package]] |
| 2153 | 2148 | name = "generic-array" |
| 2154 | -version = "0.14.7" | |
| 2149 | +version = "0.14.9" | |
| 2155 | 2150 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2156 | -checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" | |
| 2151 | +checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" | |
| 2157 | 2152 | dependencies = [ |
| 2158 | 2153 | "typenum", |
| 2159 | 2154 | "version_check", |
| @@ -2335,9 +2330,9 @@ dependencies = [ | ||
| 2335 | 2330 | |
| 2336 | 2331 | [[package]] |
| 2337 | 2332 | name = "h2" |
| 2338 | -version = "0.4.19" | |
| 2333 | +version = "0.4.15" | |
| 2339 | 2334 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2340 | -checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16" | |
| 2335 | +checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" | |
| 2341 | 2336 | dependencies = [ |
| 2342 | 2337 | "atomic-waker", |
| 2343 | 2338 | "bytes", |
| @@ -2345,7 +2340,7 @@ dependencies = [ | ||
| 2345 | 2340 | "futures-core", |
| 2346 | 2341 | "futures-sink", |
| 2347 | 2342 | "http", |
| 2348 | - "indexmap 2.14.1", | |
| 2343 | + "indexmap 2.14.0", | |
| 2349 | 2344 | "slab", |
| 2350 | 2345 | "tokio", |
| 2351 | 2346 | "tokio-util", |
| @@ -2366,7 +2361,7 @@ dependencies = [ | ||
| 2366 | 2361 | [[package]] |
| 2367 | 2362 | name = "hang" |
| 2368 | 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 | 2365 | dependencies = [ |
| 2371 | 2366 | "buf-list", |
| 2372 | 2367 | "bytes", |
| @@ -2379,7 +2374,7 @@ dependencies = [ | ||
| 2379 | 2374 | "serde", |
| 2380 | 2375 | "serde_json", |
| 2381 | 2376 | "serde_with", |
| 2382 | - "thiserror 2.0.20", | |
| 2377 | + "thiserror 2.0.19", | |
| 2383 | 2378 | "tokio", |
| 2384 | 2379 | "tracing", |
| 2385 | 2380 | "url", |
| @@ -2471,7 +2466,7 @@ dependencies = [ | ||
| 2471 | 2466 | "rand 0.9.5", |
| 2472 | 2467 | "ring", |
| 2473 | 2468 | "rustls", |
| 2474 | - "thiserror 2.0.20", | |
| 2469 | + "thiserror 2.0.19", | |
| 2475 | 2470 | "tinyvec", |
| 2476 | 2471 | "tokio", |
| 2477 | 2472 | "tokio-rustls", |
| @@ -2496,7 +2491,7 @@ dependencies = [ | ||
| 2496 | 2491 | "resolv-conf", |
| 2497 | 2492 | "rustls", |
| 2498 | 2493 | "smallvec", |
| 2499 | - "thiserror 2.0.20", | |
| 2494 | + "thiserror 2.0.19", | |
| 2500 | 2495 | "tokio", |
| 2501 | 2496 | "tokio-rustls", |
| 2502 | 2497 | "tracing", |
| @@ -2530,9 +2525,9 @@ dependencies = [ | ||
| 2530 | 2525 | |
| 2531 | 2526 | [[package]] |
| 2532 | 2527 | name = "http-body-util" |
| 2533 | -version = "0.1.5" | |
| 2528 | +version = "0.1.4" | |
| 2534 | 2529 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2535 | -checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c" | |
| 2530 | +checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" | |
| 2536 | 2531 | dependencies = [ |
| 2537 | 2532 | "bytes", |
| 2538 | 2533 | "futures-core", |
| @@ -2571,18 +2566,18 @@ dependencies = [ | ||
| 2571 | 2566 | |
| 2572 | 2567 | [[package]] |
| 2573 | 2568 | name = "hybrid-array" |
| 2574 | -version = "0.4.14" | |
| 2569 | +version = "0.4.13" | |
| 2575 | 2570 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2576 | -checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b" | |
| 2571 | +checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c" | |
| 2577 | 2572 | dependencies = [ |
| 2578 | 2573 | "typenum", |
| 2579 | 2574 | ] |
| 2580 | 2575 | |
| 2581 | 2576 | [[package]] |
| 2582 | 2577 | name = "hyper" |
| 2583 | -version = "1.11.1" | |
| 2578 | +version = "1.11.0" | |
| 2584 | 2579 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2585 | -checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43" | |
| 2580 | +checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72" | |
| 2586 | 2581 | dependencies = [ |
| 2587 | 2582 | "atomic-waker", |
| 2588 | 2583 | "bytes", |
| @@ -2664,9 +2659,9 @@ dependencies = [ | ||
| 2664 | 2659 | |
| 2665 | 2660 | [[package]] |
| 2666 | 2661 | name = "icu_collections" |
| 2667 | -version = "2.3.0" | |
| 2662 | +version = "2.2.0" | |
| 2668 | 2663 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2669 | -checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513" | |
| 2664 | +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" | |
| 2670 | 2665 | dependencies = [ |
| 2671 | 2666 | "displaydoc", |
| 2672 | 2667 | "potential_utf", |
| @@ -2678,9 +2673,9 @@ dependencies = [ | ||
| 2678 | 2673 | |
| 2679 | 2674 | [[package]] |
| 2680 | 2675 | name = "icu_locale_core" |
| 2681 | -version = "2.3.0" | |
| 2676 | +version = "2.2.0" | |
| 2682 | 2677 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2683 | -checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb" | |
| 2678 | +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" | |
| 2684 | 2679 | dependencies = [ |
| 2685 | 2680 | "displaydoc", |
| 2686 | 2681 | "litemap", |
| @@ -2691,9 +2686,9 @@ dependencies = [ | ||
| 2691 | 2686 | |
| 2692 | 2687 | [[package]] |
| 2693 | 2688 | name = "icu_normalizer" |
| 2694 | -version = "2.3.0" | |
| 2689 | +version = "2.2.0" | |
| 2695 | 2690 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2696 | -checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f" | |
| 2691 | +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" | |
| 2697 | 2692 | dependencies = [ |
| 2698 | 2693 | "icu_collections", |
| 2699 | 2694 | "icu_normalizer_data", |
| @@ -2705,17 +2700,16 @@ dependencies = [ | ||
| 2705 | 2700 | |
| 2706 | 2701 | [[package]] |
| 2707 | 2702 | name = "icu_normalizer_data" |
| 2708 | -version = "2.3.0" | |
| 2703 | +version = "2.2.0" | |
| 2709 | 2704 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2710 | -checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0" | |
| 2705 | +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" | |
| 2711 | 2706 | |
| 2712 | 2707 | [[package]] |
| 2713 | 2708 | name = "icu_properties" |
| 2714 | -version = "2.3.0" | |
| 2709 | +version = "2.2.0" | |
| 2715 | 2710 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2716 | -checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148" | |
| 2711 | +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" | |
| 2717 | 2712 | dependencies = [ |
| 2718 | - "displaydoc", | |
| 2719 | 2713 | "icu_collections", |
| 2720 | 2714 | "icu_locale_core", |
| 2721 | 2715 | "icu_properties_data", |
| @@ -2726,15 +2720,15 @@ dependencies = [ | ||
| 2726 | 2720 | |
| 2727 | 2721 | [[package]] |
| 2728 | 2722 | name = "icu_properties_data" |
| 2729 | -version = "2.3.0" | |
| 2723 | +version = "2.2.0" | |
| 2730 | 2724 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2731 | -checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa" | |
| 2725 | +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" | |
| 2732 | 2726 | |
| 2733 | 2727 | [[package]] |
| 2734 | 2728 | name = "icu_provider" |
| 2735 | -version = "2.3.1" | |
| 2729 | +version = "2.2.0" | |
| 2736 | 2730 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2737 | -checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73" | |
| 2731 | +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" | |
| 2738 | 2732 | dependencies = [ |
| 2739 | 2733 | "displaydoc", |
| 2740 | 2734 | "icu_locale_core", |
| @@ -2828,9 +2822,9 @@ dependencies = [ | ||
| 2828 | 2822 | |
| 2829 | 2823 | [[package]] |
| 2830 | 2824 | name = "indexmap" |
| 2831 | -version = "2.14.1" | |
| 2825 | +version = "2.14.0" | |
| 2832 | 2826 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2833 | -checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb" | |
| 2827 | +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" | |
| 2834 | 2828 | dependencies = [ |
| 2835 | 2829 | "equivalent", |
| 2836 | 2830 | "hashbrown 0.17.1", |
| @@ -2862,9 +2856,9 @@ dependencies = [ | ||
| 2862 | 2856 | |
| 2863 | 2857 | [[package]] |
| 2864 | 2858 | name = "ipnet" |
| 2865 | -version = "2.12.1" | |
| 2859 | +version = "2.12.0" | |
| 2866 | 2860 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2867 | -checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78" | |
| 2861 | +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" | |
| 2868 | 2862 | |
| 2869 | 2863 | [[package]] |
| 2870 | 2864 | name = "iroh" |
| @@ -2953,7 +2947,7 @@ dependencies = [ | ||
| 2953 | 2947 | "futures-lite", |
| 2954 | 2948 | "futures-util", |
| 2955 | 2949 | "hex", |
| 2956 | - "indexmap 2.14.1", | |
| 2950 | + "indexmap 2.14.0", | |
| 2957 | 2951 | "iroh", |
| 2958 | 2952 | "iroh-base", |
| 2959 | 2953 | "iroh-metrics", |
| @@ -3212,12 +3206,10 @@ dependencies = [ | ||
| 3212 | 3206 | "defmt", |
| 3213 | 3207 | "jiff-core", |
| 3214 | 3208 | "jiff-static", |
| 3215 | - "jiff-tzdb-platform", | |
| 3216 | 3209 | "log", |
| 3217 | 3210 | "portable-atomic", |
| 3218 | 3211 | "portable-atomic-util", |
| 3219 | 3212 | "serde_core", |
| 3220 | - "windows-link", | |
| 3221 | 3213 | ] |
| 3222 | 3214 | |
| 3223 | 3215 | [[package]] |
| @@ -3241,21 +3233,6 @@ dependencies = [ | ||
| 3241 | 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 | 3236 | [[package]] |
| 3260 | 3237 | name = "jni" |
| 3261 | 3238 | version = "0.21.1" |
| @@ -3284,7 +3261,7 @@ dependencies = [ | ||
| 3284 | 3261 | "jni-sys 0.4.1", |
| 3285 | 3262 | "log", |
| 3286 | 3263 | "simd_cesu8", |
| 3287 | - "thiserror 2.0.20", | |
| 3264 | + "thiserror 2.0.19", | |
| 3288 | 3265 | "walkdir", |
| 3289 | 3266 | "windows-link", |
| 3290 | 3267 | ] |
| @@ -3374,7 +3351,7 @@ dependencies = [ | ||
| 3374 | 3351 | "objc2-foundation 0.3.2", |
| 3375 | 3352 | "openh264", |
| 3376 | 3353 | "png 0.17.16", |
| 3377 | - "rand 0.8.8", | |
| 3354 | + "rand 0.8.7", | |
| 3378 | 3355 | "rustls", |
| 3379 | 3356 | "tokio", |
| 3380 | 3357 | "url", |
| @@ -3386,9 +3363,9 @@ dependencies = [ | ||
| 3386 | 3363 | |
| 3387 | 3364 | [[package]] |
| 3388 | 3365 | name = "js-sys" |
| 3389 | -version = "0.3.104" | |
| 3366 | +version = "0.3.103" | |
| 3390 | 3367 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3391 | -checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a" | |
| 3368 | +checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" | |
| 3392 | 3369 | dependencies = [ |
| 3393 | 3370 | "cfg-if", |
| 3394 | 3371 | "futures-util", |
| @@ -3502,9 +3479,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" | ||
| 3502 | 3479 | |
| 3503 | 3480 | [[package]] |
| 3504 | 3481 | name = "litemap" |
| 3505 | -version = "0.8.3" | |
| 3482 | +version = "0.8.2" | |
| 3506 | 3483 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3507 | -checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae" | |
| 3484 | +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" | |
| 3508 | 3485 | |
| 3509 | 3486 | [[package]] |
| 3510 | 3487 | name = "litrs" |
| @@ -3523,9 +3500,9 @@ dependencies = [ | ||
| 3523 | 3500 | |
| 3524 | 3501 | [[package]] |
| 3525 | 3502 | name = "log" |
| 3526 | -version = "0.4.34" | |
| 3503 | +version = "0.4.33" | |
| 3527 | 3504 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3528 | -checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6" | |
| 3505 | +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" | |
| 3529 | 3506 | |
| 3530 | 3507 | [[package]] |
| 3531 | 3508 | name = "loom" |
| @@ -3652,9 +3629,9 @@ dependencies = [ | ||
| 3652 | 3629 | |
| 3653 | 3630 | [[package]] |
| 3654 | 3631 | name = "moka" |
| 3655 | -version = "0.12.16" | |
| 3632 | +version = "0.12.15" | |
| 3656 | 3633 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3657 | -checksum = "4293f18e7567a1caf3c584855554377025c65e0aa445344d04171f5ad63d19b9" | |
| 3634 | +checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" | |
| 3658 | 3635 | dependencies = [ |
| 3659 | 3636 | "crossbeam-channel", |
| 3660 | 3637 | "crossbeam-epoch", |
| @@ -3670,7 +3647,7 @@ dependencies = [ | ||
| 3670 | 3647 | [[package]] |
| 3671 | 3648 | name = "moq-lite" |
| 3672 | 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 | 3651 | dependencies = [ |
| 3675 | 3652 | "bytes", |
| 3676 | 3653 | "conducer", |
| @@ -3678,7 +3655,7 @@ dependencies = [ | ||
| 3678 | 3655 | "num_enum", |
| 3679 | 3656 | "rand 0.9.5", |
| 3680 | 3657 | "serde", |
| 3681 | - "thiserror 2.0.20", | |
| 3658 | + "thiserror 2.0.19", | |
| 3682 | 3659 | "tokio", |
| 3683 | 3660 | "tracing", |
| 3684 | 3661 | "web-async", |
| @@ -3718,7 +3695,7 @@ dependencies = [ | ||
| 3718 | 3695 | [[package]] |
| 3719 | 3696 | name = "moq-native" |
| 3720 | 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 | 3699 | dependencies = [ |
| 3723 | 3700 | "anyhow", |
| 3724 | 3701 | "clap", |
| @@ -3888,9 +3865,9 @@ dependencies = [ | ||
| 3888 | 3865 | |
| 3889 | 3866 | [[package]] |
| 3890 | 3867 | name = "netlink-packet-core" |
| 3891 | -version = "0.8.2" | |
| 3868 | +version = "0.8.1" | |
| 3892 | 3869 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3893 | -checksum = "b897d7bd4f0af82e68d40d0344cf37e97f9c97ddf74a098de3e4da05e96ca395" | |
| 3870 | +checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4" | |
| 3894 | 3871 | dependencies = [ |
| 3895 | 3872 | "paste", |
| 3896 | 3873 | ] |
| @@ -3909,9 +3886,9 @@ dependencies = [ | ||
| 3909 | 3886 | |
| 3910 | 3887 | [[package]] |
| 3911 | 3888 | name = "netlink-proto" |
| 3912 | -version = "0.12.2" | |
| 3889 | +version = "0.12.1" | |
| 3913 | 3890 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 3914 | -checksum = "93af8261786086024cd5e96e0a991dd65ced07bbf7c233a487bbc96b971d5539" | |
| 3891 | +checksum = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6" | |
| 3915 | 3892 | dependencies = [ |
| 3916 | 3893 | "bytes", |
| 3917 | 3894 | "futures-channel", |
| @@ -3919,7 +3896,7 @@ dependencies = [ | ||
| 3919 | 3896 | "log", |
| 3920 | 3897 | "netlink-packet-core", |
| 3921 | 3898 | "netlink-sys", |
| 3922 | - "thiserror 2.0.20", | |
| 3899 | + "thiserror 2.0.19", | |
| 3923 | 3900 | ] |
| 3924 | 3901 | |
| 3925 | 3902 | [[package]] |
| @@ -4034,7 +4011,7 @@ dependencies = [ | ||
| 4034 | 4011 | "rustc-hash 2.1.3", |
| 4035 | 4012 | "rustls", |
| 4036 | 4013 | "socket2", |
| 4037 | - "thiserror 2.0.20", | |
| 4014 | + "thiserror 2.0.19", | |
| 4038 | 4015 | "tokio", |
| 4039 | 4016 | "tokio-stream", |
| 4040 | 4017 | "tracing", |
| @@ -4062,7 +4039,7 @@ dependencies = [ | ||
| 4062 | 4039 | "rustls-platform-verifier 0.6.2", |
| 4063 | 4040 | "slab", |
| 4064 | 4041 | "sorted-index-buffer", |
| 4065 | - "thiserror 2.0.20", | |
| 4042 | + "thiserror 2.0.19", | |
| 4066 | 4043 | "tinyvec", |
| 4067 | 4044 | "tracing", |
| 4068 | 4045 | "web-time", |
| @@ -4151,9 +4128,9 @@ dependencies = [ | ||
| 4151 | 4128 | |
| 4152 | 4129 | [[package]] |
| 4153 | 4130 | name = "num-integer" |
| 4154 | -version = "0.1.47" | |
| 4131 | +version = "0.1.46" | |
| 4155 | 4132 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 4156 | -checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b" | |
| 4133 | +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" | |
| 4157 | 4134 | dependencies = [ |
| 4158 | 4135 | "num-traits", |
| 4159 | 4136 | ] |
| @@ -4718,9 +4695,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" | ||
| 4718 | 4695 | |
| 4719 | 4696 | [[package]] |
| 4720 | 4697 | name = "openh264" |
| 4721 | -version = "0.9.8" | |
| 4698 | +version = "0.9.7" | |
| 4722 | 4699 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 4723 | -checksum = "fcc9071a0b5f9c501ddd01066c2600d922cc799dc450a52975222bcda7755a08" | |
| 4700 | +checksum = "e6b2b561d2103303e233779545da757ecd35bad82188d619a6d8901f3007e1ff" | |
| 4724 | 4701 | dependencies = [ |
| 4725 | 4702 | "openh264-sys2", |
| 4726 | 4703 | "wide", |
| @@ -4728,9 +4705,9 @@ dependencies = [ | ||
| 4728 | 4705 | |
| 4729 | 4706 | [[package]] |
| 4730 | 4707 | name = "openh264-sys2" |
| 4731 | -version = "0.9.8" | |
| 4708 | +version = "0.9.7" | |
| 4732 | 4709 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 4733 | -checksum = "6ada29a4cadc13d4d326737af87c13e224210d7d99fe47594e9f3f9b0102fd70" | |
| 4710 | +checksum = "75a8867e48183bbd9147380227448c065fe456eb30b0ebc68929809c36c30985" | |
| 4734 | 4711 | dependencies = [ |
| 4735 | 4712 | "cc", |
| 4736 | 4713 | "nasm-rs", |
| @@ -4764,9 +4741,9 @@ dependencies = [ | ||
| 4764 | 4741 | |
| 4765 | 4742 | [[package]] |
| 4766 | 4743 | name = "papaya" |
| 4767 | -version = "0.2.5" | |
| 4744 | +version = "0.2.4" | |
| 4768 | 4745 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 4769 | -checksum = "da2442474a9404698c42509b8967f437249dbc7b50493e83020333d3943ec0ae" | |
| 4746 | +checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7" | |
| 4770 | 4747 | dependencies = [ |
| 4771 | 4748 | "equivalent", |
| 4772 | 4749 | "seize", |
| @@ -4840,7 +4817,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 4840 | 4817 | checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" |
| 4841 | 4818 | dependencies = [ |
| 4842 | 4819 | "fixedbitset 0.4.2", |
| 4843 | - "indexmap 2.14.1", | |
| 4820 | + "indexmap 2.14.0", | |
| 4844 | 4821 | ] |
| 4845 | 4822 | |
| 4846 | 4823 | [[package]] |
| @@ -4912,7 +4889,7 @@ dependencies = [ | ||
| 4912 | 4889 | "nix 0.30.1", |
| 4913 | 4890 | "once_cell", |
| 4914 | 4891 | "pipewire-sys", |
| 4915 | - "thiserror 2.0.20", | |
| 4892 | + "thiserror 2.0.19", | |
| 4916 | 4893 | ] |
| 4917 | 4894 | |
| 4918 | 4895 | [[package]] |
| @@ -4942,14 +4919,14 @@ dependencies = [ | ||
| 4942 | 4919 | "self_cell", |
| 4943 | 4920 | "serde", |
| 4944 | 4921 | "simple-dns", |
| 4945 | - "thiserror 2.0.20", | |
| 4922 | + "thiserror 2.0.19", | |
| 4946 | 4923 | ] |
| 4947 | 4924 | |
| 4948 | 4925 | [[package]] |
| 4949 | 4926 | name = "pkcs8" |
| 4950 | -version = "0.11.0" | |
| 4927 | +version = "0.11.0-rc.11" | |
| 4951 | 4928 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 4952 | -checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7" | |
| 4929 | +checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577" | |
| 4953 | 4930 | dependencies = [ |
| 4954 | 4931 | "der", |
| 4955 | 4932 | "spki", |
| @@ -4957,9 +4934,9 @@ dependencies = [ | ||
| 4957 | 4934 | |
| 4958 | 4935 | [[package]] |
| 4959 | 4936 | name = "pkg-config" |
| 4960 | -version = "0.3.34" | |
| 4937 | +version = "0.3.33" | |
| 4961 | 4938 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 4962 | -checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548" | |
| 4939 | +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" | |
| 4963 | 4940 | |
| 4964 | 4941 | [[package]] |
| 4965 | 4942 | name = "plain" |
| @@ -4974,7 +4951,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 4974 | 4951 | checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85" |
| 4975 | 4952 | dependencies = [ |
| 4976 | 4953 | "base64", |
| 4977 | - "indexmap 2.14.1", | |
| 4954 | + "indexmap 2.14.0", | |
| 4978 | 4955 | "quick-xml", |
| 4979 | 4956 | "serde", |
| 4980 | 4957 | "time", |
| @@ -5034,9 +5011,9 @@ dependencies = [ | ||
| 5034 | 5011 | |
| 5035 | 5012 | [[package]] |
| 5036 | 5013 | name = "portable-atomic" |
| 5037 | -version = "1.15.0" | |
| 5014 | +version = "1.14.0" | |
| 5038 | 5015 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5039 | -checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85" | |
| 5016 | +checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3" | |
| 5040 | 5017 | dependencies = [ |
| 5041 | 5018 | "serde", |
| 5042 | 5019 | ] |
| @@ -5107,9 +5084,9 @@ dependencies = [ | ||
| 5107 | 5084 | |
| 5108 | 5085 | [[package]] |
| 5109 | 5086 | name = "potential_utf" |
| 5110 | -version = "0.1.6" | |
| 5087 | +version = "0.1.5" | |
| 5111 | 5088 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5112 | -checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661" | |
| 5089 | +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" | |
| 5113 | 5090 | dependencies = [ |
| 5114 | 5091 | "zerovec", |
| 5115 | 5092 | ] |
| @@ -5203,7 +5180,7 @@ dependencies = [ | ||
| 5203 | 5180 | "bytes", |
| 5204 | 5181 | "futures", |
| 5205 | 5182 | "rustls", |
| 5206 | - "thiserror 2.0.20", | |
| 5183 | + "thiserror 2.0.19", | |
| 5207 | 5184 | "tokio", |
| 5208 | 5185 | "tokio-rustls", |
| 5209 | 5186 | "tokio-tungstenite", |
| @@ -5241,7 +5218,7 @@ dependencies = [ | ||
| 5241 | 5218 | "rustc-hash 2.1.3", |
| 5242 | 5219 | "rustls", |
| 5243 | 5220 | "socket2", |
| 5244 | - "thiserror 2.0.20", | |
| 5221 | + "thiserror 2.0.19", | |
| 5245 | 5222 | "tokio", |
| 5246 | 5223 | "tracing", |
| 5247 | 5224 | "web-time", |
| @@ -5249,9 +5226,9 @@ dependencies = [ | ||
| 5249 | 5226 | |
| 5250 | 5227 | [[package]] |
| 5251 | 5228 | name = "quinn-proto" |
| 5252 | -version = "0.11.17" | |
| 5229 | +version = "0.11.16" | |
| 5253 | 5230 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5254 | -checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83" | |
| 5231 | +checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560" | |
| 5255 | 5232 | dependencies = [ |
| 5256 | 5233 | "aws-lc-rs", |
| 5257 | 5234 | "bytes", |
| @@ -5266,7 +5243,7 @@ dependencies = [ | ||
| 5266 | 5243 | "rustls-pki-types", |
| 5267 | 5244 | "rustls-platform-verifier 0.7.0", |
| 5268 | 5245 | "slab", |
| 5269 | - "thiserror 2.0.20", | |
| 5246 | + "thiserror 2.0.19", | |
| 5270 | 5247 | "tinyvec", |
| 5271 | 5248 | "tracing", |
| 5272 | 5249 | "web-time", |
| @@ -5309,9 +5286,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" | ||
| 5309 | 5286 | |
| 5310 | 5287 | [[package]] |
| 5311 | 5288 | name = "rand" |
| 5312 | -version = "0.8.8" | |
| 5289 | +version = "0.8.7" | |
| 5313 | 5290 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5314 | -checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c" | |
| 5291 | +checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" | |
| 5315 | 5292 | dependencies = [ |
| 5316 | 5293 | "libc", |
| 5317 | 5294 | "rand_chacha 0.3.1", |
| @@ -5420,9 +5397,9 @@ dependencies = [ | ||
| 5420 | 5397 | |
| 5421 | 5398 | [[package]] |
| 5422 | 5399 | name = "rcgen" |
| 5423 | -version = "0.14.10" | |
| 5400 | +version = "0.14.8" | |
| 5424 | 5401 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5425 | -checksum = "8774e05a7d0de114588e6a28fe7e71694b82614ed569d86d8b389dfbc98b8ad8" | |
| 5402 | +checksum = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055" | |
| 5426 | 5403 | dependencies = [ |
| 5427 | 5404 | "aws-lc-rs", |
| 5428 | 5405 | "rustls-pki-types", |
| @@ -5469,22 +5446,22 @@ dependencies = [ | ||
| 5469 | 5446 | |
| 5470 | 5447 | [[package]] |
| 5471 | 5448 | name = "ref-cast" |
| 5472 | -version = "1.0.27" | |
| 5449 | +version = "1.0.26" | |
| 5473 | 5450 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5474 | -checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3" | |
| 5451 | +checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d" | |
| 5475 | 5452 | dependencies = [ |
| 5476 | 5453 | "ref-cast-impl", |
| 5477 | 5454 | ] |
| 5478 | 5455 | |
| 5479 | 5456 | [[package]] |
| 5480 | 5457 | name = "ref-cast-impl" |
| 5481 | -version = "1.0.27" | |
| 5458 | +version = "1.0.26" | |
| 5482 | 5459 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5483 | -checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a" | |
| 5460 | +checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c" | |
| 5484 | 5461 | dependencies = [ |
| 5485 | 5462 | "proc-macro2", |
| 5486 | 5463 | "quote", |
| 5487 | - "syn 3.0.4", | |
| 5464 | + "syn 3.0.3", | |
| 5488 | 5465 | ] |
| 5489 | 5466 | |
| 5490 | 5467 | [[package]] |
| @@ -5501,9 +5478,9 @@ dependencies = [ | ||
| 5501 | 5478 | |
| 5502 | 5479 | [[package]] |
| 5503 | 5480 | name = "regex-automata" |
| 5504 | -version = "0.4.18" | |
| 5481 | +version = "0.4.16" | |
| 5505 | 5482 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5506 | -checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2" | |
| 5483 | +checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" | |
| 5507 | 5484 | dependencies = [ |
| 5508 | 5485 | "aho-corasick", |
| 5509 | 5486 | "memchr", |
| @@ -5827,9 +5804,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" | ||
| 5827 | 5804 | |
| 5828 | 5805 | [[package]] |
| 5829 | 5806 | name = "rustls-webpki" |
| 5830 | -version = "0.103.15" | |
| 5807 | +version = "0.103.13" | |
| 5831 | 5808 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5832 | -checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2" | |
| 5809 | +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" | |
| 5833 | 5810 | dependencies = [ |
| 5834 | 5811 | "aws-lc-rs", |
| 5835 | 5812 | "ring", |
| @@ -5898,9 +5875,9 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" | ||
| 5898 | 5875 | |
| 5899 | 5876 | [[package]] |
| 5900 | 5877 | name = "safe_arch" |
| 5901 | -version = "1.2.0" | |
| 5878 | +version = "1.1.0" | |
| 5902 | 5879 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 5903 | -checksum = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f" | |
| 5880 | +checksum = "3a52ec151f024d703f9fd65abb7cbe81e7cdb39f18917a3a37e3014470dc7c59" | |
| 5904 | 5881 | dependencies = [ |
| 5905 | 5882 | "bytemuck", |
| 5906 | 5883 | ] |
| @@ -6000,6 +5977,10 @@ name = "seize" | ||
| 6000 | 5977 | version = "0.5.1" |
| 6001 | 5978 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6002 | 5979 | checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521" |
| 5980 | +dependencies = [ | |
| 5981 | + "libc", | |
| 5982 | + "windows-sys 0.61.2", | |
| 5983 | +] | |
| 6003 | 5984 | |
| 6004 | 5985 | [[package]] |
| 6005 | 5986 | name = "self_cell" |
| @@ -6065,7 +6046,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" | ||
| 6065 | 6046 | dependencies = [ |
| 6066 | 6047 | "proc-macro2", |
| 6067 | 6048 | "quote", |
| 6068 | - "syn 3.0.4", | |
| 6049 | + "syn 3.0.3", | |
| 6069 | 6050 | ] |
| 6070 | 6051 | |
| 6071 | 6052 | [[package]] |
| @@ -6104,17 +6085,16 @@ dependencies = [ | ||
| 6104 | 6085 | |
| 6105 | 6086 | [[package]] |
| 6106 | 6087 | name = "serde_with" |
| 6107 | -version = "3.22.0" | |
| 6088 | +version = "3.21.0" | |
| 6108 | 6089 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6109 | -checksum = "ee78f1fbe43ac4a0e47aadb3dbd357b69eb0d3793e948624cd03dd2750ab1c0a" | |
| 6090 | +checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c" | |
| 6110 | 6091 | dependencies = [ |
| 6111 | 6092 | "base64", |
| 6112 | 6093 | "bs58", |
| 6113 | 6094 | "chrono", |
| 6114 | 6095 | "hex", |
| 6115 | 6096 | "indexmap 1.9.3", |
| 6116 | - "indexmap 2.14.1", | |
| 6117 | - "jiff", | |
| 6097 | + "indexmap 2.14.0", | |
| 6118 | 6098 | "schemars 0.9.0", |
| 6119 | 6099 | "schemars 1.2.2", |
| 6120 | 6100 | "serde_core", |
| @@ -6125,9 +6105,9 @@ dependencies = [ | ||
| 6125 | 6105 | |
| 6126 | 6106 | [[package]] |
| 6127 | 6107 | name = "serde_with_macros" |
| 6128 | -version = "3.22.0" | |
| 6108 | +version = "3.21.0" | |
| 6129 | 6109 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6130 | -checksum = "8705578779c2b6bd90d84d66eb2e206b708b1a4d7b9f17641b293545bf1c7e46" | |
| 6110 | +checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660" | |
| 6131 | 6111 | dependencies = [ |
| 6132 | 6112 | "darling 0.23.0", |
| 6133 | 6113 | "proc-macro2", |
| @@ -6135,16 +6115,6 @@ dependencies = [ | ||
| 6135 | 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 | 6118 | [[package]] |
| 6149 | 6119 | name = "sfv" |
| 6150 | 6120 | version = "0.14.0" |
| @@ -6152,7 +6122,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 6152 | 6122 | checksum = "0d471eaefb14f4b30032525bdb124b36e55ba9cb1292080e06f1a236cd10fe87" |
| 6153 | 6123 | dependencies = [ |
| 6154 | 6124 | "base64", |
| 6155 | - "indexmap 2.14.1", | |
| 6125 | + "indexmap 2.14.0", | |
| 6156 | 6126 | "ref-cast", |
| 6157 | 6127 | ] |
| 6158 | 6128 | |
| @@ -6217,9 +6187,9 @@ dependencies = [ | ||
| 6217 | 6187 | |
| 6218 | 6188 | [[package]] |
| 6219 | 6189 | name = "signature" |
| 6220 | -version = "3.0.0" | |
| 6190 | +version = "3.0.0-rc.10" | |
| 6221 | 6191 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6222 | -checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5" | |
| 6192 | +checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3" | |
| 6223 | 6193 | |
| 6224 | 6194 | [[package]] |
| 6225 | 6195 | name = "simd-adler32" |
| @@ -6318,7 +6288,7 @@ dependencies = [ | ||
| 6318 | 6288 | "log", |
| 6319 | 6289 | "memmap2", |
| 6320 | 6290 | "rustix 1.1.4", |
| 6321 | - "thiserror 2.0.20", | |
| 6291 | + "thiserror 2.0.19", | |
| 6322 | 6292 | "wayland-backend", |
| 6323 | 6293 | "wayland-client", |
| 6324 | 6294 | "wayland-csd-frame", |
| @@ -6431,7 +6401,7 @@ version = "0.1.0" | ||
| 6431 | 6401 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6432 | 6402 | checksum = "a053f93cc01f4e1cc51c61844a196b6d1da7e054cdd406d2cd27677ba4d898e0" |
| 6433 | 6403 | dependencies = [ |
| 6434 | - "cpufeatures 0.3.1", | |
| 6404 | + "cpufeatures 0.3.0", | |
| 6435 | 6405 | ] |
| 6436 | 6406 | |
| 6437 | 6407 | [[package]] |
| @@ -6613,9 +6583,9 @@ dependencies = [ | ||
| 6613 | 6583 | |
| 6614 | 6584 | [[package]] |
| 6615 | 6585 | name = "syn" |
| 6616 | -version = "3.0.4" | |
| 6586 | +version = "3.0.3" | |
| 6617 | 6587 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6618 | -checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f" | |
| 6588 | +checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3" | |
| 6619 | 6589 | dependencies = [ |
| 6620 | 6590 | "proc-macro2", |
| 6621 | 6591 | "quote", |
| @@ -6678,11 +6648,11 @@ dependencies = [ | ||
| 6678 | 6648 | |
| 6679 | 6649 | [[package]] |
| 6680 | 6650 | name = "thiserror" |
| 6681 | -version = "2.0.20" | |
| 6651 | +version = "2.0.19" | |
| 6682 | 6652 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6683 | -checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f" | |
| 6653 | +checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9" | |
| 6684 | 6654 | dependencies = [ |
| 6685 | - "thiserror-impl 2.0.20", | |
| 6655 | + "thiserror-impl 2.0.19", | |
| 6686 | 6656 | ] |
| 6687 | 6657 | |
| 6688 | 6658 | [[package]] |
| @@ -6698,13 +6668,13 @@ dependencies = [ | ||
| 6698 | 6668 | |
| 6699 | 6669 | [[package]] |
| 6700 | 6670 | name = "thiserror-impl" |
| 6701 | -version = "2.0.20" | |
| 6671 | +version = "2.0.19" | |
| 6702 | 6672 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6703 | -checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af" | |
| 6673 | +checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd" | |
| 6704 | 6674 | dependencies = [ |
| 6705 | 6675 | "proc-macro2", |
| 6706 | 6676 | "quote", |
| 6707 | - "syn 3.0.4", | |
| 6677 | + "syn 3.0.3", | |
| 6708 | 6678 | ] |
| 6709 | 6679 | |
| 6710 | 6680 | [[package]] |
| @@ -6743,9 +6713,9 @@ dependencies = [ | ||
| 6743 | 6713 | |
| 6744 | 6714 | [[package]] |
| 6745 | 6715 | name = "time" |
| 6746 | -version = "0.3.55" | |
| 6716 | +version = "0.3.54" | |
| 6747 | 6717 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6748 | -checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134" | |
| 6718 | +checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244" | |
| 6749 | 6719 | dependencies = [ |
| 6750 | 6720 | "deranged", |
| 6751 | 6721 | "js-sys", |
| @@ -6801,9 +6771,9 @@ dependencies = [ | ||
| 6801 | 6771 | |
| 6802 | 6772 | [[package]] |
| 6803 | 6773 | name = "tinystr" |
| 6804 | -version = "0.8.4" | |
| 6774 | +version = "0.8.3" | |
| 6805 | 6775 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6806 | -checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643" | |
| 6776 | +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" | |
| 6807 | 6777 | dependencies = [ |
| 6808 | 6778 | "displaydoc", |
| 6809 | 6779 | "zerovec", |
| @@ -6849,7 +6819,7 @@ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e" | ||
| 6849 | 6819 | dependencies = [ |
| 6850 | 6820 | "proc-macro2", |
| 6851 | 6821 | "quote", |
| 6852 | - "syn 3.0.4", | |
| 6822 | + "syn 3.0.3", | |
| 6853 | 6823 | ] |
| 6854 | 6824 | |
| 6855 | 6825 | [[package]] |
| @@ -6934,7 +6904,7 @@ version = "1.1.4+spec-1.1.0" | ||
| 6934 | 6904 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6935 | 6905 | checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5" |
| 6936 | 6906 | dependencies = [ |
| 6937 | - "indexmap 2.14.1", | |
| 6907 | + "indexmap 2.14.0", | |
| 6938 | 6908 | "serde_core", |
| 6939 | 6909 | "serde_spanned", |
| 6940 | 6910 | "toml_datetime", |
| @@ -6958,7 +6928,7 @@ version = "0.25.13+spec-1.1.0" | ||
| 6958 | 6928 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 6959 | 6929 | checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" |
| 6960 | 6930 | dependencies = [ |
| 6961 | - "indexmap 2.14.1", | |
| 6931 | + "indexmap 2.14.0", | |
| 6962 | 6932 | "toml_datetime", |
| 6963 | 6933 | "toml_parser", |
| 6964 | 6934 | "winnow", |
| @@ -7129,7 +7099,7 @@ dependencies = [ | ||
| 7129 | 7099 | "rustls", |
| 7130 | 7100 | "rustls-pki-types", |
| 7131 | 7101 | "sha1", |
| 7132 | - "thiserror 2.0.20", | |
| 7102 | + "thiserror 2.0.19", | |
| 7133 | 7103 | "utf-8", |
| 7134 | 7104 | ] |
| 7135 | 7105 | |
| @@ -7169,7 +7139,7 @@ version = "0.5.1" | ||
| 7169 | 7139 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7170 | 7140 | checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" |
| 7171 | 7141 | dependencies = [ |
| 7172 | - "crypto-common 0.1.7", | |
| 7142 | + "crypto-common 0.1.6", | |
| 7173 | 7143 | "subtle", |
| 7174 | 7144 | ] |
| 7175 | 7145 | |
| @@ -7235,9 +7205,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" | ||
| 7235 | 7205 | |
| 7236 | 7206 | [[package]] |
| 7237 | 7207 | name = "uuid" |
| 7238 | -version = "1.26.0" | |
| 7208 | +version = "1.24.0" | |
| 7239 | 7209 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7240 | -checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812" | |
| 7210 | +checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" | |
| 7241 | 7211 | dependencies = [ |
| 7242 | 7212 | "getrandom 0.4.3", |
| 7243 | 7213 | "js-sys", |
| @@ -7373,9 +7343,9 @@ dependencies = [ | ||
| 7373 | 7343 | |
| 7374 | 7344 | [[package]] |
| 7375 | 7345 | name = "wasm-bindgen" |
| 7376 | -version = "0.2.127" | |
| 7346 | +version = "0.2.126" | |
| 7377 | 7347 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7378 | -checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70" | |
| 7348 | +checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" | |
| 7379 | 7349 | dependencies = [ |
| 7380 | 7350 | "cfg-if", |
| 7381 | 7351 | "once_cell", |
| @@ -7386,9 +7356,9 @@ dependencies = [ | ||
| 7386 | 7356 | |
| 7387 | 7357 | [[package]] |
| 7388 | 7358 | name = "wasm-bindgen-futures" |
| 7389 | -version = "0.4.77" | |
| 7359 | +version = "0.4.76" | |
| 7390 | 7360 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7391 | -checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950" | |
| 7361 | +checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" | |
| 7392 | 7362 | dependencies = [ |
| 7393 | 7363 | "js-sys", |
| 7394 | 7364 | "wasm-bindgen", |
| @@ -7396,9 +7366,9 @@ dependencies = [ | ||
| 7396 | 7366 | |
| 7397 | 7367 | [[package]] |
| 7398 | 7368 | name = "wasm-bindgen-macro" |
| 7399 | -version = "0.2.127" | |
| 7369 | +version = "0.2.126" | |
| 7400 | 7370 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7401 | -checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1" | |
| 7371 | +checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" | |
| 7402 | 7372 | dependencies = [ |
| 7403 | 7373 | "quote", |
| 7404 | 7374 | "wasm-bindgen-macro-support", |
| @@ -7406,9 +7376,9 @@ dependencies = [ | ||
| 7406 | 7376 | |
| 7407 | 7377 | [[package]] |
| 7408 | 7378 | name = "wasm-bindgen-macro-support" |
| 7409 | -version = "0.2.127" | |
| 7379 | +version = "0.2.126" | |
| 7410 | 7380 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7411 | -checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284" | |
| 7381 | +checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" | |
| 7412 | 7382 | dependencies = [ |
| 7413 | 7383 | "bumpalo", |
| 7414 | 7384 | "proc-macro2", |
| @@ -7419,9 +7389,9 @@ dependencies = [ | ||
| 7419 | 7389 | |
| 7420 | 7390 | [[package]] |
| 7421 | 7391 | name = "wasm-bindgen-shared" |
| 7422 | -version = "0.2.127" | |
| 7392 | +version = "0.2.126" | |
| 7423 | 7393 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7424 | -checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf" | |
| 7394 | +checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" | |
| 7425 | 7395 | dependencies = [ |
| 7426 | 7396 | "unicode-ident", |
| 7427 | 7397 | ] |
| @@ -7601,9 +7571,9 @@ dependencies = [ | ||
| 7601 | 7571 | |
| 7602 | 7572 | [[package]] |
| 7603 | 7573 | name = "web-sys" |
| 7604 | -version = "0.3.104" | |
| 7574 | +version = "0.3.103" | |
| 7605 | 7575 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7606 | -checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30" | |
| 7576 | +checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" | |
| 7607 | 7577 | dependencies = [ |
| 7608 | 7578 | "js-sys", |
| 7609 | 7579 | "wasm-bindgen", |
| @@ -7647,7 +7617,7 @@ dependencies = [ | ||
| 7647 | 7617 | "noq", |
| 7648 | 7618 | "rustls", |
| 7649 | 7619 | "rustls-native-certs", |
| 7650 | - "thiserror 2.0.20", | |
| 7620 | + "thiserror 2.0.19", | |
| 7651 | 7621 | "tokio", |
| 7652 | 7622 | "tracing", |
| 7653 | 7623 | "url", |
| @@ -7663,7 +7633,7 @@ dependencies = [ | ||
| 7663 | 7633 | "bytes", |
| 7664 | 7634 | "http", |
| 7665 | 7635 | "sfv", |
| 7666 | - "thiserror 2.0.20", | |
| 7636 | + "thiserror 2.0.19", | |
| 7667 | 7637 | "tokio", |
| 7668 | 7638 | "url", |
| 7669 | 7639 | ] |
| @@ -7718,9 +7688,9 @@ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" | ||
| 7718 | 7688 | |
| 7719 | 7689 | [[package]] |
| 7720 | 7690 | name = "wide" |
| 7721 | -version = "1.7.0" | |
| 7691 | +version = "1.5.0" | |
| 7722 | 7692 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7723 | -checksum = "8cf05ca94c9fba0c51316899caa1d1e74a064fc310a5efa7375e614343d415be" | |
| 7693 | +checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89" | |
| 7724 | 7694 | dependencies = [ |
| 7725 | 7695 | "bytemuck", |
| 7726 | 7696 | "safe_arch", |
| @@ -7911,15 +7881,6 @@ dependencies = [ | ||
| 7911 | 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 | 7884 | [[package]] |
| 7924 | 7885 | name = "windows-sys" |
| 7925 | 7886 | version = "0.61.2" |
| @@ -7953,30 +7914,13 @@ dependencies = [ | ||
| 7953 | 7914 | "windows_aarch64_gnullvm 0.52.6", |
| 7954 | 7915 | "windows_aarch64_msvc 0.52.6", |
| 7955 | 7916 | "windows_i686_gnu 0.52.6", |
| 7956 | - "windows_i686_gnullvm 0.52.6", | |
| 7917 | + "windows_i686_gnullvm", | |
| 7957 | 7918 | "windows_i686_msvc 0.52.6", |
| 7958 | 7919 | "windows_x86_64_gnu 0.52.6", |
| 7959 | 7920 | "windows_x86_64_gnullvm 0.52.6", |
| 7960 | 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 | 7924 | [[package]] |
| 7981 | 7925 | name = "windows-threading" |
| 7982 | 7926 | version = "0.2.1" |
| @@ -7998,12 +7942,6 @@ version = "0.52.6" | ||
| 7998 | 7942 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 7999 | 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 | 7945 | [[package]] |
| 8008 | 7946 | name = "windows_aarch64_msvc" |
| 8009 | 7947 | version = "0.42.2" |
| @@ -8016,12 +7954,6 @@ version = "0.52.6" | ||
| 8016 | 7954 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8017 | 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 | 7957 | [[package]] |
| 8026 | 7958 | name = "windows_i686_gnu" |
| 8027 | 7959 | version = "0.42.2" |
| @@ -8034,24 +7966,12 @@ version = "0.52.6" | ||
| 8034 | 7966 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8035 | 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 | 7969 | [[package]] |
| 8044 | 7970 | name = "windows_i686_gnullvm" |
| 8045 | 7971 | version = "0.52.6" |
| 8046 | 7972 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8047 | 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 | 7975 | [[package]] |
| 8056 | 7976 | name = "windows_i686_msvc" |
| 8057 | 7977 | version = "0.42.2" |
| @@ -8064,12 +7984,6 @@ version = "0.52.6" | ||
| 8064 | 7984 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8065 | 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 | 7987 | [[package]] |
| 8074 | 7988 | name = "windows_x86_64_gnu" |
| 8075 | 7989 | version = "0.42.2" |
| @@ -8082,12 +7996,6 @@ version = "0.52.6" | ||
| 8082 | 7996 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8083 | 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 | 7999 | [[package]] |
| 8092 | 8000 | name = "windows_x86_64_gnullvm" |
| 8093 | 8001 | version = "0.42.2" |
| @@ -8100,12 +8008,6 @@ version = "0.52.6" | ||
| 8100 | 8008 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8101 | 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 | 8011 | [[package]] |
| 8110 | 8012 | name = "windows_x86_64_msvc" |
| 8111 | 8013 | version = "0.42.2" |
| @@ -8118,12 +8020,6 @@ version = "0.52.6" | ||
| 8118 | 8020 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8119 | 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 | 8023 | [[package]] |
| 8128 | 8024 | name = "winit" |
| 8129 | 8025 | version = "0.30.13" |
| @@ -8201,16 +8097,16 @@ dependencies = [ | ||
| 8201 | 8097 | "futures", |
| 8202 | 8098 | "log", |
| 8203 | 8099 | "serde", |
| 8204 | - "thiserror 2.0.20", | |
| 8100 | + "thiserror 2.0.19", | |
| 8205 | 8101 | "windows", |
| 8206 | 8102 | "windows-core", |
| 8207 | 8103 | ] |
| 8208 | 8104 | |
| 8209 | 8105 | [[package]] |
| 8210 | 8106 | name = "writeable" |
| 8211 | -version = "0.6.4" | |
| 8107 | +version = "0.6.3" | |
| 8212 | 8108 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8213 | -checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc" | |
| 8109 | +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" | |
| 8214 | 8110 | |
| 8215 | 8111 | [[package]] |
| 8216 | 8112 | name = "ws_stream_wasm" |
| @@ -8225,7 +8121,7 @@ dependencies = [ | ||
| 8225 | 8121 | "pharos", |
| 8226 | 8122 | "rustc_version", |
| 8227 | 8123 | "send_wrapper", |
| 8228 | - "thiserror 2.0.20", | |
| 8124 | + "thiserror 2.0.19", | |
| 8229 | 8125 | "wasm-bindgen", |
| 8230 | 8126 | "wasm-bindgen-futures", |
| 8231 | 8127 | "web-sys", |
| @@ -8277,7 +8173,7 @@ dependencies = [ | ||
| 8277 | 8173 | "nom 7.1.3", |
| 8278 | 8174 | "oid-registry", |
| 8279 | 8175 | "rusticata-macros", |
| 8280 | - "thiserror 2.0.20", | |
| 8176 | + "thiserror 2.0.19", | |
| 8281 | 8177 | "time", |
| 8282 | 8178 | ] |
| 8283 | 8179 | |
| @@ -8308,9 +8204,9 @@ checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" | ||
| 8308 | 8204 | |
| 8309 | 8205 | [[package]] |
| 8310 | 8206 | name = "xml-rs" |
| 8311 | -version = "0.8.29" | |
| 8207 | +version = "0.8.28" | |
| 8312 | 8208 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8313 | -checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7" | |
| 8209 | +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" | |
| 8314 | 8210 | |
| 8315 | 8211 | [[package]] |
| 8316 | 8212 | name = "xmltree" |
| @@ -8356,9 +8252,9 @@ dependencies = [ | ||
| 8356 | 8252 | |
| 8357 | 8253 | [[package]] |
| 8358 | 8254 | name = "yuv" |
| 8359 | -version = "0.8.17" | |
| 8255 | +version = "0.8.16" | |
| 8360 | 8256 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8361 | -checksum = "220655e1c245693beb13b377d3174b9efcb1645018d1d4ec53903fc211b135ae" | |
| 8257 | +checksum = "5d85a782d94ee43f078bcfd6fa82d4e6a5b2d1cfbbad168e4df5a9f7b39ef48c" | |
| 8362 | 8258 | dependencies = [ |
| 8363 | 8259 | "num-traits", |
| 8364 | 8260 | ] |
| @@ -8371,18 +8267,18 @@ checksum = "2164e798d9e3d84ee2c91139ace54638059a3b23e361f5c11781c2c6459bde0f" | ||
| 8371 | 8267 | |
| 8372 | 8268 | [[package]] |
| 8373 | 8269 | name = "zerocopy" |
| 8374 | -version = "0.8.56" | |
| 8270 | +version = "0.8.55" | |
| 8375 | 8271 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8376 | -checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb" | |
| 8272 | +checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb" | |
| 8377 | 8273 | dependencies = [ |
| 8378 | 8274 | "zerocopy-derive", |
| 8379 | 8275 | ] |
| 8380 | 8276 | |
| 8381 | 8277 | [[package]] |
| 8382 | 8278 | name = "zerocopy-derive" |
| 8383 | -version = "0.8.56" | |
| 8279 | +version = "0.8.55" | |
| 8384 | 8280 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8385 | -checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1" | |
| 8281 | +checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb" | |
| 8386 | 8282 | dependencies = [ |
| 8387 | 8283 | "proc-macro2", |
| 8388 | 8284 | "quote", |
| @@ -8432,9 +8328,9 @@ dependencies = [ | ||
| 8432 | 8328 | |
| 8433 | 8329 | [[package]] |
| 8434 | 8330 | name = "zerotrie" |
| 8435 | -version = "0.2.5" | |
| 8331 | +version = "0.2.4" | |
| 8436 | 8332 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8437 | -checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f" | |
| 8333 | +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" | |
| 8438 | 8334 | dependencies = [ |
| 8439 | 8335 | "displaydoc", |
| 8440 | 8336 | "yoke", |
| @@ -8443,9 +8339,9 @@ dependencies = [ | ||
| 8443 | 8339 | |
| 8444 | 8340 | [[package]] |
| 8445 | 8341 | name = "zerovec" |
| 8446 | -version = "0.11.8" | |
| 8342 | +version = "0.11.6" | |
| 8447 | 8343 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8448 | -checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8" | |
| 8344 | +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" | |
| 8449 | 8345 | dependencies = [ |
| 8450 | 8346 | "yoke", |
| 8451 | 8347 | "zerofrom", |
| @@ -8454,13 +8350,13 @@ dependencies = [ | ||
| 8454 | 8350 | |
| 8455 | 8351 | [[package]] |
| 8456 | 8352 | name = "zerovec-derive" |
| 8457 | -version = "0.11.6" | |
| 8353 | +version = "0.11.3" | |
| 8458 | 8354 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8459 | -checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da" | |
| 8355 | +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" | |
| 8460 | 8356 | dependencies = [ |
| 8461 | 8357 | "proc-macro2", |
| 8462 | 8358 | "quote", |
| 8463 | - "syn 3.0.4", | |
| 8359 | + "syn 2.0.119", | |
| 8464 | 8360 | ] |
| 8465 | 8361 | |
| 8466 | 8362 | [[package]] |
| @@ -8474,9 +8370,9 @@ dependencies = [ | ||
| 8474 | 8370 | "crossbeam-utils", |
| 8475 | 8371 | "displaydoc", |
| 8476 | 8372 | "flate2", |
| 8477 | - "indexmap 2.14.1", | |
| 8373 | + "indexmap 2.14.0", | |
| 8478 | 8374 | "memchr", |
| 8479 | - "thiserror 2.0.20", | |
| 8375 | + "thiserror 2.0.19", | |
| 8480 | 8376 | "zopfli", |
| 8481 | 8377 | ] |
| 8482 | 8378 | |
| @@ -8506,9 +8402,9 @@ dependencies = [ | ||
| 8506 | 8402 | |
| 8507 | 8403 | [[package]] |
| 8508 | 8404 | name = "zune-core" |
| 8509 | -version = "0.5.3" | |
| 8405 | +version = "0.5.1" | |
| 8510 | 8406 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 8511 | -checksum = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b" | |
| 8407 | +checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9" | |
| 8512 | 8408 | |
| 8513 | 8409 | [[package]] |
| 8514 | 8410 | 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 = 3 | 3 | +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 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/alsa-sys/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/android-activity/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/anyhow/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/asio-sys/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
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 = true | 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" } | ||
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 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/blake3/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/clang-sys/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/cpal/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/crc32fast/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/crossbeam-deque/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/crossbeam-epoch/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/crossbeam-utils/fixups.toml +4 -2 | @@ -6,5 +6,7 @@ extra_srcs = [ | ||
| 6 | 6 | ] |
| 7 | 7 | |
| 8 | 8 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/curve25519-dalek/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/generic-array/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/getrandom/fixups.toml +4 -2 | @@ -5,5 +5,7 @@ extra_srcs = [ | ||
| 5 | 5 | ] |
| 6 | 6 | |
| 7 | 7 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/glutin-winit/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/glutin/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/glutin_egl_sys/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/glutin_glx_sys/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/glutin_wgl_sys/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/heapless/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/httparse/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/icu_normalizer_data/fixups.toml +4 -2 | @@ -12,5 +12,7 @@ extra_srcs = [ | ||
| 12 | 12 | ] |
| 13 | 13 | |
| 14 | 14 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/icu_properties_data/fixups.toml +4 -2 | @@ -142,5 +142,7 @@ extra_srcs = [ | ||
| 142 | 142 | ] |
| 143 | 143 | |
| 144 | 144 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/iroh-relay/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/iroh/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/jni-macros/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/jni-sys/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/jni/fixups.toml +4 -2 | @@ -13,5 +13,7 @@ extra_srcs = [ | ||
| 13 | 13 | ] |
| 14 | 14 | |
| 15 | 15 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/khronos_api/fixups.toml +4 -2 | @@ -12,5 +12,7 @@ extra_srcs = [ | ||
| 12 | 12 | ] |
| 13 | 13 | |
| 14 | 14 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/libc/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/libm/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/memoffset/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/moq-media/fixups.toml +4 -2 | @@ -5,5 +5,7 @@ | ||
| 5 | 5 | omit_deps = ["cpal"] |
| 6 | 6 | extra_deps = ["//third-party/rust/cpal:cpal"] |
| 7 | 7 | |
| 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 = true | 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" } | ||
modified
third-party/rust/fixups/n0-future/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/netwatch/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/nix/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/noq-udp/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/noq/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/num-traits/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/objc-sys/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/objc2/fixups.toml +4 -2 | @@ -17,5 +17,7 @@ extra_srcs = [ | ||
| 17 | 17 | ] |
| 18 | 18 | |
| 19 | 19 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/object/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/openh264-sys2/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/parking_lot_core/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/paste/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/pkarr/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/portable-atomic/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/prettyplease/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/proc-macro2/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/quote/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/rayon-core/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/ref-cast/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/rustix/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/rustls/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/rustversion/fixups.toml +4 -2 | @@ -5,5 +5,7 @@ extra_srcs = [ | ||
| 5 | 5 | ] |
| 6 | 6 | |
| 7 | 7 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/rusty-capture/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/rusty-codecs/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/serde/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/serde_core/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/serde_json/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/smithay-client-toolkit/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/thiserror/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/v4l2r/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/vergen-gitcl/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/vergen-lib/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/vergen/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/wayland-backend/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/wayland-client/fixups.toml +4 -2 | @@ -3,5 +3,7 @@ extra_srcs = ["**/*.xml"] | ||
| 3 | 3 | |
| 4 | 4 | |
| 5 | 5 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/wayland-sys/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/windows_x86_64_gnu/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/windows_x86_64_msvc/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/winit/fixups.toml +4 -2 | @@ -34,5 +34,7 @@ extra_srcs = [ | ||
| 34 | 34 | ] |
| 35 | 35 | |
| 36 | 36 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/x11-dl/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/zerocopy/fixups.toml +4 -2 | @@ -5,5 +5,7 @@ extra_srcs = [ | ||
| 5 | 5 | ] |
| 6 | 6 | |
| 7 | 7 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/zip/fixups.toml +4 -2 | @@ -1,4 +1,6 @@ | ||
| 1 | 1 | |
| 2 | 2 | # 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 = true | 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" } | ||
modified
third-party/rust/fixups/zmij/fixups.toml +4 -2 | @@ -1,3 +1,5 @@ | ||
| 1 | 1 | # 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 = true | 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" } | ||
modified
toolchains/BUCK +36 -7 | @@ -4,9 +4,26 @@ load("@prelude//toolchains:python.bzl", "system_python_bootstrap_toolchain") | ||
| 4 | 4 | load("@prelude//toolchains:rust.bzl", "system_rust_toolchain") |
| 5 | 5 | |
| 6 | 6 | # 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") | |
| 10 | 27 | # |
| 11 | 28 | # This is the same arrangement .cargo/config.toml used to describe: zig cc |
| 12 | 29 | # 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 | 32 | # vidya's own buck2 build. |
| 16 | 33 | system_cxx_toolchain( |
| 17 | 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 | 39 | compiler_type = "clang", |
| 20 | - cxx_compiler = "scripts/zxx", | |
| 21 | - linker = "scripts/zcc", | |
| 40 | + cxx_compiler = _SCRIPTS + "/zxx", | |
| 41 | + linker = _SCRIPTS + "/zcc", | |
| 22 | 42 | visibility = ["PUBLIC"], |
| 23 | 43 | ) |
| 24 | 44 | |
| @@ -35,7 +55,16 @@ system_python_bootstrap_toolchain( | ||
| 35 | 55 | system_rust_toolchain( |
| 36 | 56 | name = "rust", |
| 37 | 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 | 68 | rustc_target_triple = select({ |
| 40 | 69 | "prelude//os:linux": select({ |
| 41 | 70 | "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 on | 6 | # 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 | 7 | +# pinned upstream releases rather than whatever the host happens to have. |
| 8 | -# prelude's system toolchains resolve their tools through PATH, so buck2 must | 8 | +# |
| 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 cc | 28 | # 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 machine | 29 | # 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 | + ) | ||