From fd1c0632ddb4ef273d41875676a665f4934270d5 Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Sat, 12 Jul 2025 19:04:08 +0200 Subject: [PATCH 1/6] [rust] Fix Windows arm64 logic for Selenium Manager and prepare CI --- .github/workflows/ci-rust.yml | 1 + rust/src/electron.rs | 2 +- rust/src/firefox.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index 6b165b69cc05f..ddbbd28c742d3 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -36,6 +36,7 @@ jobs: - os: macos - os: ubuntu - os: windows + - os: windows-11-arm with: name: Tests (${{ matrix.os }}) cache-key: rust-test diff --git a/rust/src/electron.rs b/rust/src/electron.rs index 868e087111b54..ae089d98f26d0 100644 --- a/rust/src/electron.rs +++ b/rust/src/electron.rs @@ -207,7 +207,7 @@ impl SeleniumManager for ElectronManager { if X32.is(arch) { "win32-ia32" } else if ARM64.is(arch) { - "win32-arm64-x64" + "win32-arm64" } else { "win32-x64" } diff --git a/rust/src/firefox.rs b/rust/src/firefox.rs index 17b95933f5ba5..a71192f077d5f 100644 --- a/rust/src/firefox.rs +++ b/rust/src/firefox.rs @@ -554,7 +554,7 @@ impl SeleniumManager for FirefoxManager { if X32.is(arch) || major_browser_version < 42 { platform_label = "win32"; } else if ARM64.is(arch) { - platform_label = "win-aarch64"; + platform_label = "win64-aarch64"; } else { platform_label = "win64"; } From 029e59e31a4a3df493a1fda45c3210685abbee65 Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Mon, 28 Jul 2025 19:44:22 +0200 Subject: [PATCH 2/6] Add build and release logic (MSVC supports cross-compilation) --- .github/workflows/ci-rust.yml | 55 +++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index ddbbd28c742d3..101faa8d6f559 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -58,20 +58,31 @@ jobs: - name: "Update Rust" run: | rustup update - rustup toolchain install stable-i686-pc-windows-msvc - rustup default stable-i686-pc-windows-msvc + rustup target install i686-pc-windows-msvc + rustup target install aarch64-pc-windows-msvc rustc -vV - - name: "Build release binary" - run: cargo build --release + - name: "Build release binary (x86)" + run: cargo build --target i686-pc-windows-msvc --release working-directory: rust - - name: "Rename binary" - run: mv rust/target/release/selenium-manager.exe selenium-manager-windows.exe - - name: "Upload release binary" + - name: "Build release binary (arm64)" + run: cargo build --target aarch64-pc-windows-msvc --release + working-directory: rust + - name: "Rename binary (x86)" + run: mv rust/target/i686-pc-windows-msvc/release/selenium-manager.exe selenium-manager-windows.exe + - name: "Rename binary (arm64)" + run: mv rust/target/aarch64-pc-windows-msvc/release/selenium-manager.exe selenium-manager-windows-arm64.exe + - name: "Upload release binary (x86)" uses: actions/upload-artifact@v4 with: name: selenium-manager-windows path: selenium-manager-windows.exe retention-days: 6 + - name: "Upload release binary (arm64)" + uses: actions/upload-artifact@v4 + with: + name: selenium-manager-windows-arm64 + path: selenium-manager-windows-arm64.exe + retention-days: 6 windows-debug: name: "Windows Debug" @@ -88,20 +99,31 @@ jobs: - name: "Update Rust" run: | rustup update - rustup toolchain install stable-i686-pc-windows-msvc - rustup default stable-i686-pc-windows-msvc + rustup target install i686-pc-windows-msvc + rustup target install aarch64-pc-windows-msvc rustc -vV - - name: "Build release binary" - run: cargo build --profile dev + - name: "Build release binary (x86)" + run: cargo build --target i686-pc-windows-msvc --profile dev working-directory: rust - - name: "Rename binary" - run: mv rust/target/debug/selenium-manager.exe selenium-manager-windows-debug.exe - - name: "Upload release binary" + - name: "Build release binary (arm64)" + run: cargo build --target aarch64-pc-windows-msvc --profile dev + working-directory: rust + - name: "Rename binary (x86)" + run: mv rust/target/i686-pc-windows-msvc/debug/selenium-manager.exe selenium-manager-windows-debug.exe + - name: "Rename binary (arm64)" + run: mv rust/target/aarch64-pc-windows-msvc/debug/selenium-manager.exe selenium-manager-windows-arm64-debug.exe + - name: "Upload release binary (x86)" uses: actions/upload-artifact@v4 with: name: selenium-manager-windows-debug path: selenium-manager-windows-debug.exe retention-days: 6 + - name: "Upload release binary (arm64)" + uses: actions/upload-artifact@v4 + with: + name: selenium-manager-windows-arm64-debug + path: selenium-manager-windows-arm64-debug.exe + retention-days: 6 linux-stable: name: "Linux Stable" @@ -248,7 +270,8 @@ jobs: linux_sha=$(shasum -a 256 artifacts/selenium-manager-linux/selenium-manager-linux | awk '{print $1}') macos_sha=$(shasum -a 256 artifacts/selenium-manager-macos/selenium-manager-macos | awk '{print $1}') windows_sha=$(shasum -a 256 artifacts/selenium-manager-windows/selenium-manager-windows.exe | awk '{print $1}') - echo "{\"macos\": \"$macos_sha\", \"windows\": \"$windows_sha\", \"linux\": \"$linux_sha\"}" > latest.json + windows_arm64_sha=$(shasum -a 256 artifacts/selenium-manager-windows/selenium-manager-windows-arm64.exe | awk '{print $1}') + echo "{\"macos\": \"$macos_sha\", \"windows\": \"$windows_sha\", \"windows-arm64\": \"$windows_arm64_sha\", \"linux\": \"$linux_sha\"}" > latest.json git config --local user.email "selenium-ci@users.noreply.github.com" git config --local user.name "Selenium CI Bot" git add latest.json @@ -269,6 +292,8 @@ jobs: artifacts/selenium-manager-linux/selenium-manager-linux artifacts/selenium-manager-macos/selenium-manager-macos artifacts/selenium-manager-windows/selenium-manager-windows.exe + artifacts/selenium-manager-windows-arm64/selenium-manager-windows-arm64.exe artifacts/selenium-manager-linux-debug/selenium-manager-linux-debug.tar artifacts/selenium-manager-macos-debug/selenium-manager-macos-debug.tar artifacts/selenium-manager-windows-debug/selenium-manager-windows-debug.exe + artifacts/selenium-manager-windows-arm64-debug/selenium-manager-windows-arm64-debug.exe From 560650ba9ff6d488392b75e8bba41b993088bdcf Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Mon, 28 Jul 2025 20:04:09 +0200 Subject: [PATCH 3/6] bazel.yml: fix Windows detection logic to also work on windows-11-arm --- .github/workflows/bazel.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 017ab6fa92eea..5820db7d3168e 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -89,16 +89,16 @@ jobs: if: contains(github.ref, 'renovate/') run: git pull origin ${{ github.ref }} - name: Free space - if: inputs.os != 'windows' + if: "!contains(inputs.os, 'windows')" run: ./scripts/github-actions/free-disk-space.sh - name: Remove driver directories Windows - if: inputs.os == 'windows' + if: contains(inputs.os, 'windows') run: | rm "$env:ChromeWebDriver" -r -v rm "$env:EdgeWebDriver" -r -v rm "$env:GeckoWebDriver" -r -v - name: Remove driver directories Non-Windows - if: inputs.os != 'windows' + if: "!contains(inputs.os, 'windows')" run: | sudo rm -rf "$CHROMEWEBDRIVER" "$EDGEWEBDRIVER" "$GECKOWEBDRIVER" - name: Set Ruby version @@ -132,7 +132,7 @@ jobs: name: ${{ inputs.cache-key }} manifest: crates: rust/Cargo.Bazel.lock - rules_ruby++ruby+ruby: ${{ inputs.os == 'windows' && 'false' || 'rb/.ruby-version' }} + rules_ruby++ruby+ruby: ${{ contains(inputs.os, 'windows') && 'false' || 'rb/.ruby-version' }} repository-cache: true - name: Setup Bazel without caching if: inputs.caching == false @@ -150,7 +150,7 @@ jobs: fluxbox -display :99 & echo "DISPLAY=:99" >> "$GITHUB_ENV" - name: Set resolution - if: inputs.os == 'windows' && inputs.browser != '' + if: contains(inputs.os, 'windows') && inputs.browser != '' run: Set-DisplayResolution -Width 1920 -Height 1080 -Force - name: Setup Safari if: inputs.browser == 'safari' From c5e8084cb2d9251823abadb000ee2607af2a8bb0 Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Mon, 2 Feb 2026 20:09:26 +0100 Subject: [PATCH 4/6] Fix CI build on windows-11-arm --- .github/workflows/bazel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 0d4759a675ecb..1e15ecdaf04d4 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -130,7 +130,7 @@ jobs: bazelisk-cache: true bazelrc: common --color=yes # Workaround for long path issues: https://github.com/bazelbuild/bazel/pull/22532 - output-base: ${{ contains(inputs.os, 'windows') && 'D://b' || '' }} + output-base: ${{ inputs.os == 'windows-11-arm' && 'C://b' || (startsWith(inputs.os, 'windows') && 'D://b' || '') }} cache-version: 2 disk-cache: false external-cache: | From 3da14dbfdc0fff267591c2049d4fef26ff44eedc Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Fri, 13 Mar 2026 09:27:12 +0100 Subject: [PATCH 5/6] Ensure Windows arm64 builds and tests correctly --- MODULE.bazel | 8 + rust/Cargo.Bazel.lock | 8611 +++++++++++++---------- rust/Cargo.aarch64-pc-windows-msvc.toml | 6 - rust/Cargo.lock | 1211 ++-- rust/Cargo.toml | 12 +- rust/src/files.rs | 7 +- rust/src/lib.rs | 17 +- 7 files changed, 5723 insertions(+), 4149 deletions(-) delete mode 100644 rust/Cargo.aarch64-pc-windows-msvc.toml diff --git a/MODULE.bazel b/MODULE.bazel index 901e492751c02..be42c9996cd0b 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -375,6 +375,14 @@ crate.from_cargo( cargo_lockfile = "//rust:Cargo.lock", lockfile = "//rust:Cargo.Bazel.lock", manifests = ["//rust:Cargo.toml"], + supported_platform_triples = [ + "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", + "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + ], ) use_repo(crate, "crates") diff --git a/rust/Cargo.Bazel.lock b/rust/Cargo.Bazel.lock index d4d3984c1b337..90729071ecb81 100644 --- a/rust/Cargo.Bazel.lock +++ b/rust/Cargo.Bazel.lock @@ -1,54 +1,6 @@ { - "checksum": "9db0ccfee7f54ecefc6998f694fe9a07d8558cf265659fefcb4d4435a7be808c", + "checksum": "0a064e91c585682ef176de889424333a9e51ed92b20df27d002768ed313f8c97", "crates": { - "addr2line 0.25.1": { - "name": "addr2line", - "version": "0.25.1", - "package_url": "https://github.com/gimli-rs/addr2line", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/addr2line/0.25.1/download", - "sha256": "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "addr2line", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "addr2line", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "gimli 0.32.3", - "target": "gimli" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.25.1" - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "adler2 2.0.1": { "name": "adler2", "version": "2.0.1", @@ -89,14 +41,14 @@ ], "license_file": "LICENSE-0BSD" }, - "aho-corasick 1.1.3": { + "aho-corasick 1.1.4": { "name": "aho-corasick", - "version": "1.1.3", + "version": "1.1.4", "package_url": "https://github.com/BurntSushi/aho-corasick", "repository": { "Http": { - "url": "https://static.crates.io/crates/aho-corasick/1.1.3/download", - "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" + "url": "https://static.crates.io/crates/aho-corasick/1.1.4/download", + "sha256": "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" } }, "targets": [ @@ -128,14 +80,14 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" } ], "selects": {} }, "edition": "2021", - "version": "1.1.3" + "version": "1.1.4" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -176,7 +128,7 @@ "deps": { "common": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], @@ -192,14 +144,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstream 0.6.20": { + "anstream 0.6.21": { "name": "anstream", - "version": "0.6.20", + "version": "0.6.21", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstream/0.6.20/download", - "sha256": "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" + "url": "https://static.crates.io/crates/anstream/0.6.21/download", + "sha256": "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" } }, "targets": [ @@ -224,7 +176,6 @@ "crate_features": { "common": [ "auto", - "default", "wincon" ], "selects": {} @@ -240,7 +191,96 @@ "target": "anstyle_parse" }, { - "id": "anstyle-query 1.1.4", + "id": "anstyle-query 1.1.5", + "target": "anstyle_query" + }, + { + "id": "colorchoice 1.0.4", + "target": "colorchoice" + }, + { + "id": "is_terminal_polyfill 1.70.2", + "target": "is_terminal_polyfill" + }, + { + "id": "utf8parse 0.2.2", + "target": "utf8parse" + } + ], + "selects": { + "aarch64-pc-windows-msvc": [ + { + "id": "anstyle-wincon 3.0.11", + "target": "anstyle_wincon" + } + ], + "x86_64-pc-windows-msvc": [ + { + "id": "anstyle-wincon 3.0.11", + "target": "anstyle_wincon" + } + ] + } + }, + "edition": "2021", + "version": "0.6.21" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "anstream 1.0.0": { + "name": "anstream", + "version": "1.0.0", + "package_url": "https://github.com/rust-cli/anstyle.git", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/anstream/1.0.0/download", + "sha256": "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "anstream", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "anstream", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "auto", + "default", + "wincon" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "anstyle 1.0.13", + "target": "anstyle" + }, + { + "id": "anstyle-parse 1.0.0", + "target": "anstyle_parse" + }, + { + "id": "anstyle-query 1.1.5", "target": "anstyle_query" }, { @@ -248,7 +288,7 @@ "target": "colorchoice" }, { - "id": "is_terminal_polyfill 1.70.1", + "id": "is_terminal_polyfill 1.70.2", "target": "is_terminal_polyfill" }, { @@ -257,16 +297,22 @@ } ], "selects": { + "aarch64-pc-windows-msvc": [ + { + "id": "anstyle-wincon 3.0.11", + "target": "anstyle_wincon" + } + ], "x86_64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.10", + "id": "anstyle-wincon 3.0.11", "target": "anstyle_wincon" } ] } }, "edition": "2021", - "version": "0.6.20" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -376,14 +422,69 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-query 1.1.4": { + "anstyle-parse 1.0.0": { + "name": "anstyle-parse", + "version": "1.0.0", + "package_url": "https://github.com/rust-cli/anstyle.git", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/anstyle-parse/1.0.0/download", + "sha256": "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "anstyle_parse", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "anstyle_parse", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "utf8" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "utf8parse 0.2.2", + "target": "utf8parse" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "anstyle-query 1.1.5": { "name": "anstyle-query", - "version": "1.1.4", + "version": "1.1.5", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.1.4/download", - "sha256": "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" + "url": "https://static.crates.io/crates/anstyle-query/1.1.5/download", + "sha256": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" } }, "targets": [ @@ -410,14 +511,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.60.2", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.1.4" + "version": "1.1.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -426,14 +527,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-wincon 3.0.10": { + "anstyle-wincon 3.0.11": { "name": "anstyle-wincon", - "version": "3.0.10", + "version": "3.0.11", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.10/download", - "sha256": "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" + "url": "https://static.crates.io/crates/anstyle-wincon/3.0.11/download", + "sha256": "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" } }, "targets": [ @@ -465,18 +566,18 @@ "selects": { "cfg(windows)": [ { - "id": "once_cell_polyfill 1.70.1", + "id": "once_cell_polyfill 1.70.2", "target": "once_cell_polyfill" }, { - "id": "windows-sys 0.60.2", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "3.0.10" + "version": "3.0.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -485,14 +586,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anyhow 1.0.100": { + "anyhow 1.0.102": { "name": "anyhow", - "version": "1.0.100", + "version": "1.0.102", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.100/download", - "sha256": "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" + "url": "https://static.crates.io/crates/anyhow/1.0.102/download", + "sha256": "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" } }, "targets": [ @@ -529,6 +630,7 @@ "crate_features": { "common": [ "backtrace", + "default", "std" ], "selects": {} @@ -536,18 +638,14 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "build_script_build" - }, - { - "id": "backtrace 0.3.76", - "target": "backtrace" } ], "selects": {} }, - "edition": "2018", - "version": "1.0.100" + "edition": "2021", + "version": "1.0.102" }, "build_script_attrs": { "compile_data_glob": [ @@ -607,7 +705,7 @@ "target": "cpio_archive" }, { - "id": "flate2 1.1.2", + "id": "flate2 1.1.9", "target": "flate2" }, { @@ -623,7 +721,7 @@ "target": "serde_xml_rs" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -689,7 +787,7 @@ "target": "bzip2" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -701,11 +799,11 @@ "target": "digest" }, { - "id": "flate2 1.1.2", + "id": "flate2 1.1.9", "target": "flate2" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -717,7 +815,7 @@ "target": "rand" }, { - "id": "reqwest 0.12.23", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -745,11 +843,11 @@ "target": "signature" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" }, { @@ -757,7 +855,7 @@ "target": "x509_certificate" }, { - "id": "xml-rs 0.8.27", + "id": "xml-rs 0.8.28", "target": "xml" }, { @@ -899,14 +997,14 @@ ], "license_file": "LICENSE-APACHE" }, - "assert_cmd 2.0.17": { + "assert_cmd 2.2.0": { "name": "assert_cmd", - "version": "2.0.17", + "version": "2.2.0", "package_url": "https://github.com/assert-rs/assert_cmd.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/assert_cmd/2.0.17/download", - "sha256": "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66" + "url": "https://static.crates.io/crates/assert_cmd/2.2.0/download", + "sha256": "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9" } }, "targets": [ @@ -947,27 +1045,23 @@ "target": "anstyle" }, { - "id": "assert_cmd 2.0.17", + "id": "assert_cmd 2.2.0", "target": "build_script_build" }, { - "id": "bstr 1.12.0", + "id": "bstr 1.12.1", "target": "bstr" }, { - "id": "doc-comment 0.3.3", - "target": "doc_comment" - }, - { - "id": "predicates 3.1.3", + "id": "predicates 3.1.4", "target": "predicates" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.10", "target": "predicates_core" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.13", "target": "predicates_tree" }, { @@ -978,14 +1072,14 @@ "selects": { "cfg(any())": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] } }, - "edition": "2021", - "version": "2.0.17" + "edition": "2024", + "version": "2.2.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -1083,90 +1177,6 @@ ], "license_file": "LICENSE-APACHE" }, - "backtrace 0.3.76": { - "name": "backtrace", - "version": "0.3.76", - "package_url": "https://github.com/rust-lang/backtrace-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/backtrace/0.3.76/download", - "sha256": "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "backtrace", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "backtrace", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "rustc-demangle 0.1.26", - "target": "rustc_demangle" - } - ], - "selects": { - "cfg(any(windows, target_os = \"cygwin\"))": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ - { - "id": "addr2line 0.25.1", - "target": "addr2line" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "miniz_oxide 0.8.9", - "target": "miniz_oxide" - }, - { - "id": "object 0.37.3", - "target": "object" - } - ] - } - }, - "edition": "2021", - "version": "0.3.76" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "base64 0.22.1": { "name": "base64", "version": "0.22.1", @@ -1214,14 +1224,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64ct 1.8.0": { + "base64ct 1.8.3": { "name": "base64ct", - "version": "1.8.0", + "version": "1.8.3", "package_url": "https://github.com/RustCrypto/formats", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64ct/1.8.0/download", - "sha256": "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" + "url": "https://static.crates.io/crates/base64ct/1.8.3/download", + "sha256": "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" } }, "targets": [ @@ -1244,7 +1254,7 @@ "**" ], "edition": "2024", - "version": "1.8.0" + "version": "1.8.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -1285,7 +1295,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -1404,14 +1414,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bitflags 2.9.4": { + "bitflags 2.11.0": { "name": "bitflags", - "version": "2.9.4", + "version": "2.11.0", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.9.4/download", - "sha256": "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" + "url": "https://static.crates.io/crates/bitflags/2.11.0/download", + "sha256": "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" } }, "targets": [ @@ -1442,19 +1452,16 @@ "aarch64-unknown-linux-gnu": [ "std" ], - "wasm32-wasip1": [ + "x86_64-apple-darwin": [ "std" ], "x86_64-unknown-linux-gnu": [ "std" - ], - "x86_64-unknown-nixos-gnu": [ - "std" ] } }, "edition": "2021", - "version": "2.9.4" + "version": "2.11.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1511,14 +1518,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bstr 1.12.0": { + "bstr 1.12.1": { "name": "bstr", - "version": "1.12.0", + "version": "1.12.1", "package_url": "https://github.com/BurntSushi/bstr", "repository": { "Http": { - "url": "https://static.crates.io/crates/bstr/1.12.0/download", - "sha256": "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" + "url": "https://static.crates.io/crates/bstr/1.12.1/download", + "sha256": "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" } }, "targets": [ @@ -1552,18 +1559,18 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "regex-automata 0.4.11", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ], "selects": {} }, "edition": "2021", - "version": "1.12.0" + "version": "1.12.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1572,14 +1579,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bumpalo 3.19.0": { + "bumpalo 3.20.2": { "name": "bumpalo", - "version": "3.19.0", + "version": "3.20.2", "package_url": "https://github.com/fitzgen/bumpalo", "repository": { "Http": { - "url": "https://static.crates.io/crates/bumpalo/3.19.0/download", - "sha256": "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" + "url": "https://static.crates.io/crates/bumpalo/3.20.2/download", + "sha256": "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" } }, "targets": [ @@ -1608,7 +1615,7 @@ "selects": {} }, "edition": "2021", - "version": "3.19.0" + "version": "3.20.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1663,14 +1670,14 @@ ], "license_file": "LICENSE-MIT" }, - "bytes 1.10.1": { + "bytes 1.11.1": { "name": "bytes", - "version": "1.10.1", + "version": "1.11.1", "package_url": "https://github.com/tokio-rs/bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytes/1.10.1/download", - "sha256": "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" + "url": "https://static.crates.io/crates/bytes/1.11.1/download", + "sha256": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" } }, "targets": [ @@ -1699,8 +1706,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.10.1" + "edition": "2021", + "version": "1.11.1" }, "license": "MIT", "license_ids": [ @@ -1744,7 +1751,7 @@ "target": "bzip2_sys" }, { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], @@ -1760,14 +1767,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bzip2 0.6.0": { + "bzip2 0.6.1": { "name": "bzip2", - "version": "0.6.0", + "version": "0.6.1", "package_url": "https://github.com/trifectatechfoundation/bzip2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/bzip2/0.6.0/download", - "sha256": "bea8dcd42434048e4f7a304411d9273a411f647446c1234a65ce0554923f4cff" + "url": "https://static.crates.io/crates/bzip2/0.6.1/download", + "sha256": "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" } }, "targets": [ @@ -1805,7 +1812,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.0" + "version": "0.6.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1880,7 +1887,7 @@ "deps": { "common": [ { - "id": "cc 1.2.39", + "id": "cc 1.2.56", "target": "cc" }, { @@ -1899,14 +1906,14 @@ ], "license_file": "LICENSE-APACHE" }, - "cc 1.2.39": { + "cc 1.2.56": { "name": "cc", - "version": "1.2.39", + "version": "1.2.56", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.39/download", - "sha256": "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" + "url": "https://static.crates.io/crates/cc/1.2.56/download", + "sha256": "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" } }, "targets": [ @@ -1937,7 +1944,7 @@ "deps": { "common": [ { - "id": "find-msvc-tools 0.1.2", + "id": "find-msvc-tools 0.1.9", "target": "find_msvc_tools" }, { @@ -1952,32 +1959,32 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], - "x86_64-unknown-linux-gnu": [ + "x86_64-apple-darwin": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], - "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] } }, "edition": "2018", - "version": "1.2.39" + "version": "1.2.56" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2026,7 +2033,7 @@ "target": "fnv" }, { - "id": "uuid 1.18.1", + "id": "uuid 1.22.0", "target": "uuid" } ], @@ -2041,14 +2048,14 @@ ], "license_file": "LICENSE" }, - "cfg-if 1.0.3": { + "cfg-if 1.0.4": { "name": "cfg-if", - "version": "1.0.3", + "version": "1.0.4", "package_url": "https://github.com/rust-lang/cfg-if", "repository": { "Http": { - "url": "https://static.crates.io/crates/cfg-if/1.0.3/download", - "sha256": "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" + "url": "https://static.crates.io/crates/cfg-if/1.0.4/download", + "sha256": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" } }, "targets": [ @@ -2071,7 +2078,7 @@ "**" ], "edition": "2018", - "version": "1.0.3" + "version": "1.0.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2118,14 +2125,14 @@ ], "license_file": "LICENSE" }, - "chrono 0.4.42": { + "chrono 0.4.44": { "name": "chrono", - "version": "0.4.42", + "version": "0.4.44", "package_url": "https://github.com/chronotope/chrono", "repository": { "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.42/download", - "sha256": "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" + "url": "https://static.crates.io/crates/chrono/0.4.44/download", + "sha256": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" } }, "targets": [ @@ -2167,6 +2174,10 @@ }, "deps": { "common": [ + { + "id": "iana-time-zone 0.1.65", + "target": "iana_time_zone" + }, { "id": "num-traits 0.2.19", "target": "num_traits" @@ -2176,51 +2187,10 @@ "target": "serde" } ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ], - "wasm32-unknown-unknown": [ - { - "id": "js-sys 0.3.81", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "iana-time-zone 0.1.64", - "target": "iana_time_zone" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.4.42" + "version": "0.4.44" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2229,14 +2199,14 @@ ], "license_file": "LICENSE.txt" }, - "clap 4.5.48": { + "clap 4.6.0": { "name": "clap", - "version": "4.5.48", + "version": "4.6.0", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.5.48/download", - "sha256": "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" + "url": "https://static.crates.io/crates/clap/4.6.0/download", + "sha256": "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" } }, "targets": [ @@ -2275,23 +2245,23 @@ "deps": { "common": [ { - "id": "clap_builder 4.5.48", + "id": "clap_builder 4.6.0", "target": "clap_builder" } ], "selects": {} }, - "edition": "2021", + "edition": "2024", "proc_macro_deps": { "common": [ { - "id": "clap_derive 4.5.47", + "id": "clap_derive 4.6.0", "target": "clap_derive" } ], "selects": {} }, - "version": "4.5.48" + "version": "4.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2300,14 +2270,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_builder 4.5.48": { + "clap_builder 4.6.0": { "name": "clap_builder", - "version": "4.5.48", + "version": "4.6.0", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.48/download", - "sha256": "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" + "url": "https://static.crates.io/crates/clap_builder/4.6.0/download", + "sha256": "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" } }, "targets": [ @@ -2344,7 +2314,7 @@ "deps": { "common": [ { - "id": "anstream 0.6.20", + "id": "anstream 1.0.0", "target": "anstream" }, { @@ -2352,7 +2322,7 @@ "target": "anstyle" }, { - "id": "clap_lex 0.7.5", + "id": "clap_lex 1.1.0", "target": "clap_lex" }, { @@ -2362,8 +2332,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "4.5.48" + "edition": "2024", + "version": "4.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2372,14 +2342,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_derive 4.5.47": { + "clap_derive 4.6.0": { "name": "clap_derive", - "version": "4.5.47", + "version": "4.6.0", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.47/download", - "sha256": "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" + "url": "https://static.crates.io/crates/clap_derive/4.6.0/download", + "sha256": "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" } }, "targets": [ @@ -2414,22 +2384,22 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, - "edition": "2021", - "version": "4.5.47" + "edition": "2024", + "version": "4.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2438,14 +2408,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_lex 0.7.5": { + "clap_lex 1.1.0": { "name": "clap_lex", - "version": "0.7.5", + "version": "1.1.0", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.5/download", - "sha256": "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" + "url": "https://static.crates.io/crates/clap_lex/1.1.0/download", + "sha256": "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" } }, "targets": [ @@ -2467,8 +2437,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.7.5" + "edition": "2024", + "version": "1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2555,6 +2525,58 @@ ], "license_file": "LICENSE-APACHE" }, + "core-foundation 0.10.1": { + "name": "core-foundation", + "version": "0.10.1", + "package_url": "https://github.com/servo/core-foundation-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/core-foundation/0.10.1/download", + "sha256": "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "core_foundation", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "core_foundation", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.10.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "core-foundation-sys 0.8.7": { "name": "core-foundation-sys", "version": "0.8.7", @@ -2633,7 +2655,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -2694,25 +2716,25 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] @@ -2728,14 +2750,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crc 3.3.0": { + "crc 3.4.0": { "name": "crc", - "version": "3.3.0", + "version": "3.4.0", "package_url": "https://github.com/mrhooray/crc-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/crc/3.3.0/download", - "sha256": "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" + "url": "https://static.crates.io/crates/crc/3.4.0/download", + "sha256": "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" } }, "targets": [ @@ -2767,7 +2789,7 @@ "selects": {} }, "edition": "2021", - "version": "3.3.0" + "version": "3.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2866,7 +2888,7 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { @@ -2897,14 +2919,14 @@ ], "license_file": "LICENSE-APACHE" }, - "crypto-common 0.1.6": { + "crypto-common 0.1.7": { "name": "crypto-common", - "version": "0.1.6", + "version": "0.1.7", "package_url": "https://github.com/RustCrypto/traits", "repository": { "Http": { - "url": "https://static.crates.io/crates/crypto-common/0.1.6/download", - "sha256": "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" + "url": "https://static.crates.io/crates/crypto-common/0.1.7/download", + "sha256": "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" } }, "targets": [ @@ -2939,14 +2961,14 @@ "target": "generic_array" }, { - "id": "typenum 1.18.0", + "id": "typenum 1.19.0", "target": "typenum" } ], "selects": {} }, "edition": "2018", - "version": "0.1.6" + "version": "0.1.7" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2998,11 +3020,11 @@ "target": "bcder" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -3010,11 +3032,11 @@ "target": "hex" }, { - "id": "pem 3.0.5", + "id": "pem 3.0.6", "target": "pem" }, { - "id": "reqwest 0.12.23", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -3085,7 +3107,7 @@ "target": "bzip2" }, { - "id": "flate2 1.1.2", + "id": "flate2 1.1.9", "target": "flate2" }, { @@ -3097,7 +3119,7 @@ "target": "infer" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -3184,14 +3206,14 @@ ], "license_file": "LICENSE-APACHE" }, - "deranged 0.5.4": { + "deranged 0.5.8": { "name": "deranged", - "version": "0.5.4", + "version": "0.5.8", "package_url": "https://github.com/jhpratt/deranged", "repository": { "Http": { - "url": "https://static.crates.io/crates/deranged/0.5.4/download", - "sha256": "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071" + "url": "https://static.crates.io/crates/deranged/0.5.8/download", + "sha256": "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" } }, "targets": [ @@ -3230,7 +3252,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.4" + "version": "0.5.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3271,15 +3293,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], @@ -3379,7 +3401,7 @@ "target": "block_buffer" }, { - "id": "crypto-common 0.1.6", + "id": "crypto-common 0.1.7", "target": "crypto_common" } ], @@ -3488,13 +3510,13 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.61.1", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] @@ -3542,15 +3564,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], @@ -3566,84 +3588,14 @@ ], "license_file": "LICENSE-APACHE" }, - "doc-comment 0.3.3": { - "name": "doc-comment", - "version": "0.3.3", - "package_url": "https://github.com/GuillaumeGomez/doc-comment", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/doc-comment/0.3.3/download", - "sha256": "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" - } - }, - "targets": [ - { - "Library": { - "crate_name": "doc_comment", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "doc_comment", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "doc-comment 0.3.3", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2015", - "version": "0.3.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, - "env_filter 0.1.3": { + "env_filter 1.0.0": { "name": "env_filter", - "version": "0.1.3", + "version": "1.0.0", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.3/download", - "sha256": "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" + "url": "https://static.crates.io/crates/env_filter/1.0.0/download", + "sha256": "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f" } }, "targets": [ @@ -3674,57 +3626,18 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "regex 1.11.3", + "id": "regex 1.12.3", "target": "regex" } ], "selects": {} }, "edition": "2021", - "version": "0.1.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "env_home 0.1.0": { - "name": "env_home", - "version": "0.1.0", - "package_url": "https://github.com/notpeter/env-home", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/env_home/0.1.0/download", - "sha256": "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe" - } - }, - "targets": [ - { - "Library": { - "crate_name": "env_home", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "env_home", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.0" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3733,14 +3646,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_logger 0.11.8": { + "env_logger 0.11.9": { "name": "env_logger", - "version": "0.11.8", + "version": "0.11.9", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.8/download", - "sha256": "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" + "url": "https://static.crates.io/crates/env_logger/0.11.9/download", + "sha256": "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d" } }, "targets": [ @@ -3775,7 +3688,7 @@ "deps": { "common": [ { - "id": "anstream 0.6.20", + "id": "anstream 0.6.21", "target": "anstream" }, { @@ -3783,22 +3696,22 @@ "target": "anstyle" }, { - "id": "env_filter 0.1.3", + "id": "env_filter 1.0.0", "target": "env_filter" }, { - "id": "jiff 0.2.15", + "id": "jiff 0.2.23", "target": "jiff" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.11.8" + "version": "0.11.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -3886,25 +3799,25 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.61.1", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] @@ -4005,14 +3918,14 @@ ], "license_file": "LICENSE-APACHE" }, - "filetime 0.2.26": { + "filetime 0.2.27": { "name": "filetime", - "version": "0.2.26", + "version": "0.2.27", "package_url": "https://github.com/alexcrichton/filetime", "repository": { "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.26/download", - "sha256": "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" + "url": "https://static.crates.io/crates/filetime/0.2.27/download", + "sha256": "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" } }, "targets": [ @@ -4037,33 +3950,27 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" } ], "selects": { "cfg(target_os = \"redox\")": [ { - "id": "libredox 0.1.10", + "id": "libredox 0.1.14", "target": "libredox" } ], "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } ] } }, "edition": "2018", - "version": "0.2.26" + "version": "0.2.27" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -4104,11 +4011,11 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { - "id": "filetime 0.2.26", + "id": "filetime 0.2.27", "target": "filetime" } ], @@ -4131,14 +4038,14 @@ ], "license_file": "LICENSE-APACHE" }, - "find-msvc-tools 0.1.2": { + "find-msvc-tools 0.1.9": { "name": "find-msvc-tools", - "version": "0.1.2", + "version": "0.1.9", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/find-msvc-tools/0.1.2/download", - "sha256": "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959" + "url": "https://static.crates.io/crates/find-msvc-tools/0.1.9/download", + "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" } }, "targets": [ @@ -4161,7 +4068,7 @@ "**" ], "edition": "2018", - "version": "0.1.2" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4170,14 +4077,14 @@ ], "license_file": "LICENSE-APACHE" }, - "flate2 1.1.2": { + "flate2 1.1.9": { "name": "flate2", - "version": "1.1.2", + "version": "1.1.9", "package_url": "https://github.com/rust-lang/flate2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/flate2/1.1.2/download", - "sha256": "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" + "url": "https://static.crates.io/crates/flate2/1.1.9/download", + "sha256": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" } }, "targets": [ @@ -4204,7 +4111,6 @@ "any_impl", "any_zlib", "default", - "libz-rs-sys", "miniz_oxide", "rust_backend", "zlib-rs" @@ -4217,19 +4123,19 @@ "id": "crc32fast 1.5.0", "target": "crc32fast" }, - { - "id": "libz-rs-sys 0.5.2", - "target": "libz_rs_sys" - }, { "id": "miniz_oxide 0.8.9", "target": "miniz_oxide" + }, + { + "id": "zlib-rs 0.6.3", + "target": "zlib_rs" } ], "selects": {} }, "edition": "2018", - "version": "1.1.2" + "version": "1.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4284,20 +4190,20 @@ ], "license_file": "LICENSE-APACHE" }, - "form_urlencoded 1.2.2": { - "name": "form_urlencoded", - "version": "1.2.2", - "package_url": "https://github.com/servo/rust-url", + "foldhash 0.1.5": { + "name": "foldhash", + "version": "0.1.5", + "package_url": "https://github.com/orlp/foldhash", "repository": { "Http": { - "url": "https://static.crates.io/crates/form_urlencoded/1.2.2/download", - "sha256": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" + "url": "https://static.crates.io/crates/foldhash/0.1.5/download", + "sha256": "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" } }, "targets": [ { "Library": { - "crate_name": "form_urlencoded", + "crate_name": "foldhash", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -4308,46 +4214,171 @@ } } ], - "library_target_name": "form_urlencoded", + "library_target_name": "foldhash", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc", - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "percent-encoding 2.3.2", - "target": "percent_encoding" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.2.2" + "edition": "2021", + "version": "0.1.5" }, - "license": "MIT OR Apache-2.0", + "license": "Zlib", "license_ids": [ - "Apache-2.0", - "MIT" + "Zlib" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE" }, - "fs2 0.4.3": { - "name": "fs2", - "version": "0.4.3", - "package_url": "https://github.com/danburkert/fs2-rs", + "foreign-types 0.3.2": { + "name": "foreign-types", + "version": "0.3.2", + "package_url": "https://github.com/sfackler/foreign-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/fs2/0.4.3/download", - "sha256": "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" + "url": "https://static.crates.io/crates/foreign-types/0.3.2/download", + "sha256": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" + } + }, + "targets": [ + { + "Library": { + "crate_name": "foreign_types", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "foreign_types", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "foreign-types-shared 0.1.1", + "target": "foreign_types_shared" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "0.3.2" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "foreign-types-shared 0.1.1": { + "name": "foreign-types-shared", + "version": "0.1.1", + "package_url": "https://github.com/sfackler/foreign-types", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/foreign-types-shared/0.1.1/download", + "sha256": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + } + }, + "targets": [ + { + "Library": { + "crate_name": "foreign_types_shared", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "foreign_types_shared", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.1.1" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "form_urlencoded 1.2.2": { + "name": "form_urlencoded", + "version": "1.2.2", + "package_url": "https://github.com/servo/rust-url", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/form_urlencoded/1.2.2/download", + "sha256": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" + } + }, + "targets": [ + { + "Library": { + "crate_name": "form_urlencoded", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "form_urlencoded", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "percent-encoding 2.3.2", + "target": "percent_encoding" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "1.2.2" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "fs2 0.4.3": { + "name": "fs2", + "version": "0.4.3", + "package_url": "https://github.com/danburkert/fs2-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/fs2/0.4.3/download", + "sha256": "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" } }, "targets": [ @@ -4374,7 +4405,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], @@ -4434,14 +4465,14 @@ ], "license_file": "LICENSE" }, - "futures-channel 0.3.31": { + "futures-channel 0.3.32": { "name": "futures-channel", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-channel/0.3.31/download", - "sha256": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" + "url": "https://static.crates.io/crates/futures-channel/0.3.32/download", + "sha256": "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" } }, "targets": [ @@ -4467,27 +4498,43 @@ "common": [ "alloc", "default", - "futures-sink", - "sink", "std" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "futures-sink", + "sink" + ], + "x86_64-apple-darwin": [ + "futures-sink", + "sink" + ] + } }, "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" - }, - { - "id": "futures-sink 0.3.31", - "target": "futures_sink" } ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + { + "id": "futures-sink 0.3.32", + "target": "futures_sink" + } + ], + "x86_64-apple-darwin": [ + { + "id": "futures-sink 0.3.32", + "target": "futures_sink" + } + ] + } }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4496,14 +4543,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-core 0.3.31": { + "futures-core 0.3.32": { "name": "futures-core", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-core/0.3.31/download", - "sha256": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" + "url": "https://static.crates.io/crates/futures-core/0.3.32/download", + "sha256": "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" } }, "targets": [ @@ -4528,28 +4575,13 @@ "crate_features": { "common": [ "alloc", + "default", "std" ], - "selects": { - "aarch64-apple-darwin": [ - "default" - ], - "aarch64-unknown-linux-gnu": [ - "default" - ], - "x86_64-pc-windows-msvc": [ - "default" - ], - "x86_64-unknown-linux-gnu": [ - "default" - ], - "x86_64-unknown-nixos-gnu": [ - "default" - ] - } + "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4558,14 +4590,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-io 0.3.31": { + "futures-io 0.3.32": { "name": "futures-io", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-io/0.3.31/download", - "sha256": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" + "url": "https://static.crates.io/crates/futures-io/0.3.32/download", + "sha256": "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" } }, "targets": [ @@ -4594,7 +4626,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4603,14 +4635,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-sink 0.3.31": { + "futures-sink 0.3.32": { "name": "futures-sink", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-sink/0.3.31/download", - "sha256": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" + "url": "https://static.crates.io/crates/futures-sink/0.3.32/download", + "sha256": "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" } }, "targets": [ @@ -4633,7 +4665,7 @@ "**" ], "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4642,14 +4674,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-task 0.3.31": { + "futures-task 0.3.32": { "name": "futures-task", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-task/0.3.31/download", - "sha256": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" + "url": "https://static.crates.io/crates/futures-task/0.3.32/download", + "sha256": "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" } }, "targets": [ @@ -4673,13 +4705,19 @@ ], "crate_features": { "common": [ - "alloc", - "std" + "alloc" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "std" + ], + "x86_64-apple-darwin": [ + "std" + ] + } }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4688,14 +4726,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-util 0.3.31": { + "futures-util 0.3.32": { "name": "futures-util", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-util/0.3.31/download", - "sha256": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" + "url": "https://static.crates.io/crates/futures-util/0.3.32/download", + "sha256": "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" } }, "targets": [ @@ -4720,55 +4758,79 @@ "crate_features": { "common": [ "alloc", - "futures-io", - "futures-sink", - "io", - "memchr", - "sink", - "slab", - "std" + "slab" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "futures-io", + "futures-sink", + "io", + "memchr", + "sink", + "std" + ], + "x86_64-apple-darwin": [ + "futures-io", + "futures-sink", + "io", + "memchr", + "sink", + "std" + ] + } }, "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-io 0.3.31", - "target": "futures_io" - }, - { - "id": "futures-sink 0.3.31", - "target": "futures_sink" - }, - { - "id": "futures-task 0.3.31", + "id": "futures-task 0.3.32", "target": "futures_task" }, { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "pin-utils 0.1.0", - "target": "pin_utils" - }, - { - "id": "slab 0.4.11", + "id": "slab 0.4.12", "target": "slab" } ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + { + "id": "futures-io 0.3.32", + "target": "futures_io" + }, + { + "id": "futures-sink 0.3.32", + "target": "futures_sink" + }, + { + "id": "memchr 2.8.0", + "target": "memchr" + } + ], + "x86_64-apple-darwin": [ + { + "id": "futures-io 0.3.32", + "target": "futures_io" + }, + { + "id": "futures-sink 0.3.32", + "target": "futures_sink" + }, + { + "id": "memchr 2.8.0", + "target": "memchr" + } + ] + } }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4831,7 +4893,7 @@ "target": "build_script_build" }, { - "id": "typenum 1.18.0", + "id": "typenum 1.19.0", "target": "typenum" } ], @@ -4866,14 +4928,14 @@ ], "license_file": "LICENSE" }, - "getrandom 0.2.16": { + "getrandom 0.2.17": { "name": "getrandom", - "version": "0.2.16", + "version": "0.2.17", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.16/download", - "sha256": "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" + "url": "https://static.crates.io/crates/getrandom/0.2.17/download", + "sha256": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" } }, "targets": [ @@ -4896,15 +4958,20 @@ "**" ], "crate_features": { - "common": [ - "std" - ], - "selects": {} + "common": [], + "selects": { + "aarch64-apple-darwin": [ + "std" + ], + "x86_64-apple-darwin": [ + "std" + ] + } }, "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" } ], @@ -4917,14 +4984,14 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] } }, "edition": "2018", - "version": "0.2.16" + "version": "0.2.17" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4933,14 +5000,14 @@ ], "license_file": "LICENSE-APACHE" }, - "getrandom 0.3.3": { + "getrandom 0.3.4": { "name": "getrandom", - "version": "0.3.3", + "version": "0.3.4", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.3.3/download", - "sha256": "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" + "url": "https://static.crates.io/crates/getrandom/0.3.4/download", + "sha256": "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" } }, "targets": [ @@ -4975,35 +5042,33 @@ "**" ], "crate_features": { - "common": [], - "selects": { - "x86_64-pc-windows-msvc": [ - "std" - ] - } + "common": [ + "std" + ], + "selects": {} }, "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { - "id": "getrandom 0.3.3", + "id": "getrandom 0.3.4", "target": "build_script_build" } ], "selects": { "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [ { - "id": "wasi 0.14.7+wasi-0.2.4", - "target": "wasi" + "id": "wasip2 1.0.2+wasi-0.2.9", + "target": "wasip2" } ], "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))": [ @@ -5014,50 +5079,50 @@ ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"netbsd\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"solaris\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"vxworks\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] } }, "edition": "2021", - "version": "0.3.3" + "version": "0.3.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -5077,20 +5142,20 @@ ], "license_file": "LICENSE-APACHE" }, - "gimli 0.32.3": { - "name": "gimli", - "version": "0.32.3", - "package_url": "https://github.com/gimli-rs/gimli", + "getrandom 0.4.2": { + "name": "getrandom", + "version": "0.4.2", + "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/gimli/0.32.3/download", - "sha256": "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" + "url": "https://static.crates.io/crates/getrandom/0.4.2/download", + "sha256": "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" } }, "targets": [ { "Library": { - "crate_name": "gimli", + "crate_name": "getrandom", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -5099,22 +5164,118 @@ ] } } - } - ], - "library_target_name": "gimli", - "common_attrs": { + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "getrandom", + "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "read", - "read-core" + { + "id": "cfg-if 1.0.4", + "target": "cfg_if" + }, + { + "id": "getrandom 0.4.2", + "target": "build_script_build" + } ], - "selects": {} + "selects": { + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [ + { + "id": "wasip2 1.0.2+wasi-0.2.9", + "target": "wasip2" + } + ], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p3\"))": [ + { + "id": "wasip3 0.4.0+wasi-0.3.0-rc-2026-01-06", + "target": "wasip3" + } + ], + "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))": [ + { + "id": "r-efi 6.0.0", + "target": "r_efi" + } + ], + "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(target_os = \"netbsd\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(target_os = \"solaris\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(target_os = \"vxworks\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ] + } }, - "edition": "2018", - "version": "0.32.3" + "edition": "2024", + "version": "0.4.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5207,14 +5368,68 @@ ], "license_file": "LICENSE-APACHE" }, - "hashbrown 0.16.0": { + "hashbrown 0.15.5": { + "name": "hashbrown", + "version": "0.15.5", + "package_url": "https://github.com/rust-lang/hashbrown", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/hashbrown/0.15.5/download", + "sha256": "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" + } + }, + "targets": [ + { + "Library": { + "crate_name": "hashbrown", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "hashbrown", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default-hasher" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "foldhash 0.1.5", + "target": "foldhash" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.15.5" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "hashbrown 0.16.1": { "name": "hashbrown", - "version": "0.16.0", + "version": "0.16.1", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.16.0/download", - "sha256": "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" + "url": "https://static.crates.io/crates/hashbrown/0.16.1/download", + "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" } }, "targets": [ @@ -5237,7 +5452,7 @@ "**" ], "edition": "2021", - "version": "0.16.0" + "version": "0.16.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5332,14 +5547,14 @@ ], "license_file": "LICENSE-APACHE" }, - "http 1.3.1": { + "http 1.4.0": { "name": "http", - "version": "1.3.1", + "version": "1.4.0", "package_url": "https://github.com/hyperium/http", "repository": { "Http": { - "url": "https://static.crates.io/crates/http/1.3.1/download", - "sha256": "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" + "url": "https://static.crates.io/crates/http/1.4.0/download", + "sha256": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" } }, "targets": [ @@ -5371,22 +5586,18 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" } ], "selects": {} }, - "edition": "2018", - "version": "1.3.1" + "edition": "2021", + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5427,11 +5638,11 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" } ], @@ -5484,15 +5695,15 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -5500,7 +5711,7 @@ "target": "http_body" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -5593,14 +5804,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper 1.7.0": { + "hyper 1.8.1": { "name": "hyper", - "version": "1.7.0", + "version": "1.8.1", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/1.7.0/download", - "sha256": "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" + "url": "https://static.crates.io/crates/hyper/1.8.1/download", + "sha256": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" } }, "targets": [ @@ -5637,19 +5848,19 @@ "target": "atomic_waker" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -5661,11 +5872,11 @@ "target": "httparse" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -5677,7 +5888,7 @@ "target": "smallvec" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -5688,7 +5899,7 @@ "selects": {} }, "edition": "2021", - "version": "1.7.0" + "version": "1.8.1" }, "license": "MIT", "license_ids": [ @@ -5738,28 +5949,28 @@ "deps": { "common": [ { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-pki-types 1.12.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -5771,7 +5982,7 @@ "target": "tower_service" }, { - "id": "webpki-roots 1.0.2", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], @@ -5788,14 +5999,90 @@ ], "license_file": "LICENSE" }, - "hyper-util 0.1.17": { + "hyper-tls 0.6.0": { + "name": "hyper-tls", + "version": "0.6.0", + "package_url": "https://github.com/hyperium/hyper-tls", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/hyper-tls/0.6.0/download", + "sha256": "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" + } + }, + "targets": [ + { + "Library": { + "crate_name": "hyper_tls", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "hyper_tls", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bytes 1.11.1", + "target": "bytes" + }, + { + "id": "http-body-util 0.1.3", + "target": "http_body_util" + }, + { + "id": "hyper 1.8.1", + "target": "hyper" + }, + { + "id": "hyper-util 0.1.20", + "target": "hyper_util" + }, + { + "id": "native-tls 0.2.18", + "target": "native_tls" + }, + { + "id": "tokio 1.50.0", + "target": "tokio" + }, + { + "id": "tokio-native-tls 0.3.1", + "target": "tokio_native_tls" + }, + { + "id": "tower-service 0.3.3", + "target": "tower_service" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.6.0" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "hyper-util 0.1.20": { "name": "hyper-util", - "version": "0.1.17", + "version": "0.1.20", "package_url": "https://github.com/hyperium/hyper-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-util/0.1.17/download", - "sha256": "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" + "url": "https://static.crates.io/crates/hyper-util/0.1.20/download", + "sha256": "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" } }, "targets": [ @@ -5835,23 +6122,19 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -5859,15 +6142,15 @@ "target": "http_body" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "ipnet 2.11.0", + "id": "ipnet 2.12.0", "target": "ipnet" }, { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" }, { @@ -5875,15 +6158,15 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "socket2 0.6.0", + "id": "socket2 0.6.3", "target": "socket2" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -5891,14 +6174,14 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": {} }, "edition": "2021", - "version": "0.1.17" + "version": "0.1.20" }, "license": "MIT", "license_ids": [ @@ -5906,14 +6189,14 @@ ], "license_file": "LICENSE" }, - "iana-time-zone 0.1.64": { + "iana-time-zone 0.1.65": { "name": "iana-time-zone", - "version": "0.1.64", + "version": "0.1.65", "package_url": "https://github.com/strawlab/iana-time-zone", "repository": { "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.64/download", - "sha256": "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" + "url": "https://static.crates.io/crates/iana-time-zone/0.1.65/download", + "sha256": "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" } }, "targets": [ @@ -5946,15 +6229,15 @@ "selects": { "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.81", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], @@ -5972,7 +6255,7 @@ ], "cfg(target_os = \"windows\")": [ { - "id": "windows-core 0.62.1", + "id": "windows-core 0.62.2", "target": "windows_core" } ], @@ -5985,7 +6268,7 @@ } }, "edition": "2021", - "version": "0.1.64" + "version": "0.1.65" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -6060,7 +6343,7 @@ "deps": { "common": [ { - "id": "cc 1.2.39", + "id": "cc 1.2.56", "target": "cc" } ], @@ -6074,14 +6357,14 @@ ], "license_file": "LICENSE-APACHE" }, - "icu_collections 2.0.0": { + "icu_collections 2.1.1": { "name": "icu_collections", - "version": "2.0.0", + "version": "2.1.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_collections/2.0.0/download", - "sha256": "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" + "url": "https://static.crates.io/crates/icu_collections/2.1.1/download", + "sha256": "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" } }, "targets": [ @@ -6106,11 +6389,11 @@ "deps": { "common": [ { - "id": "potential_utf 0.1.3", + "id": "potential_utf 0.1.4", "target": "potential_utf" }, { - "id": "yoke 0.8.0", + "id": "yoke 0.8.1", "target": "yoke" }, { @@ -6118,7 +6401,7 @@ "target": "zerofrom" }, { - "id": "zerovec 0.11.4", + "id": "zerovec 0.11.5", "target": "zerovec" } ], @@ -6134,7 +6417,7 @@ ], "selects": {} }, - "version": "2.0.0" + "version": "2.1.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -6142,14 +6425,14 @@ ], "license_file": "LICENSE" }, - "icu_locale_core 2.0.0": { + "icu_locale_core 2.1.1": { "name": "icu_locale_core", - "version": "2.0.0", + "version": "2.1.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_locale_core/2.0.0/download", - "sha256": "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" + "url": "https://static.crates.io/crates/icu_locale_core/2.1.1/download", + "sha256": "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" } }, "targets": [ @@ -6180,19 +6463,19 @@ "deps": { "common": [ { - "id": "litemap 0.8.0", + "id": "litemap 0.8.1", "target": "litemap" }, { - "id": "tinystr 0.8.1", + "id": "tinystr 0.8.2", "target": "tinystr" }, { - "id": "writeable 0.6.1", + "id": "writeable 0.6.2", "target": "writeable" }, { - "id": "zerovec 0.11.4", + "id": "zerovec 0.11.5", "target": "zerovec" } ], @@ -6208,7 +6491,7 @@ ], "selects": {} }, - "version": "2.0.0" + "version": "2.1.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -6216,14 +6499,14 @@ ], "license_file": "LICENSE" }, - "icu_normalizer 2.0.0": { + "icu_normalizer 2.1.1": { "name": "icu_normalizer", - "version": "2.0.0", + "version": "2.1.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_normalizer/2.0.0/download", - "sha256": "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" + "url": "https://static.crates.io/crates/icu_normalizer/2.1.1/download", + "sha256": "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" } }, "targets": [ @@ -6254,15 +6537,15 @@ "deps": { "common": [ { - "id": "icu_collections 2.0.0", + "id": "icu_collections 2.1.1", "target": "icu_collections" }, { - "id": "icu_normalizer_data 2.0.0", + "id": "icu_normalizer_data 2.1.1", "target": "icu_normalizer_data" }, { - "id": "icu_provider 2.0.0", + "id": "icu_provider 2.1.1", "target": "icu_provider" }, { @@ -6270,23 +6553,14 @@ "target": "smallvec" }, { - "id": "zerovec 0.11.4", + "id": "zerovec 0.11.5", "target": "zerovec" } ], "selects": {} }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.0" + "version": "2.1.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -6294,14 +6568,14 @@ ], "license_file": "LICENSE" }, - "icu_normalizer_data 2.0.0": { + "icu_normalizer_data 2.1.1": { "name": "icu_normalizer_data", - "version": "2.0.0", + "version": "2.1.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_normalizer_data/2.0.0/download", - "sha256": "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" + "url": "https://static.crates.io/crates/icu_normalizer_data/2.1.1/download", + "sha256": "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" } }, "targets": [ @@ -6338,14 +6612,14 @@ "deps": { "common": [ { - "id": "icu_normalizer_data 2.0.0", + "id": "icu_normalizer_data 2.1.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "2.0.0" + "version": "2.1.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -6364,14 +6638,14 @@ ], "license_file": "LICENSE" }, - "icu_properties 2.0.1": { + "icu_properties 2.1.2": { "name": "icu_properties", - "version": "2.0.1", + "version": "2.1.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_properties/2.0.1/download", - "sha256": "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" + "url": "https://static.crates.io/crates/icu_properties/2.1.2/download", + "sha256": "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" } }, "targets": [ @@ -6402,47 +6676,34 @@ "deps": { "common": [ { - "id": "icu_collections 2.0.0", + "id": "icu_collections 2.1.1", "target": "icu_collections" }, { - "id": "icu_locale_core 2.0.0", + "id": "icu_locale_core 2.1.1", "target": "icu_locale_core" }, { - "id": "icu_properties_data 2.0.1", + "id": "icu_properties_data 2.1.2", "target": "icu_properties_data" }, { - "id": "icu_provider 2.0.0", + "id": "icu_provider 2.1.1", "target": "icu_provider" }, { - "id": "potential_utf 0.1.3", - "target": "potential_utf" - }, - { - "id": "zerotrie 0.2.2", + "id": "zerotrie 0.2.3", "target": "zerotrie" }, { - "id": "zerovec 0.11.4", + "id": "zerovec 0.11.5", "target": "zerovec" } ], "selects": {} }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "displaydoc 0.2.5", - "target": "displaydoc" - } - ], - "selects": {} - }, - "version": "2.0.1" + "version": "2.1.2" }, "license": "Unicode-3.0", "license_ids": [ @@ -6450,14 +6711,14 @@ ], "license_file": "LICENSE" }, - "icu_properties_data 2.0.1": { + "icu_properties_data 2.1.2": { "name": "icu_properties_data", - "version": "2.0.1", + "version": "2.1.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_properties_data/2.0.1/download", - "sha256": "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" + "url": "https://static.crates.io/crates/icu_properties_data/2.1.2/download", + "sha256": "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" } }, "targets": [ @@ -6494,14 +6755,14 @@ "deps": { "common": [ { - "id": "icu_properties_data 2.0.1", + "id": "icu_properties_data 2.1.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "2.0.1" + "version": "2.1.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -6520,14 +6781,14 @@ ], "license_file": "LICENSE" }, - "icu_provider 2.0.0": { + "icu_provider 2.1.1": { "name": "icu_provider", - "version": "2.0.0", + "version": "2.1.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_provider/2.0.0/download", - "sha256": "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" + "url": "https://static.crates.io/crates/icu_provider/2.1.1/download", + "sha256": "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" } }, "targets": [ @@ -6551,31 +6812,22 @@ ], "crate_features": { "common": [ - "baked", - "zerotrie" + "baked" ], "selects": {} }, "deps": { "common": [ { - "id": "icu_locale_core 2.0.0", + "id": "icu_locale_core 2.1.1", "target": "icu_locale_core" }, { - "id": "stable_deref_trait 1.2.0", - "target": "stable_deref_trait" - }, - { - "id": "tinystr 0.8.1", - "target": "tinystr" - }, - { - "id": "writeable 0.6.1", + "id": "writeable 0.6.2", "target": "writeable" }, { - "id": "yoke 0.8.0", + "id": "yoke 0.8.1", "target": "yoke" }, { @@ -6583,11 +6835,11 @@ "target": "zerofrom" }, { - "id": "zerotrie 0.2.2", + "id": "zerotrie 0.2.3", "target": "zerotrie" }, { - "id": "zerovec 0.11.4", + "id": "zerovec 0.11.5", "target": "zerovec" } ], @@ -6603,7 +6855,7 @@ ], "selects": {} }, - "version": "2.0.0" + "version": "2.1.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -6611,14 +6863,60 @@ ], "license_file": "LICENSE" }, - "idna 1.1.0": { - "name": "idna", - "version": "1.1.0", - "package_url": "https://github.com/servo/rust-url/", + "id-arena 2.3.0": { + "name": "id-arena", + "version": "2.3.0", + "package_url": "https://github.com/fitzgen/id-arena", "repository": { "Http": { - "url": "https://static.crates.io/crates/idna/1.1.0/download", - "sha256": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" + "url": "https://static.crates.io/crates/id-arena/2.3.0/download", + "sha256": "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + } + }, + "targets": [ + { + "Library": { + "crate_name": "id_arena", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "id_arena", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "edition": "2021", + "version": "2.3.0" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "idna 1.1.0": { + "name": "idna", + "version": "1.1.0", + "package_url": "https://github.com/servo/rust-url/", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/idna/1.1.0/download", + "sha256": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" } }, "targets": [ @@ -6713,11 +7011,11 @@ "deps": { "common": [ { - "id": "icu_normalizer 2.0.0", + "id": "icu_normalizer 2.1.1", "target": "icu_normalizer" }, { - "id": "icu_properties 2.0.1", + "id": "icu_properties 2.1.2", "target": "icu_properties" } ], @@ -6817,14 +7115,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indexmap 2.11.4": { + "indexmap 2.13.0": { "name": "indexmap", - "version": "2.11.4", + "version": "2.13.0", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.11.4/download", - "sha256": "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" + "url": "https://static.crates.io/crates/indexmap/2.13.0/download", + "sha256": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" } }, "targets": [ @@ -6849,6 +7147,7 @@ "crate_features": { "common": [ "default", + "serde", "std" ], "selects": {} @@ -6860,14 +7159,18 @@ "target": "equivalent" }, { - "id": "hashbrown 0.16.0", + "id": "hashbrown 0.16.1", "target": "hashbrown" + }, + { + "id": "serde_core 1.0.228", + "target": "serde_core" } ], "selects": {} }, "edition": "2021", - "version": "2.11.4" + "version": "2.13.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -6988,97 +7291,14 @@ ], "license_file": "LICENSE" }, - "io-uring 0.7.10": { - "name": "io-uring", - "version": "0.7.10", - "package_url": "https://github.com/tokio-rs/io-uring", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/io-uring/0.7.10/download", - "sha256": "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "io_uring", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "io_uring", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 2.9.4", - "target": "bitflags" - }, - { - "id": "cfg-if 1.0.3", - "target": "cfg_if" - }, - { - "id": "io-uring 0.7.10", - "target": "build_script_build" - }, - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.7.10" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "ipnet 2.11.0": { + "ipnet 2.12.0": { "name": "ipnet", - "version": "2.11.0", + "version": "2.12.0", "package_url": "https://github.com/krisprice/ipnet", "repository": { "Http": { - "url": "https://static.crates.io/crates/ipnet/2.11.0/download", - "sha256": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + "url": "https://static.crates.io/crates/ipnet/2.12.0/download", + "sha256": "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" } }, "targets": [ @@ -7108,7 +7328,7 @@ "selects": {} }, "edition": "2018", - "version": "2.11.0" + "version": "2.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7117,14 +7337,14 @@ ], "license_file": "LICENSE-APACHE" }, - "iri-string 0.7.8": { + "iri-string 0.7.10": { "name": "iri-string", - "version": "0.7.8", + "version": "0.7.10", "package_url": "https://github.com/lo48576/iri-string", "repository": { "Http": { - "url": "https://static.crates.io/crates/iri-string/0.7.8/download", - "sha256": "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" + "url": "https://static.crates.io/crates/iri-string/0.7.10/download", + "sha256": "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" } }, "targets": [ @@ -7155,7 +7375,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.8" + "version": "0.7.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7214,14 +7434,14 @@ ], "license_file": "LICENSE-APACHE" }, - "is_terminal_polyfill 1.70.1": { + "is_terminal_polyfill 1.70.2": { "name": "is_terminal_polyfill", - "version": "1.70.1", + "version": "1.70.2", "package_url": "https://github.com/polyfill-rs/is_terminal_polyfill", "repository": { "Http": { - "url": "https://static.crates.io/crates/is_terminal_polyfill/1.70.1/download", - "sha256": "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" + "url": "https://static.crates.io/crates/is_terminal_polyfill/1.70.2/download", + "sha256": "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" } }, "targets": [ @@ -7250,7 +7470,7 @@ "selects": {} }, "edition": "2021", - "version": "1.70.1" + "version": "1.70.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7259,14 +7479,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itoa 1.0.15": { + "itoa 1.0.17": { "name": "itoa", - "version": "1.0.15", + "version": "1.0.17", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.15/download", - "sha256": "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + "url": "https://static.crates.io/crates/itoa/1.0.17/download", + "sha256": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" } }, "targets": [ @@ -7288,8 +7508,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.15" + "edition": "2021", + "version": "1.0.17" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7298,14 +7518,14 @@ ], "license_file": "LICENSE-APACHE" }, - "jiff 0.2.15": { + "jiff 0.2.23": { "name": "jiff", - "version": "0.2.15", + "version": "0.2.23", "package_url": "https://github.com/BurntSushi/jiff", "repository": { "Http": { - "url": "https://static.crates.io/crates/jiff/0.2.15/download", - "sha256": "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" + "url": "https://static.crates.io/crates/jiff/0.2.23/download", + "sha256": "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" } }, "targets": [ @@ -7339,11 +7559,11 @@ "selects": { "cfg(not(target_has_atomic = \"ptr\"))": [ { - "id": "portable-atomic 1.11.1", + "id": "portable-atomic 1.13.1", "target": "portable_atomic" }, { - "id": "portable-atomic-util 0.2.4", + "id": "portable-atomic-util 0.2.5", "target": "portable_atomic_util" } ] @@ -7355,13 +7575,13 @@ "selects": { "cfg(any())": [ { - "id": "jiff-static 0.2.15", + "id": "jiff-static 0.2.23", "target": "jiff_static" } ] } }, - "version": "0.2.15" + "version": "0.2.23" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -7370,14 +7590,14 @@ ], "license_file": "LICENSE-MIT" }, - "jiff-static 0.2.15": { + "jiff-static 0.2.23": { "name": "jiff-static", - "version": "0.2.15", + "version": "0.2.23", "package_url": "https://github.com/BurntSushi/jiff", "repository": { "Http": { - "url": "https://static.crates.io/crates/jiff-static/0.2.15/download", - "sha256": "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" + "url": "https://static.crates.io/crates/jiff-static/0.2.23/download", + "sha256": "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" } }, "targets": [ @@ -7402,22 +7622,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.15" + "version": "0.2.23" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -7460,13 +7680,13 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(windows)": [ { - "id": "getrandom 0.3.3", + "id": "getrandom 0.3.4", "target": "getrandom" } ] @@ -7482,14 +7702,14 @@ ], "license_file": "LICENSE-APACHE" }, - "js-sys 0.3.81": { + "js-sys 0.3.91": { "name": "js-sys", - "version": "0.3.81", + "version": "0.3.91", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.81/download", - "sha256": "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" + "url": "https://static.crates.io/crates/js-sys/0.3.91/download", + "sha256": "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" } }, "targets": [ @@ -7511,28 +7731,60 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "once_cell 1.21.3", + "id": "once_cell 1.21.4", "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "0.3.81" + "version": "0.3.91" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "leb128fmt 0.1.0": { + "name": "leb128fmt", + "version": "0.1.0", + "package_url": "https://github.com/bluk/leb128fmt", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/leb128fmt/0.1.0/download", + "sha256": "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + } + }, + "targets": [ + { + "Library": { + "crate_name": "leb128fmt", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "leb128fmt", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7585,14 +7837,14 @@ ], "license_file": "LICENSE" }, - "libc 0.2.176": { + "libc 0.2.183": { "name": "libc", - "version": "0.2.176", + "version": "0.2.183", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.176/download", - "sha256": "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" + "url": "https://static.crates.io/crates/libc/0.2.183/download", + "sha256": "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" } }, "targets": [ @@ -7636,14 +7888,14 @@ "deps": { "common": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.176" + "version": "0.2.183" }, "build_script_attrs": { "compile_data_glob": [ @@ -7663,14 +7915,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libredox 0.1.10": { + "libredox 0.1.14": { "name": "libredox", - "version": "0.1.10", + "version": "0.1.14", "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/libredox/0.1.10/download", - "sha256": "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" + "url": "https://static.crates.io/crates/libredox/0.1.14/download", + "sha256": "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" } }, "targets": [ @@ -7695,22 +7947,14 @@ "deps": { "common": [ { - "id": "bitflags 2.9.4", - "target": "bitflags" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "redox_syscall 0.5.17", + "id": "redox_syscall 0.7.3", "target": "syscall" } ], "selects": {} }, "edition": "2021", - "version": "0.1.10" + "version": "0.1.14" }, "license": "MIT", "license_ids": [ @@ -7718,68 +7962,14 @@ ], "license_file": "LICENSE" }, - "libz-rs-sys 0.5.2": { - "name": "libz-rs-sys", - "version": "0.5.2", - "package_url": "https://github.com/trifectatechfoundation/zlib-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/libz-rs-sys/0.5.2/download", - "sha256": "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "libz_rs_sys", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "libz_rs_sys", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "rust-allocator", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zlib-rs 0.5.2", - "target": "zlib_rs" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.2" - }, - "license": "Zlib", - "license_ids": [ - "Zlib" - ], - "license_file": "LICENSE" - }, - "linux-raw-sys 0.11.0": { + "linux-raw-sys 0.12.1": { "name": "linux-raw-sys", - "version": "0.11.0", + "version": "0.12.1", "package_url": "https://github.com/sunfishcode/linux-raw-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.11.0/download", - "sha256": "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" + "url": "https://static.crates.io/crates/linux-raw-sys/0.12.1/download", + "sha256": "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" } }, "targets": [ @@ -7813,7 +8003,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.0" + "version": "0.12.1" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -7822,14 +8012,14 @@ ], "license_file": "LICENSE-APACHE" }, - "litemap 0.8.0": { + "litemap 0.8.1": { "name": "litemap", - "version": "0.8.0", + "version": "0.8.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/litemap/0.8.0/download", - "sha256": "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" + "url": "https://static.crates.io/crates/litemap/0.8.1/download", + "sha256": "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" } }, "targets": [ @@ -7851,14 +8041,8 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, "edition": "2021", - "version": "0.8.0" + "version": "0.8.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -7866,14 +8050,14 @@ ], "license_file": "LICENSE" }, - "log 0.4.28": { + "log 0.4.29": { "name": "log", - "version": "0.4.28", + "version": "0.4.29", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.28/download", - "sha256": "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" + "url": "https://static.crates.io/crates/log/0.4.29/download", + "sha256": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" } }, "targets": [ @@ -7902,7 +8086,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.28" + "version": "0.4.29" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8046,15 +8230,20 @@ "**" ], "crate_features": { - "common": [ - "static" - ], - "selects": {} + "common": [], + "selects": { + "aarch64-apple-darwin": [ + "static" + ], + "x86_64-apple-darwin": [ + "static" + ] + } }, "deps": { "common": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" }, { @@ -8080,7 +8269,7 @@ "deps": { "common": [ { - "id": "cc 1.2.39", + "id": "cc 1.2.56", "target": "cc" }, { @@ -8138,7 +8327,7 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { @@ -8158,14 +8347,14 @@ ], "license_file": "LICENSE-APACHE" }, - "memchr 2.7.6": { + "memchr 2.8.0": { "name": "memchr", - "version": "2.7.6", + "version": "2.8.0", "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/memchr/2.7.6/download", - "sha256": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + "url": "https://static.crates.io/crates/memchr/2.8.0/download", + "sha256": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" } }, "targets": [ @@ -8196,7 +8385,7 @@ "selects": {} }, "edition": "2021", - "version": "2.7.6" + "version": "2.8.0" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -8236,6 +8425,8 @@ ], "crate_features": { "common": [ + "simd", + "simd-adler32", "with-alloc" ], "selects": {} @@ -8245,6 +8436,10 @@ { "id": "adler2 2.0.1", "target": "adler2" + }, + { + "id": "simd-adler32 0.3.8", + "target": "simd_adler32" } ], "selects": {} @@ -8260,14 +8455,14 @@ ], "license_file": "LICENSE" }, - "mio 1.0.4": { + "mio 1.1.1": { "name": "mio", - "version": "1.0.4", + "version": "1.1.1", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/1.0.4/download", - "sha256": "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" + "url": "https://static.crates.io/crates/mio/1.1.1/download", + "sha256": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" } }, "targets": [ @@ -8302,13 +8497,13 @@ "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" }, { @@ -8318,20 +8513,20 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.0.4" + "version": "1.1.1" }, "license": "MIT", "license_ids": [ @@ -8339,14 +8534,147 @@ ], "license_file": "LICENSE" }, - "nt-time 0.8.1": { - "name": "nt-time", - "version": "0.8.1", - "package_url": "https://github.com/sorairolake/nt-time", + "native-tls 0.2.18": { + "name": "native-tls", + "version": "0.2.18", + "package_url": "https://github.com/rust-native-tls/rust-native-tls", "repository": { "Http": { - "url": "https://static.crates.io/crates/nt-time/0.8.1/download", - "sha256": "2de419e64947cd8830e66beb584acc3fb42ed411d103e3c794dda355d1b374b5" + "url": "https://static.crates.io/crates/native-tls/0.2.18/download", + "sha256": "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" + } + }, + "targets": [ + { + "Library": { + "crate_name": "native_tls", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "native_tls", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "native-tls 0.2.18", + "target": "build_script_build" + } + ], + "selects": { + "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))": [ + { + "id": "log 0.4.29", + "target": "log" + }, + { + "id": "openssl 0.10.76", + "target": "openssl" + }, + { + "id": "openssl-probe 0.2.1", + "target": "openssl_probe" + }, + { + "id": "openssl-sys 0.9.112", + "target": "openssl_sys" + } + ], + "cfg(target_os = \"macos\")": [ + { + "id": "tempfile 3.27.0", + "target": "tempfile" + } + ], + "cfg(target_os = \"windows\")": [ + { + "id": "schannel 0.1.29", + "target": "schannel" + } + ], + "cfg(target_vendor = \"apple\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + }, + { + "id": "security-framework 3.7.0", + "target": "security_framework" + }, + { + "id": "security-framework-sys 2.17.0", + "target": "security_framework_sys" + } + ] + } + }, + "edition": "2021", + "version": "0.2.18" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ], + "link_deps": { + "common": [], + "selects": { + "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))": [ + { + "id": "openssl-sys 0.9.112", + "target": "openssl_sys" + } + ] + } + } + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "nt-time 0.8.1": { + "name": "nt-time", + "version": "0.8.1", + "package_url": "https://github.com/sorairolake/nt-time", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/nt-time/0.8.1/download", + "sha256": "2de419e64947cd8830e66beb584acc3fb42ed411d103e3c794dda355d1b374b5" } }, "targets": [ @@ -8378,7 +8706,7 @@ "deps": { "common": [ { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -8394,14 +8722,14 @@ ], "license_file": "LICENSES" }, - "num-conv 0.1.0": { + "num-conv 0.2.0": { "name": "num-conv", - "version": "0.1.0", + "version": "0.2.0", "package_url": "https://github.com/jhpratt/num-conv", "repository": { "Http": { - "url": "https://static.crates.io/crates/num-conv/0.1.0/download", - "sha256": "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + "url": "https://static.crates.io/crates/num-conv/0.2.0/download", + "sha256": "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" } }, "targets": [ @@ -8424,7 +8752,7 @@ "**" ], "edition": "2021", - "version": "0.1.0" + "version": "0.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8513,102 +8841,14 @@ ], "license_file": "LICENSE-APACHE" }, - "object 0.37.3": { - "name": "object", - "version": "0.37.3", - "package_url": "https://github.com/gimli-rs/object", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/object/0.37.3/download", - "sha256": "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" - } - }, - "targets": [ - { - "Library": { - "crate_name": "object", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "object", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "archive", - "coff", - "elf", - "macho", - "pe", - "read_core", - "unaligned", - "xcoff" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "memchr 2.7.6", - "target": "memchr" - }, - { - "id": "object 0.37.3", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.37.3" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] - }, - "license": "Apache-2.0 OR MIT", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "once_cell 1.21.3": { + "once_cell 1.21.4": { "name": "once_cell", - "version": "1.21.3", + "version": "1.21.4", "package_url": "https://github.com/matklad/once_cell", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell/1.21.3/download", - "sha256": "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + "url": "https://static.crates.io/crates/once_cell/1.21.4/download", + "sha256": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" } }, "targets": [ @@ -8633,29 +8873,14 @@ "crate_features": { "common": [ "alloc", + "default", "race", "std" ], - "selects": { - "aarch64-apple-darwin": [ - "default" - ], - "aarch64-unknown-linux-gnu": [ - "default" - ], - "x86_64-pc-windows-msvc": [ - "default" - ], - "x86_64-unknown-linux-gnu": [ - "default" - ], - "x86_64-unknown-nixos-gnu": [ - "default" - ] - } + "selects": {} }, "edition": "2021", - "version": "1.21.3" + "version": "1.21.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8664,14 +8889,14 @@ ], "license_file": "LICENSE-APACHE" }, - "once_cell_polyfill 1.70.1": { + "once_cell_polyfill 1.70.2": { "name": "once_cell_polyfill", - "version": "1.70.1", + "version": "1.70.2", "package_url": "https://github.com/polyfill-rs/once_cell_polyfill", "repository": { "Http": { - "url": "https://static.crates.io/crates/once_cell_polyfill/1.70.1/download", - "sha256": "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" + "url": "https://static.crates.io/crates/once_cell_polyfill/1.70.2/download", + "sha256": "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" } }, "targets": [ @@ -8700,7 +8925,7 @@ "selects": {} }, "edition": "2021", - "version": "1.70.1" + "version": "1.70.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8709,20 +8934,20 @@ ], "license_file": "LICENSE-APACHE" }, - "option-ext 0.2.0": { - "name": "option-ext", - "version": "0.2.0", - "package_url": "https://github.com/soc/option-ext.git", + "openssl 0.10.76": { + "name": "openssl", + "version": "0.10.76", + "package_url": "https://github.com/rust-openssl/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/option-ext/0.2.0/download", - "sha256": "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + "url": "https://static.crates.io/crates/openssl/0.10.76/download", + "sha256": "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" } }, "targets": [ { "Library": { - "crate_name": "option_ext", + "crate_name": "openssl", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -8731,37 +8956,11 @@ ] } } - } - ], - "library_target_name": "option_ext", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.2.0" - }, - "license": "MPL-2.0", - "license_ids": [ - "MPL-2.0" - ], - "license_file": "LICENSE.txt" - }, - "pem 3.0.5": { - "name": "pem", - "version": "3.0.5", - "package_url": "https://github.com/jcreekmore/pem-rs.git", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/pem/3.0.5/download", - "sha256": "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" - } - }, - "targets": [ + }, { - "Library": { - "crate_name": "pem", - "crate_root": "src/lib.rs", + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", "srcs": { "allow_empty": true, "include": [ @@ -8771,151 +8970,98 @@ } } ], - "library_target_name": "pem", + "library_target_name": "openssl", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "default", - "std" + { + "id": "bitflags 2.11.0", + "target": "bitflags" + }, + { + "id": "cfg-if 1.0.4", + "target": "cfg_if" + }, + { + "id": "foreign-types 0.3.2", + "target": "foreign_types" + }, + { + "id": "libc 0.2.183", + "target": "libc" + }, + { + "id": "once_cell 1.21.4", + "target": "once_cell" + }, + { + "id": "openssl 0.10.76", + "target": "build_script_build" + }, + { + "id": "openssl-sys 0.9.112", + "target": "openssl_sys", + "alias": "ffi" + } ], "selects": {} }, - "deps": { + "edition": "2021", + "proc_macro_deps": { "common": [ { - "id": "base64 0.22.1", - "target": "base64" + "id": "openssl-macros 0.1.1", + "target": "openssl_macros" } ], "selects": {} }, - "edition": "2021", - "version": "3.0.5" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE.md" - }, - "percent-encoding 2.3.2": { - "name": "percent-encoding", - "version": "2.3.2", - "package_url": "https://github.com/servo/rust-url/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/percent-encoding/2.3.2/download", - "sha256": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - } + "version": "0.10.76" }, - "targets": [ - { - "Library": { - "crate_name": "percent_encoding", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "percent_encoding", - "common_attrs": { + "build_script_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ], + "link_deps": { "common": [ - "alloc", - "std" - ], - "selects": { - "aarch64-apple-darwin": [ - "default" - ], - "aarch64-unknown-linux-gnu": [ - "default" - ], - "x86_64-pc-windows-msvc": [ - "default" - ], - "x86_64-unknown-linux-gnu": [ - "default" - ], - "x86_64-unknown-nixos-gnu": [ - "default" - ] - } - }, - "edition": "2018", - "version": "2.3.2" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "pin-project-lite 0.2.16": { - "name": "pin-project-lite", - "version": "0.2.16", - "package_url": "https://github.com/taiki-e/pin-project-lite", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", - "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - } - }, - "targets": [ - { - "Library": { - "crate_name": "pin_project_lite", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] + { + "id": "openssl-sys 0.9.112", + "target": "openssl_sys", + "alias": "ffi" } - } + ], + "selects": {} } - ], - "library_target_name": "pin_project_lite", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2018", - "version": "0.2.16" }, - "license": "Apache-2.0 OR MIT", + "license": "Apache-2.0", "license_ids": [ - "Apache-2.0", - "MIT" + "Apache-2.0" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE" }, - "pin-utils 0.1.0": { - "name": "pin-utils", - "version": "0.1.0", - "package_url": "https://github.com/rust-lang-nursery/pin-utils", + "openssl-macros 0.1.1": { + "name": "openssl-macros", + "version": "0.1.1", + "package_url": null, "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-utils/0.1.0/download", - "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + "url": "https://static.crates.io/crates/openssl-macros/0.1.1/download", + "sha256": "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" } }, "targets": [ { - "Library": { - "crate_name": "pin_utils", + "ProcMacro": { + "crate_name": "openssl_macros", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -8926,35 +9072,52 @@ } } ], - "library_target_name": "pin_utils", + "library_target_name": "openssl_macros", "common_attrs": { "compile_data_glob": [ "**" ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + } + ], + "selects": {} + }, "edition": "2018", - "version": "0.1.0" + "version": "0.1.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "pkg-config 0.3.32": { - "name": "pkg-config", - "version": "0.3.32", - "package_url": "https://github.com/rust-lang/pkg-config-rs", + "openssl-probe 0.2.1": { + "name": "openssl-probe", + "version": "0.2.1", + "package_url": "https://github.com/rustls/openssl-probe", "repository": { "Http": { - "url": "https://static.crates.io/crates/pkg-config/0.3.32/download", - "sha256": "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + "url": "https://static.crates.io/crates/openssl-probe/0.2.1/download", + "sha256": "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" } }, "targets": [ { "Library": { - "crate_name": "pkg_config", + "crate_name": "openssl_probe", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -8965,13 +9128,13 @@ } } ], - "library_target_name": "pkg_config", + "library_target_name": "openssl_probe", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "0.3.32" + "edition": "2021", + "version": "0.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8980,20 +9143,20 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic 1.11.1": { - "name": "portable-atomic", - "version": "1.11.1", - "package_url": "https://github.com/taiki-e/portable-atomic", + "openssl-sys 0.9.112": { + "name": "openssl-sys", + "version": "0.9.112", + "package_url": "https://github.com/rust-openssl/rust-openssl", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.11.1/download", - "sha256": "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" + "url": "https://static.crates.io/crates/openssl-sys/0.9.112/download", + "sha256": "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" } }, "targets": [ { "Library": { - "crate_name": "portable_atomic", + "crate_name": "openssl_sys", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9005,8 +9168,8 @@ }, { "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", + "crate_name": "build_script_main", + "crate_root": "build/main.rs", "srcs": { "allow_empty": true, "include": [ @@ -9016,7 +9179,7 @@ } } ], - "library_target_name": "portable_atomic", + "library_target_name": "openssl_sys", "common_attrs": { "compile_data_glob": [ "**" @@ -9024,14 +9187,18 @@ "deps": { "common": [ { - "id": "portable-atomic 1.11.1", - "target": "build_script_build" + "id": "libc 0.2.183", + "target": "libc" + }, + { + "id": "openssl-sys 0.9.112", + "target": "build_script_main" } ], "selects": {} }, - "edition": "2018", - "version": "1.11.1" + "edition": "2021", + "version": "0.9.112" }, "build_script_attrs": { "compile_data_glob": [ @@ -9042,29 +9209,46 @@ ], "data_glob": [ "**" - ] + ], + "deps": { + "common": [ + { + "id": "cc 1.2.56", + "target": "cc" + }, + { + "id": "pkg-config 0.3.32", + "target": "pkg_config" + }, + { + "id": "vcpkg 0.2.15", + "target": "vcpkg" + } + ], + "selects": {} + }, + "links": "openssl" }, - "license": "Apache-2.0 OR MIT", + "license": "MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE-MIT" }, - "portable-atomic-util 0.2.4": { - "name": "portable-atomic-util", - "version": "0.2.4", - "package_url": "https://github.com/taiki-e/portable-atomic", + "option-ext 0.2.0": { + "name": "option-ext", + "version": "0.2.0", + "package_url": "https://github.com/soc/option-ext.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic-util/0.2.4/download", - "sha256": "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" + "url": "https://static.crates.io/crates/option-ext/0.2.0/download", + "sha256": "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" } }, "targets": [ { "Library": { - "crate_name": "portable_atomic_util", + "crate_name": "option_ext", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9073,73 +9257,36 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "portable_atomic_util", + "library_target_name": "option_ext", "common_attrs": { "compile_data_glob": [ "**" ], - "deps": { - "common": [ - { - "id": "portable-atomic 1.11.1", - "target": "portable_atomic" - }, - { - "id": "portable-atomic-util 0.2.4", - "target": "build_script_build" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.2.4" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2015", + "version": "0.2.0" }, - "license": "Apache-2.0 OR MIT", + "license": "MPL-2.0", "license_ids": [ - "Apache-2.0", - "MIT" + "MPL-2.0" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE.txt" }, - "potential_utf 0.1.3": { - "name": "potential_utf", - "version": "0.1.3", - "package_url": "https://github.com/unicode-org/icu4x", + "pem 3.0.6": { + "name": "pem", + "version": "3.0.6", + "package_url": "https://github.com/jcreekmore/pem-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/potential_utf/0.1.3/download", - "sha256": "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" + "url": "https://static.crates.io/crates/pem/3.0.6/download", + "sha256": "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" } }, "targets": [ { "Library": { - "crate_name": "potential_utf", + "crate_name": "pem", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9150,49 +9297,50 @@ } } ], - "library_target_name": "potential_utf", + "library_target_name": "pem", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "zerovec" + "default", + "std" ], "selects": {} }, "deps": { "common": [ { - "id": "zerovec 0.11.4", - "target": "zerovec" + "id": "base64 0.22.1", + "target": "base64" } ], "selects": {} }, "edition": "2021", - "version": "0.1.3" + "version": "3.0.6" }, - "license": "Unicode-3.0", + "license": "MIT", "license_ids": [ - "Unicode-3.0" + "MIT" ], - "license_file": "LICENSE" + "license_file": "LICENSE.md" }, - "powerfmt 0.2.0": { - "name": "powerfmt", - "version": "0.2.0", - "package_url": "https://github.com/jhpratt/powerfmt", + "percent-encoding 2.3.2": { + "name": "percent-encoding", + "version": "2.3.2", + "package_url": "https://github.com/servo/rust-url/", "repository": { "Http": { - "url": "https://static.crates.io/crates/powerfmt/0.2.0/download", - "sha256": "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + "url": "https://static.crates.io/crates/percent-encoding/2.3.2/download", + "sha256": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" } }, "targets": [ { "Library": { - "crate_name": "powerfmt", + "crate_name": "percent_encoding", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9203,35 +9351,43 @@ } } ], - "library_target_name": "powerfmt", + "library_target_name": "percent_encoding", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.2.0" + "crate_features": { + "common": [ + "alloc", + "default", + "std" + ], + "selects": {} + }, + "edition": "2018", + "version": "2.3.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-Apache" + "license_file": "LICENSE-APACHE" }, - "ppv-lite86 0.2.21": { - "name": "ppv-lite86", - "version": "0.2.21", - "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", + "pin-project-lite 0.2.17": { + "name": "pin-project-lite", + "version": "0.2.17", + "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/ppv-lite86/0.2.21/download", - "sha256": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" + "url": "https://static.crates.io/crates/pin-project-lite/0.2.17/download", + "sha256": "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" } }, "targets": [ { "Library": { - "crate_name": "ppv_lite86", + "crate_name": "pin_project_lite", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9242,51 +9398,35 @@ } } ], - "library_target_name": "ppv_lite86", + "library_target_name": "pin_project_lite", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "simd", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "zerocopy 0.8.27", - "target": "zerocopy" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.21" + "edition": "2018", + "version": "0.2.17" }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "predicates 3.1.3": { - "name": "predicates", - "version": "3.1.3", - "package_url": "https://github.com/assert-rs/predicates-rs", + "pin-utils 0.1.0": { + "name": "pin-utils", + "version": "0.1.0", + "package_url": "https://github.com/rust-lang-nursery/pin-utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.3/download", - "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" + "url": "https://static.crates.io/crates/pin-utils/0.1.0/download", + "sha256": "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" } }, "targets": [ { "Library": { - "crate_name": "predicates", + "crate_name": "pin_utils", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9297,36 +9437,13 @@ } } ], - "library_target_name": "predicates", + "library_target_name": "pin_utils", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "diff" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "anstyle 1.0.13", - "target": "anstyle" - }, - { - "id": "difflib 0.4.0", - "target": "difflib" - }, - { - "id": "predicates-core 1.0.9", - "target": "predicates_core" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "3.1.3" + "edition": "2018", + "version": "0.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9335,20 +9452,20 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-core 1.0.9": { - "name": "predicates-core", - "version": "1.0.9", - "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", + "pkg-config 0.3.32": { + "name": "pkg-config", + "version": "0.3.32", + "package_url": "https://github.com/rust-lang/pkg-config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", - "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" + "url": "https://static.crates.io/crates/pkg-config/0.3.32/download", + "sha256": "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" } }, "targets": [ { "Library": { - "crate_name": "predicates_core", + "crate_name": "pkg_config", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9359,13 +9476,13 @@ } } ], - "library_target_name": "predicates_core", + "library_target_name": "pkg_config", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "1.0.9" + "edition": "2018", + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9374,20 +9491,20 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-tree 1.0.12": { - "name": "predicates-tree", - "version": "1.0.12", - "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", + "plain 0.2.3": { + "name": "plain", + "version": "0.2.3", + "package_url": "https://github.com/randomites/plain", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", - "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" + "url": "https://static.crates.io/crates/plain/0.2.3/download", + "sha256": "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" } }, "targets": [ { "Library": { - "crate_name": "predicates_tree", + "crate_name": "plain", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9398,48 +9515,35 @@ } } ], - "library_target_name": "predicates_tree", + "library_target_name": "plain", "common_attrs": { "compile_data_glob": [ "**" ], - "deps": { - "common": [ - { - "id": "predicates-core 1.0.9", - "target": "predicates_core" - }, - { - "id": "termtree 0.5.1", - "target": "termtree" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "1.0.12" + "edition": "2015", + "version": "0.2.3" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "proc-macro2 1.0.101": { - "name": "proc-macro2", - "version": "1.0.101", - "package_url": "https://github.com/dtolnay/proc-macro2", + "portable-atomic 1.13.1": { + "name": "portable-atomic", + "version": "1.13.1", + "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.101/download", - "sha256": "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" + "url": "https://static.crates.io/crates/portable-atomic/1.13.1/download", + "sha256": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" } }, "targets": [ { "Library": { - "crate_name": "proc_macro2", + "crate_name": "portable_atomic", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9462,33 +9566,22 @@ } } ], - "library_target_name": "proc_macro2", + "library_target_name": "portable_atomic", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "proc-macro" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "portable-atomic 1.13.1", "target": "build_script_build" - }, - { - "id": "unicode-ident 1.0.19", - "target": "unicode_ident" } ], "selects": {} }, - "edition": "2021", - "version": "1.0.101" + "edition": "2018", + "version": "1.13.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -9501,27 +9594,27 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "quinn 0.11.9": { - "name": "quinn", - "version": "0.11.9", - "package_url": "https://github.com/quinn-rs/quinn", + "portable-atomic-util 0.2.5": { + "name": "portable-atomic-util", + "version": "0.2.5", + "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn/0.11.9/download", - "sha256": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" + "url": "https://static.crates.io/crates/portable-atomic-util/0.2.5/download", + "sha256": "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" } }, "targets": [ { "Library": { - "crate_name": "quinn", + "crate_name": "portable_atomic_util", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9544,7 +9637,7 @@ } } ], - "library_target_name": "quinn", + "library_target_name": "portable_atomic_util", "common_attrs": { "compile_data_glob": [ "**" @@ -9552,61 +9645,18 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" + "id": "portable-atomic 1.13.1", + "target": "portable_atomic" }, { - "id": "quinn 0.11.9", + "id": "portable-atomic-util 0.2.5", "target": "build_script_build" - }, - { - "id": "quinn-proto 0.11.13", - "target": "quinn_proto", - "alias": "proto" - }, - { - "id": "quinn-udp 0.5.14", - "target": "quinn_udp", - "alias": "udp" - }, - { - "id": "rustc-hash 2.1.1", - "target": "rustc_hash" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - }, - { - "id": "tokio 1.47.1", - "target": "tokio" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" } ], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ], - "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ] - } + "selects": {} }, - "edition": "2021", - "version": "0.11.9" + "edition": "2018", + "version": "0.2.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -9617,38 +9667,29 @@ ], "data_glob": [ "**" - ], - "deps": { - "common": [ - { - "id": "cfg_aliases 0.2.1", - "target": "cfg_aliases" - } - ], - "selects": {} - } + ] }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "quinn-proto 0.11.13": { - "name": "quinn-proto", - "version": "0.11.13", - "package_url": "https://github.com/quinn-rs/quinn", + "potential_utf 0.1.4": { + "name": "potential_utf", + "version": "0.1.4", + "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.13/download", - "sha256": "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" + "url": "https://static.crates.io/crates/potential_utf/0.1.4/download", + "sha256": "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" } }, "targets": [ { "Library": { - "crate_name": "quinn_proto", + "crate_name": "potential_utf", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9659,91 +9700,49 @@ } } ], - "library_target_name": "quinn_proto", + "library_target_name": "potential_utf", "common_attrs": { "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "zerovec" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "lru-slab 0.1.2", - "target": "lru_slab" - }, - { - "id": "rand 0.9.2", - "target": "rand" - }, - { - "id": "rustc-hash 2.1.1", - "target": "rustc_hash" - }, - { - "id": "slab 0.4.11", - "target": "slab" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - }, - { - "id": "tinyvec 1.10.0", - "target": "tinyvec" - }, - { - "id": "tracing 0.1.41", - "target": "tracing" + "id": "zerovec 0.11.5", + "target": "zerovec" } ], - "selects": { - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - }, - { - "id": "ring 0.17.14", - "target": "ring" - }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, - { - "id": "web-time 1.1.0", - "target": "web_time" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.11.13" + "version": "0.1.4" }, - "license": "MIT OR Apache-2.0", + "license": "Unicode-3.0", "license_ids": [ - "Apache-2.0", - "MIT" + "Unicode-3.0" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE" }, - "quinn-udp 0.5.14": { - "name": "quinn-udp", - "version": "0.5.14", - "package_url": "https://github.com/quinn-rs/quinn", + "powerfmt 0.2.0": { + "name": "powerfmt", + "version": "0.2.0", + "package_url": "https://github.com/jhpratt/powerfmt", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-udp/0.5.14/download", - "sha256": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" + "url": "https://static.crates.io/crates/powerfmt/0.2.0/download", + "sha256": "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" } }, "targets": [ { "Library": { - "crate_name": "quinn_udp", + "crate_name": "powerfmt", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9752,11 +9751,38 @@ ] } } - }, + } + ], + "library_target_name": "powerfmt", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.2.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-Apache" + }, + "ppv-lite86 0.2.21": { + "name": "ppv-lite86", + "version": "0.2.21", + "package_url": "https://github.com/cryptocorrosion/cryptocorrosion", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/ppv-lite86/0.2.21/download", + "sha256": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" + } + }, + "targets": [ { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", + "Library": { + "crate_name": "ppv_lite86", + "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, "include": [ @@ -9766,63 +9792,29 @@ } } ], - "library_target_name": "quinn_udp", + "library_target_name": "ppv_lite86", "common_attrs": { "compile_data_glob": [ "**" ], - "deps": { + "crate_features": { "common": [ - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "quinn-udp 0.5.14", - "target": "build_script_build" - } + "simd", + "std" ], - "selects": { - "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ], - "cfg(windows)": [ - { - "id": "once_cell 1.21.3", - "target": "once_cell" - }, - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } - ] - } + "selects": {} }, - "edition": "2021", - "version": "0.5.14" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], "deps": { "common": [ { - "id": "cfg_aliases 0.2.1", - "target": "cfg_aliases" + "id": "zerocopy 0.8.42", + "target": "zerocopy" } ], "selects": {} - } + }, + "edition": "2021", + "version": "0.2.21" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9831,20 +9823,20 @@ ], "license_file": "LICENSE-APACHE" }, - "quote 1.0.41": { - "name": "quote", - "version": "1.0.41", - "package_url": "https://github.com/dtolnay/quote", + "predicates 3.1.4": { + "name": "predicates", + "version": "3.1.4", + "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.41/download", - "sha256": "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" + "url": "https://static.crates.io/crates/predicates/3.1.4/download", + "sha256": "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" } }, "targets": [ { "Library": { - "crate_name": "quote", + "crate_name": "predicates", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9853,58 +9845,38 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "quote", + "library_target_name": "predicates", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "default", - "proc-macro" + "diff" ], "selects": {} }, "deps": { "common": [ { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" + "id": "anstyle 1.0.13", + "target": "anstyle" }, { - "id": "quote 1.0.41", - "target": "build_script_build" + "id": "difflib 0.4.0", + "target": "difflib" + }, + { + "id": "predicates-core 1.0.10", + "target": "predicates_core" } ], "selects": {} }, - "edition": "2018", - "version": "1.0.41" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2021", + "version": "3.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9913,20 +9885,20 @@ ], "license_file": "LICENSE-APACHE" }, - "r-efi 5.3.0": { - "name": "r-efi", - "version": "5.3.0", - "package_url": "https://github.com/r-efi/r-efi", + "predicates-core 1.0.10": { + "name": "predicates-core", + "version": "1.0.10", + "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/r-efi/5.3.0/download", - "sha256": "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + "url": "https://static.crates.io/crates/predicates-core/1.0.10/download", + "sha256": "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" } }, "targets": [ { "Library": { - "crate_name": "r_efi", + "crate_name": "predicates_core", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9937,36 +9909,35 @@ } } ], - "library_target_name": "r_efi", + "library_target_name": "predicates_core", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "5.3.0" + "edition": "2021", + "version": "1.0.10" }, - "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", - "LGPL-2.1", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, - "rand 0.8.5": { - "name": "rand", - "version": "0.8.5", - "package_url": "https://github.com/rust-random/rand", + "predicates-tree 1.0.13": { + "name": "predicates-tree", + "version": "1.0.13", + "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand/0.8.5/download", - "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" + "url": "https://static.crates.io/crates/predicates-tree/1.0.13/download", + "sha256": "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" } }, "targets": [ { "Library": { - "crate_name": "rand", + "crate_name": "predicates_tree", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -9977,63 +9948,26 @@ } } ], - "library_target_name": "rand", + "library_target_name": "predicates_tree", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc", - "default", - "getrandom", - "libc", - "rand_chacha", - "std", - "std_rng" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "rand_chacha 0.3.1", - "target": "rand_chacha" + "id": "predicates-core 1.0.10", + "target": "predicates_core" }, { - "id": "rand_core 0.6.4", - "target": "rand_core" + "id": "termtree 0.5.1", + "target": "termtree" } ], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "libc 0.2.176", - "target": "libc" - } - ] - } + "selects": {} }, - "edition": "2018", - "version": "0.8.5" + "edition": "2021", + "version": "1.0.13" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10042,20 +9976,20 @@ ], "license_file": "LICENSE-APACHE" }, - "rand 0.9.2": { - "name": "rand", - "version": "0.9.2", - "package_url": "https://github.com/rust-random/rand", + "prettyplease 0.2.37": { + "name": "prettyplease", + "version": "0.2.37", + "package_url": "https://github.com/dtolnay/prettyplease", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand/0.9.2/download", - "sha256": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" + "url": "https://static.crates.io/crates/prettyplease/0.2.37/download", + "sha256": "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" } }, "targets": [ { "Library": { - "crate_name": "rand", + "crate_name": "prettyplease", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -10064,9 +9998,21 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "rand", + "library_target_name": "prettyplease", "common_attrs": { "compile_data_glob": [ "**" @@ -10074,14 +10020,34 @@ "deps": { "common": [ { - "id": "rand_core 0.9.3", - "target": "rand_core" + "id": "prettyplease 0.2.37", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "syn 2.0.117", + "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.9.2" + "version": "0.2.37" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ], + "links": "prettyplease02" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10090,20 +10056,20 @@ ], "license_file": "LICENSE-APACHE" }, - "rand_chacha 0.3.1": { - "name": "rand_chacha", - "version": "0.3.1", - "package_url": "https://github.com/rust-random/rand", + "proc-macro2 1.0.106": { + "name": "proc-macro2", + "version": "1.0.106", + "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_chacha/0.3.1/download", - "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" + "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download", + "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" } }, "targets": [ { "Library": { - "crate_name": "rand_chacha", + "crate_name": "proc_macro2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -10112,34 +10078,58 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "rand_chacha", + "library_target_name": "proc_macro2", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "std" + "default", + "proc-macro" ], "selects": {} }, "deps": { "common": [ { - "id": "ppv-lite86 0.2.21", - "target": "ppv_lite86" + "id": "proc-macro2 1.0.106", + "target": "build_script_build" }, { - "id": "rand_core 0.6.4", - "target": "rand_core" + "id": "unicode-ident 1.0.24", + "target": "unicode_ident" } ], "selects": {} }, - "edition": "2018", - "version": "0.3.1" + "edition": "2021", + "version": "1.0.106" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10148,20 +10138,20 @@ ], "license_file": "LICENSE-APACHE" }, - "rand_chacha 0.9.0": { - "name": "rand_chacha", - "version": "0.9.0", - "package_url": "https://github.com/rust-random/rand", + "quinn 0.11.9": { + "name": "quinn", + "version": "0.11.9", + "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_chacha/0.9.0/download", - "sha256": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" + "url": "https://static.crates.io/crates/quinn/0.11.9/download", + "sha256": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" } }, "targets": [ { "Library": { - "crate_name": "rand_chacha", + "crate_name": "quinn", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -10170,9 +10160,21 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "rand_chacha", + "library_target_name": "quinn", "common_attrs": { "compile_data_glob": [ "**" @@ -10180,74 +10182,81 @@ "deps": { "common": [ { - "id": "ppv-lite86 0.2.21", - "target": "ppv_lite86" + "id": "bytes 1.11.1", + "target": "bytes" }, { - "id": "rand_core 0.9.3", - "target": "rand_core" + "id": "pin-project-lite 0.2.17", + "target": "pin_project_lite" + }, + { + "id": "quinn 0.11.9", + "target": "build_script_build" + }, + { + "id": "quinn-proto 0.11.14", + "target": "quinn_proto", + "alias": "proto" + }, + { + "id": "quinn-udp 0.5.14", + "target": "quinn_udp", + "alias": "udp" + }, + { + "id": "rustc-hash 2.1.1", + "target": "rustc_hash" + }, + { + "id": "thiserror 2.0.18", + "target": "thiserror" + }, + { + "id": "tokio 1.50.0", + "target": "tokio" + }, + { + "id": "tracing 0.1.44", + "target": "tracing" } ], - "selects": {} + "selects": { + "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ], + "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ + { + "id": "socket2 0.6.3", + "target": "socket2" + } + ] + } }, "edition": "2021", - "version": "0.9.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "rand_core 0.6.4": { - "name": "rand_core", - "version": "0.6.4", - "package_url": "https://github.com/rust-random/rand", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rand_core/0.6.4/download", - "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" - } + "version": "0.11.9" }, - "targets": [ - { - "Library": { - "crate_name": "rand_core", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rand_core", - "common_attrs": { + "build_script_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc", - "getrandom", - "std" - ], - "selects": {} - }, + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ], "deps": { "common": [ { - "id": "getrandom 0.2.16", - "target": "getrandom" + "id": "cfg_aliases 0.2.1", + "target": "cfg_aliases" } ], "selects": {} - }, - "edition": "2018", - "version": "0.6.4" + } }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10256,20 +10265,20 @@ ], "license_file": "LICENSE-APACHE" }, - "rand_core 0.9.3": { - "name": "rand_core", - "version": "0.9.3", - "package_url": "https://github.com/rust-random/rand", + "quinn-proto 0.11.14": { + "name": "quinn-proto", + "version": "0.11.14", + "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_core/0.9.3/download", - "sha256": "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" + "url": "https://static.crates.io/crates/quinn-proto/0.11.14/download", + "sha256": "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" } }, "targets": [ { "Library": { - "crate_name": "rand_core", + "crate_name": "quinn_proto", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -10280,37 +10289,677 @@ } } ], - "library_target_name": "rand_core", + "library_target_name": "quinn_proto", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.9.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "redox_syscall 0.5.17": { - "name": "redox_syscall", - "version": "0.5.17", - "package_url": "https://gitlab.redox-os.org/redox-os/syscall", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/redox_syscall/0.5.17/download", - "sha256": "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" - } - }, - "targets": [ - { - "Library": { - "crate_name": "syscall", - "crate_root": "src/lib.rs", - "srcs": { + "deps": { + "common": [ + { + "id": "bytes 1.11.1", + "target": "bytes" + }, + { + "id": "lru-slab 0.1.2", + "target": "lru_slab" + }, + { + "id": "rand 0.9.2", + "target": "rand" + }, + { + "id": "rustc-hash 2.1.1", + "target": "rustc_hash" + }, + { + "id": "slab 0.4.12", + "target": "slab" + }, + { + "id": "thiserror 2.0.18", + "target": "thiserror" + }, + { + "id": "tinyvec 1.10.0", + "target": "tinyvec" + }, + { + "id": "tracing 0.1.44", + "target": "tracing" + } + ], + "selects": { + "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ + { + "id": "getrandom 0.3.4", + "target": "getrandom" + }, + { + "id": "ring 0.17.14", + "target": "ring" + }, + { + "id": "rustls-pki-types 1.14.0", + "target": "rustls_pki_types" + }, + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ] + } + }, + "edition": "2021", + "version": "0.11.14" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "quinn-udp 0.5.14": { + "name": "quinn-udp", + "version": "0.5.14", + "package_url": "https://github.com/quinn-rs/quinn", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/quinn-udp/0.5.14/download", + "sha256": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" + } + }, + "targets": [ + { + "Library": { + "crate_name": "quinn_udp", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "quinn_udp", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "libc 0.2.183", + "target": "libc" + }, + { + "id": "quinn-udp 0.5.14", + "target": "build_script_build" + } + ], + "selects": { + "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ + { + "id": "socket2 0.6.3", + "target": "socket2" + } + ], + "cfg(windows)": [ + { + "id": "once_cell 1.21.4", + "target": "once_cell" + }, + { + "id": "windows-sys 0.60.2", + "target": "windows_sys" + } + ] + } + }, + "edition": "2021", + "version": "0.5.14" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg_aliases 0.2.1", + "target": "cfg_aliases" + } + ], + "selects": {} + } + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "quote 1.0.45": { + "name": "quote", + "version": "1.0.45", + "package_url": "https://github.com/dtolnay/quote", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/quote/1.0.45/download", + "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" + } + }, + "targets": [ + { + "Library": { + "crate_name": "quote", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "quote", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "proc-macro" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.45" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "r-efi 5.3.0": { + "name": "r-efi", + "version": "5.3.0", + "package_url": "https://github.com/r-efi/r-efi", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/r-efi/5.3.0/download", + "sha256": "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + } + }, + "targets": [ + { + "Library": { + "crate_name": "r_efi", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "r_efi", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "5.3.0" + }, + "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", + "license_ids": [ + "Apache-2.0", + "LGPL-2.1", + "MIT" + ], + "license_file": null + }, + "r-efi 6.0.0": { + "name": "r-efi", + "version": "6.0.0", + "package_url": "https://github.com/r-efi/r-efi", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/r-efi/6.0.0/download", + "sha256": "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + } + }, + "targets": [ + { + "Library": { + "crate_name": "r_efi", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "r_efi", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "6.0.0" + }, + "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", + "license_ids": [ + "Apache-2.0", + "LGPL-2.1", + "MIT" + ], + "license_file": null + }, + "rand 0.8.5": { + "name": "rand", + "version": "0.8.5", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rand/0.8.5/download", + "sha256": "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rand", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "getrandom", + "libc", + "rand_chacha", + "std", + "std_rng" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "libc 0.2.183", + "target": "libc" + }, + { + "id": "rand_chacha 0.3.1", + "target": "rand_chacha" + }, + { + "id": "rand_core 0.6.4", + "target": "rand_core" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.8.5" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "rand 0.9.2": { + "name": "rand", + "version": "0.9.2", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rand/0.9.2/download", + "sha256": "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rand", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "rand_core 0.9.5", + "target": "rand_core" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.9.2" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "rand_chacha 0.3.1": { + "name": "rand_chacha", + "version": "0.3.1", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rand_chacha/0.3.1/download", + "sha256": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand_chacha", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rand_chacha", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "ppv-lite86 0.2.21", + "target": "ppv_lite86" + }, + { + "id": "rand_core 0.6.4", + "target": "rand_core" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.1" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "rand_chacha 0.9.0": { + "name": "rand_chacha", + "version": "0.9.0", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rand_chacha/0.9.0/download", + "sha256": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand_chacha", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rand_chacha", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "ppv-lite86 0.2.21", + "target": "ppv_lite86" + }, + { + "id": "rand_core 0.9.5", + "target": "rand_core" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.9.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "rand_core 0.6.4": { + "name": "rand_core", + "version": "0.6.4", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rand_core/0.6.4/download", + "sha256": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand_core", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rand_core", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "getrandom", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "getrandom 0.2.17", + "target": "getrandom" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.6.4" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "rand_core 0.9.5": { + "name": "rand_core", + "version": "0.9.5", + "package_url": "https://github.com/rust-random/rand", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rand_core/0.9.5/download", + "sha256": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rand_core", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rand_core", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.9.5" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "redox_syscall 0.7.3": { + "name": "redox_syscall", + "version": "0.7.3", + "package_url": "https://gitlab.redox-os.org/redox-os/syscall", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/redox_syscall/0.7.3/download", + "sha256": "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" + } + }, + "targets": [ + { + "Library": { + "crate_name": "syscall", + "crate_root": "src/lib.rs", + "srcs": { "allow_empty": true, "include": [ "**/*.rs" @@ -10327,14 +10976,14 @@ "deps": { "common": [ { - "id": "bitflags 2.9.4", + "id": "bitflags 2.11.0", "target": "bitflags" } ], "selects": {} }, "edition": "2021", - "version": "0.5.17" + "version": "0.7.3" }, "license": "MIT", "license_ids": [ @@ -10374,15 +11023,15 @@ "deps": { "common": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" }, { - "id": "libredox 0.1.10", + "id": "libredox 0.1.14", "target": "libredox" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -10397,14 +11046,14 @@ ], "license_file": "LICENSE" }, - "regex 1.11.3": { + "regex 1.12.3": { "name": "regex", - "version": "1.11.3", + "version": "1.12.3", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.11.3/download", - "sha256": "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" + "url": "https://static.crates.io/crates/regex/1.12.3/download", + "sha256": "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" } }, "targets": [ @@ -10451,26 +11100,26 @@ "deps": { "common": [ { - "id": "aho-corasick 1.1.3", + "id": "aho-corasick 1.1.4", "target": "aho_corasick" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "regex-automata 0.4.11", + "id": "regex-automata 0.4.14", "target": "regex_automata" }, { - "id": "regex-syntax 0.8.6", + "id": "regex-syntax 0.8.10", "target": "regex_syntax" } ], "selects": {} }, "edition": "2021", - "version": "1.11.3" + "version": "1.12.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10479,14 +11128,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-automata 0.4.11": { + "regex-automata 0.4.14": { "name": "regex-automata", - "version": "0.4.11", + "version": "0.4.14", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.11/download", - "sha256": "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" + "url": "https://static.crates.io/crates/regex-automata/0.4.14/download", + "sha256": "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" } }, "targets": [ @@ -10539,22 +11188,22 @@ "deps": { "common": [ { - "id": "aho-corasick 1.1.3", + "id": "aho-corasick 1.1.4", "target": "aho_corasick" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "regex-syntax 0.8.6", + "id": "regex-syntax 0.8.10", "target": "regex_syntax" } ], "selects": {} }, "edition": "2021", - "version": "0.4.11" + "version": "0.4.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10563,14 +11212,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-syntax 0.8.6": { + "regex-syntax 0.8.10": { "name": "regex-syntax", - "version": "0.8.6", + "version": "0.8.10", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.8.6/download", - "sha256": "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" + "url": "https://static.crates.io/crates/regex-syntax/0.8.10/download", + "sha256": "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" } }, "targets": [ @@ -10608,7 +11257,7 @@ "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10662,14 +11311,14 @@ ], "license_file": null }, - "reqwest 0.12.23": { + "reqwest 0.12.28": { "name": "reqwest", - "version": "0.12.23", + "version": "0.12.28", "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.23/download", - "sha256": "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" + "url": "https://static.crates.io/crates/reqwest/0.12.28/download", + "sha256": "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" } }, "targets": [ @@ -10693,15 +11342,51 @@ ], "crate_features": { "common": [ - "__rustls", - "__rustls-ring", - "__tls", - "blocking", - "rustls-tls", - "rustls-tls-webpki-roots", - "rustls-tls-webpki-roots-no-provider" + "__tls" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "__rustls", + "__rustls-ring", + "blocking", + "rustls-tls", + "rustls-tls-webpki-roots", + "rustls-tls-webpki-roots-no-provider" + ], + "aarch64-pc-windows-msvc": [ + "default-tls", + "native-tls" + ], + "aarch64-unknown-linux-gnu": [ + "__rustls", + "__rustls-ring", + "rustls-tls", + "rustls-tls-webpki-roots", + "rustls-tls-webpki-roots-no-provider" + ], + "x86_64-apple-darwin": [ + "__rustls", + "__rustls-ring", + "blocking", + "rustls-tls", + "rustls-tls-webpki-roots", + "rustls-tls-webpki-roots-no-provider" + ], + "x86_64-pc-windows-msvc": [ + "__rustls", + "__rustls-ring", + "rustls-tls", + "rustls-tls-webpki-roots", + "rustls-tls-webpki-roots-no-provider" + ], + "x86_64-unknown-linux-gnu": [ + "__rustls", + "__rustls-ring", + "rustls-tls", + "rustls-tls-webpki-roots", + "rustls-tls-webpki-roots-no-provider" + ] + } }, "deps": { "common": [ @@ -10710,20 +11395,20 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", - "target": "futures_util" + "id": "http 1.4.0", + "target": "http" }, { - "id": "http 1.3.1", - "target": "http" + "id": "rustls-pki-types 1.14.0", + "target": "rustls_pki_types" }, { "id": "serde 1.0.228", @@ -10738,64 +11423,67 @@ "target": "sync_wrapper" }, { - "id": "tower-service 0.3.3", - "target": "tower_service" - }, - { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, + { + "id": "futures-util 0.3.32", + "target": "futures_util" + }, { "id": "hyper-rustls 0.27.7", "target": "hyper_rustls" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, { "id": "tokio-rustls 0.26.4", "target": "tokio_rustls" }, { - "id": "webpki-roots 1.0.2", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], - "aarch64-unknown-linux-gnu": [ + "aarch64-pc-windows-msvc": [ { - "id": "futures-channel 0.3.31", - "target": "futures_channel" + "id": "hyper-tls 0.6.0", + "target": "hyper_tls" }, + { + "id": "native-tls 0.2.18", + "target": "native_tls", + "alias": "native_tls_crate" + }, + { + "id": "tokio-native-tls 0.3.1", + "target": "tokio_native_tls" + } + ], + "aarch64-unknown-linux-gnu": [ { "id": "hyper-rustls 0.27.7", "target": "hyper_rustls" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, { "id": "tokio-rustls 0.26.4", "target": "tokio_rustls" }, { - "id": "webpki-roots 1.0.2", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], @@ -10809,15 +11497,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -10825,126 +11513,114 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { - "id": "tower-http 0.6.6", + "id": "tower-http 0.6.8", "target": "tower_http" + }, + { + "id": "tower-service 0.3.3", + "target": "tower_service" } ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.81", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.54", + "id": "wasm-bindgen-futures 0.4.64", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.81", + "id": "web-sys 0.3.91", "target": "web_sys" } ], - "x86_64-pc-windows-msvc": [ + "x86_64-apple-darwin": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, + { + "id": "futures-util 0.3.32", + "target": "futures_util" + }, { "id": "hyper-rustls 0.27.7", "target": "hyper_rustls" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, { "id": "tokio-rustls 0.26.4", "target": "tokio_rustls" }, { - "id": "webpki-roots 1.0.2", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], - "x86_64-unknown-linux-gnu": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, + "x86_64-pc-windows-msvc": [ { "id": "hyper-rustls 0.27.7", "target": "hyper_rustls" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, { "id": "tokio-rustls 0.26.4", "target": "tokio_rustls" }, { - "id": "webpki-roots 1.0.2", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "futures-channel 0.3.31", - "target": "futures_channel" - }, + "x86_64-unknown-linux-gnu": [ { "id": "hyper-rustls 0.27.7", "target": "hyper_rustls" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, - { - "id": "rustls-pki-types 1.12.0", - "target": "rustls_pki_types" - }, { "id": "tokio-rustls 0.26.4", "target": "tokio_rustls" }, { - "id": "webpki-roots 1.0.2", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.12.23" + "version": "0.12.28" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11005,11 +11681,11 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" }, { @@ -11030,13 +11706,13 @@ ], "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] @@ -11058,7 +11734,7 @@ "deps": { "common": [ { - "id": "cc 1.2.39", + "id": "cc 1.2.56", "target": "cc" } ], @@ -11165,7 +11841,7 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { @@ -11173,15 +11849,15 @@ "target": "glob" }, { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "regex 1.11.3", + "id": "regex 1.12.3", "target": "regex" }, { @@ -11193,11 +11869,11 @@ "target": "build_script_build" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" }, { - "id": "unicode-ident 1.0.19", + "id": "unicode-ident 1.0.24", "target": "unicode_ident" } ], @@ -11233,45 +11909,6 @@ ], "license_file": "LICENSE-APACHE" }, - "rustc-demangle 0.1.26": { - "name": "rustc-demangle", - "version": "0.1.26", - "package_url": "https://github.com/rust-lang/rustc-demangle", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.26/download", - "sha256": "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" - } - }, - "targets": [ - { - "Library": { - "crate_name": "rustc_demangle", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "rustc_demangle", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2015", - "version": "0.1.26" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "rustc-hash 2.1.1": { "name": "rustc-hash", "version": "2.1.1", @@ -11359,14 +11996,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustix 1.1.2": { + "rustix 1.1.4": { "name": "rustix", - "version": "1.1.2", + "version": "1.1.4", "package_url": "https://github.com/bytecodealliance/rustix", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustix/1.1.2/download", - "sha256": "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" + "url": "https://static.crates.io/crates/rustix/1.1.4/download", + "sha256": "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" } }, "targets": [ @@ -11412,11 +12049,11 @@ "deps": { "common": [ { - "id": "bitflags 2.9.4", + "id": "bitflags 2.11.0", "target": "bitflags" }, { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "build_script_build" } ], @@ -11428,19 +12065,19 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], - "cfg(all(any(target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.11.0", + "id": "linux-raw-sys 0.12.1", "target": "linux_raw_sys" } ], "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ { - "id": "linux-raw-sys 0.11.0", + "id": "linux-raw-sys 0.12.1", "target": "linux_raw_sys" } ], @@ -11451,7 +12088,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], @@ -11462,25 +12099,25 @@ "alias": "libc_errno" }, { - "id": "windows-sys 0.61.1", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ], - "wasm32-wasip1": [ + "x86_64-apple-darwin": [ { "id": "errno 0.3.14", "target": "errno", "alias": "libc_errno" }, { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] } }, "edition": "2021", - "version": "1.1.2" + "version": "1.1.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -11500,14 +12137,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls 0.23.32": { + "rustls 0.23.37": { "name": "rustls", - "version": "0.23.32", + "version": "0.23.37", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.32/download", - "sha256": "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" + "url": "https://static.crates.io/crates/rustls/0.23.37/download", + "sha256": "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" } }, "targets": [ @@ -11552,7 +12189,7 @@ "deps": { "common": [ { - "id": "once_cell 1.21.3", + "id": "once_cell 1.21.4", "target": "once_cell" }, { @@ -11560,16 +12197,16 @@ "target": "ring" }, { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "build_script_build" }, { - "id": "rustls-pki-types 1.12.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "rustls-webpki 0.103.6", + "id": "rustls-webpki 0.103.9", "target": "webpki" }, { @@ -11584,7 +12221,7 @@ "selects": {} }, "edition": "2021", - "version": "0.23.32" + "version": "0.23.37" }, "build_script_attrs": { "compile_data_glob": [ @@ -11614,14 +12251,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls-pki-types 1.12.0": { + "rustls-pki-types 1.14.0": { "name": "rustls-pki-types", - "version": "1.12.0", + "version": "1.14.0", "package_url": "https://github.com/rustls/pki-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.12.0/download", - "sha256": "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" + "url": "https://static.crates.io/crates/rustls-pki-types/1.14.0/download", + "sha256": "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" } }, "targets": [ @@ -11661,7 +12298,7 @@ "selects": {} }, "edition": "2021", - "version": "1.12.0" + "version": "1.14.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11670,14 +12307,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls-webpki 0.103.6": { + "rustls-webpki 0.103.9": { "name": "rustls-webpki", - "version": "0.103.6", + "version": "0.103.9", "package_url": "https://github.com/rustls/webpki", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-webpki/0.103.6/download", - "sha256": "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb" + "url": "https://static.crates.io/crates/rustls-webpki/0.103.9/download", + "sha256": "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" } }, "targets": [ @@ -11714,7 +12351,7 @@ "target": "ring" }, { - "id": "rustls-pki-types 1.12.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -11726,7 +12363,7 @@ "selects": {} }, "edition": "2021", - "version": "0.103.6" + "version": "0.103.9" }, "license": "ISC", "license_ids": [ @@ -11805,14 +12442,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ryu 1.0.20": { + "ryu 1.0.23": { "name": "ryu", - "version": "1.0.20", + "version": "1.0.23", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.20/download", - "sha256": "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + "url": "https://static.crates.io/crates/ryu/1.0.23/download", + "sha256": "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" } }, "targets": [ @@ -11834,8 +12471,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.20" + "edition": "2021", + "version": "1.0.23" }, "license": "Apache-2.0 OR BSL-1.0", "license_ids": [ @@ -11894,6 +12531,53 @@ ], "license_file": "LICENSE-MIT" }, + "schannel 0.1.29": { + "name": "schannel", + "version": "0.1.29", + "package_url": "https://github.com/steffengy/schannel-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/schannel/0.1.29/download", + "sha256": "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" + } + }, + "targets": [ + { + "Library": { + "crate_name": "schannel", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "schannel", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows-sys 0.61.2", + "target": "windows_sys" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.1.29" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE.md" + }, "scroll 0.12.0": { "name": "scroll", "version": "0.12.0", @@ -11981,15 +12665,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], @@ -12004,6 +12688,122 @@ ], "license_file": "LICENSE" }, + "security-framework 3.7.0": { + "name": "security-framework", + "version": "3.7.0", + "package_url": "https://github.com/kornelski/rust-security-framework", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/security-framework/3.7.0/download", + "sha256": "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "security_framework", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "security_framework", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 2.11.0", + "target": "bitflags" + }, + { + "id": "core-foundation 0.10.1", + "target": "core_foundation" + }, + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.183", + "target": "libc" + }, + { + "id": "security-framework-sys 2.17.0", + "target": "security_framework_sys" + } + ], + "selects": {} + }, + "edition": "2024", + "version": "3.7.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "security-framework-sys 2.17.0": { + "name": "security-framework-sys", + "version": "2.17.0", + "package_url": "https://github.com/kornelski/rust-security-framework", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/security-framework-sys/2.17.0/download", + "sha256": "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "security_framework_sys", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "security_framework_sys", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "core-foundation-sys 0.8.7", + "target": "core_foundation_sys" + }, + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "2.17.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "selenium-manager 0.4.42-nightly": { "name": "selenium-manager", "version": "0.4.42-nightly", @@ -12031,19 +12831,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { - "id": "apple-flat-package 0.20.0", - "target": "apple_flat_package" - }, - { - "id": "bzip2 0.6.0", + "id": "bzip2 0.6.1", "target": "bzip2" }, { - "id": "clap 4.5.48", + "id": "clap 4.6.0", "target": "clap" }, { @@ -12055,7 +12851,7 @@ "target": "directories" }, { - "id": "env_logger 0.11.8", + "id": "env_logger 0.11.9", "target": "env_logger" }, { @@ -12063,7 +12859,7 @@ "target": "exitcode" }, { - "id": "flate2 1.1.2", + "id": "flate2 1.1.9", "target": "flate2" }, { @@ -12079,15 +12875,15 @@ "target": "infer" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "regex 1.11.3", + "id": "regex 1.12.3", "target": "regex" }, { - "id": "reqwest 0.12.23", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -12095,7 +12891,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -12107,15 +12903,15 @@ "target": "tar" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "toml 0.9.7", + "id": "toml 0.9.12+spec-1.1.0", "target": "toml" }, { @@ -12123,7 +12919,7 @@ "target": "walkdir" }, { - "id": "which 8.0.0", + "id": "which 8.0.2", "target": "which" }, { @@ -12136,6 +12932,12 @@ } ], "selects": { + "cfg(target_os = \"macos\")": [ + { + "id": "apple-flat-package 0.20.0", + "target": "apple_flat_package" + } + ], "cfg(windows)": [ { "id": "winapi 0.3.9", @@ -12147,7 +12949,7 @@ "deps_dev": { "common": [ { - "id": "assert_cmd 2.0.17", + "id": "assert_cmd 2.2.0", "target": "assert_cmd" }, { @@ -12259,6 +13061,7 @@ ], "crate_features": { "common": [ + "alloc", "default", "derive", "serde_derive", @@ -12341,7 +13144,7 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -12353,7 +13156,7 @@ "target": "thiserror" }, { - "id": "xml-rs 0.8.27", + "id": "xml-rs 0.8.28", "target": "xml" } ], @@ -12496,15 +13299,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], @@ -12520,14 +13323,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_json 1.0.145": { + "serde_json 1.0.149": { "name": "serde_json", - "version": "1.0.145", + "version": "1.0.149", "package_url": "https://github.com/serde-rs/json", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.145/download", - "sha256": "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" + "url": "https://static.crates.io/crates/serde_json/1.0.149/download", + "sha256": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" } }, "targets": [ @@ -12571,24 +13374,24 @@ "deps": { "common": [ { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, - { - "id": "ryu 1.0.20", - "target": "ryu" - }, { "id": "serde_core 1.0.228", "target": "serde_core" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "build_script_build" + }, + { + "id": "zmij 1.0.21", + "target": "zmij" } ], "selects": { @@ -12601,7 +13404,7 @@ } }, "edition": "2021", - "version": "1.0.145" + "version": "1.0.149" }, "build_script_attrs": { "compile_data_glob": [ @@ -12621,14 +13424,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_spanned 1.0.2": { + "serde_spanned 1.0.4": { "name": "serde_spanned", - "version": "1.0.2", + "version": "1.0.4", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_spanned/1.0.2/download", - "sha256": "5417783452c2be558477e104686f7de5dae53dba813c28435e0e70f82d9b04ee" + "url": "https://static.crates.io/crates/serde_spanned/1.0.4/download", + "sha256": "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" } }, "targets": [ @@ -12668,7 +13471,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.2" + "version": "1.0.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -12713,11 +13516,11 @@ "target": "form_urlencoded" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "ryu 1.0.20", + "id": "ryu 1.0.23", "target": "ryu" }, { @@ -12784,7 +13587,7 @@ "target": "byteorder" }, { - "id": "crc 3.3.0", + "id": "crc 3.4.0", "target": "crc" }, { @@ -12807,11 +13610,11 @@ "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.81", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ] @@ -12865,7 +13668,7 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { @@ -12931,7 +13734,7 @@ "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { @@ -13050,14 +13853,14 @@ ], "license_file": "LICENSE-APACHE" }, - "simd-adler32 0.3.7": { + "simd-adler32 0.3.8": { "name": "simd-adler32", - "version": "0.3.7", + "version": "0.3.8", "package_url": "https://github.com/mcountryman/simd-adler32", "repository": { "Http": { - "url": "https://static.crates.io/crates/simd-adler32/0.3.7/download", - "sha256": "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" + "url": "https://static.crates.io/crates/simd-adler32/0.3.8/download", + "sha256": "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" } }, "targets": [ @@ -13086,7 +13889,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.7" + "version": "0.3.8" }, "license": "MIT", "license_ids": [ @@ -13133,14 +13936,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slab 0.4.11": { + "slab 0.4.12": { "name": "slab", - "version": "0.4.11", + "version": "0.4.12", "package_url": "https://github.com/tokio-rs/slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/slab/0.4.11/download", - "sha256": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" + "url": "https://static.crates.io/crates/slab/0.4.12/download", + "sha256": "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" } }, "targets": [ @@ -13163,14 +13966,18 @@ "**" ], "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} + "common": [], + "selects": { + "aarch64-apple-darwin": [ + "std" + ], + "x86_64-apple-darwin": [ + "std" + ] + } }, "edition": "2018", - "version": "0.4.11" + "version": "0.4.12" }, "license": "MIT", "license_ids": [ @@ -13209,25 +14016,10 @@ ], "crate_features": { "common": [ - "const_generics" + "const_generics", + "const_new" ], - "selects": { - "aarch64-apple-darwin": [ - "const_new" - ], - "aarch64-unknown-linux-gnu": [ - "const_new" - ], - "x86_64-pc-windows-msvc": [ - "const_new" - ], - "x86_64-unknown-linux-gnu": [ - "const_new" - ], - "x86_64-unknown-nixos-gnu": [ - "const_new" - ] - } + "selects": {} }, "edition": "2018", "version": "1.15.1" @@ -13239,14 +14031,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.6.0": { + "socket2 0.6.3": { "name": "socket2", - "version": "0.6.0", + "version": "0.6.3", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.6.0/download", - "sha256": "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" + "url": "https://static.crates.io/crates/socket2/0.6.3/download", + "sha256": "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" } }, "targets": [ @@ -13277,22 +14069,22 @@ "deps": { "common": [], "selects": { - "cfg(unix)": [ + "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "0.6.0" + "version": "0.6.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13355,14 +14147,14 @@ ], "license_file": "LICENSE-APACHE" }, - "stable_deref_trait 1.2.0": { + "stable_deref_trait 1.2.1": { "name": "stable_deref_trait", - "version": "1.2.0", + "version": "1.2.1", "package_url": "https://github.com/storyyeller/stable_deref_trait", "repository": { "Http": { - "url": "https://static.crates.io/crates/stable_deref_trait/1.2.0/download", - "sha256": "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + "url": "https://static.crates.io/crates/stable_deref_trait/1.2.1/download", + "sha256": "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" } }, "targets": [ @@ -13384,16 +14176,10 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "alloc" - ], - "selects": {} - }, "edition": "2015", - "version": "1.2.0" + "version": "1.2.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -13476,14 +14262,14 @@ ], "license_file": "LICENSE" }, - "syn 2.0.106": { + "syn 2.0.117": { "name": "syn", - "version": "2.0.106", + "version": "2.0.117", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.106/download", - "sha256": "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" + "url": "https://static.crates.io/crates/syn/2.0.117/download", + "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" } }, "targets": [ @@ -13524,22 +14310,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "unicode-ident 1.0.19", + "id": "unicode-ident 1.0.24", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "2.0.106" + "version": "2.0.117" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13587,7 +14373,7 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" } ], @@ -13641,15 +14427,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], @@ -13703,7 +14489,7 @@ "deps": { "common": [ { - "id": "filetime 0.2.26", + "id": "filetime 0.2.27", "target": "filetime" } ], @@ -13722,17 +14508,17 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ], - "x86_64-unknown-linux-gnu": [ + "x86_64-apple-darwin": [ { "id": "xattr 1.6.1", "target": "xattr" } ], - "x86_64-unknown-nixos-gnu": [ + "x86_64-unknown-linux-gnu": [ { "id": "xattr 1.6.1", "target": "xattr" @@ -13750,14 +14536,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tempfile 3.23.0": { + "tempfile 3.27.0": { "name": "tempfile", - "version": "3.23.0", + "version": "3.27.0", "package_url": "https://github.com/Stebalien/tempfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/tempfile/3.23.0/download", - "sha256": "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" + "url": "https://static.crates.io/crates/tempfile/3.27.0/download", + "sha256": "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" } }, "targets": [ @@ -13793,63 +14579,31 @@ "target": "fastrand" }, { - "id": "once_cell 1.21.3", + "id": "getrandom 0.4.2", + "target": "getrandom" + }, + { + "id": "once_cell 1.21.4", "target": "once_cell" } ], "selects": { - "aarch64-apple-darwin": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "rustix" } ], "cfg(windows)": [ { - "id": "windows-sys 0.61.1", + "id": "windows-sys 0.61.2", "target": "windows_sys" } - ], - "wasm32-wasip1": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "getrandom 0.3.3", - "target": "getrandom" - } ] } }, "edition": "2021", - "version": "3.23.0" + "version": "3.27.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -13976,14 +14730,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror 2.0.17": { + "thiserror 2.0.18": { "name": "thiserror", - "version": "2.0.17", + "version": "2.0.18", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.17/download", - "sha256": "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" + "url": "https://static.crates.io/crates/thiserror/2.0.18/download", + "sha256": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" } }, "targets": [ @@ -14027,7 +14781,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "build_script_build" } ], @@ -14037,13 +14791,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 2.0.17", + "id": "thiserror-impl 2.0.18", "target": "thiserror_impl" } ], "selects": {} }, - "version": "2.0.17" + "version": "2.0.18" }, "build_script_attrs": { "compile_data_glob": [ @@ -14095,15 +14849,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], @@ -14119,14 +14873,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 2.0.17": { + "thiserror-impl 2.0.18": { "name": "thiserror-impl", - "version": "2.0.17", + "version": "2.0.18", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.17/download", - "sha256": "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" + "url": "https://static.crates.io/crates/thiserror-impl/2.0.18/download", + "sha256": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" } }, "targets": [ @@ -14151,22 +14905,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.0.17" + "version": "2.0.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14175,14 +14929,14 @@ ], "license_file": "LICENSE-APACHE" }, - "time 0.3.44": { + "time 0.3.47": { "name": "time", - "version": "0.3.44", + "version": "0.3.47", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time/0.3.44/download", - "sha256": "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" + "url": "https://static.crates.io/crates/time/0.3.47/download", + "sha256": "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" } }, "targets": [ @@ -14215,11 +14969,11 @@ "deps": { "common": [ { - "id": "deranged 0.5.4", + "id": "deranged 0.5.8", "target": "deranged" }, { - "id": "num-conv 0.1.0", + "id": "num-conv 0.2.0", "target": "num_conv" }, { @@ -14227,23 +14981,23 @@ "target": "powerfmt" }, { - "id": "time-core 0.1.6", + "id": "time-core 0.1.8", "target": "time_core" } ], "selects": {} }, - "edition": "2021", + "edition": "2024", "proc_macro_deps": { "common": [ { - "id": "time-macros 0.2.24", + "id": "time-macros 0.2.27", "target": "time_macros" } ], "selects": {} }, - "version": "0.3.44" + "version": "0.3.47" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14252,14 +15006,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-core 0.1.6": { + "time-core 0.1.8": { "name": "time-core", - "version": "0.1.6", + "version": "0.1.8", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-core/0.1.6/download", - "sha256": "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" + "url": "https://static.crates.io/crates/time-core/0.1.8/download", + "sha256": "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" } }, "targets": [ @@ -14281,8 +15035,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.1.6" + "edition": "2024", + "version": "0.1.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14291,14 +15045,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-macros 0.2.24": { + "time-macros 0.2.27": { "name": "time-macros", - "version": "0.2.24", + "version": "0.2.27", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.24/download", - "sha256": "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" + "url": "https://static.crates.io/crates/time-macros/0.2.27/download", + "sha256": "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" } }, "targets": [ @@ -14323,18 +15077,18 @@ "deps": { "common": [ { - "id": "num-conv 0.1.0", + "id": "num-conv 0.2.0", "target": "num_conv" }, { - "id": "time-core 0.1.6", + "id": "time-core 0.1.8", "target": "time_core" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.24" + "edition": "2024", + "version": "0.2.27" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14343,14 +15097,14 @@ ], "license_file": "LICENSE-Apache" }, - "tinystr 0.8.1": { + "tinystr 0.8.2": { "name": "tinystr", - "version": "0.8.1", + "version": "0.8.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/tinystr/0.8.1/download", - "sha256": "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" + "url": "https://static.crates.io/crates/tinystr/0.8.2/download", + "sha256": "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" } }, "targets": [ @@ -14374,7 +15128,6 @@ ], "crate_features": { "common": [ - "alloc", "zerovec" ], "selects": {} @@ -14382,7 +15135,7 @@ "deps": { "common": [ { - "id": "zerovec 0.11.4", + "id": "zerovec 0.11.5", "target": "zerovec" } ], @@ -14398,7 +15151,7 @@ ], "selects": {} }, - "version": "0.8.1" + "version": "0.8.2" }, "license": "Unicode-3.0", "license_ids": [ @@ -14486,14 +15239,14 @@ ], "license_file": "LICENSE-APACHE.md" }, - "tokio 1.47.1": { + "tokio 1.50.0": { "name": "tokio", - "version": "1.47.1", + "version": "1.50.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.47.1/download", - "sha256": "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" + "url": "https://static.crates.io/crates/tokio/1.50.0/download", + "sha256": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" } }, "targets": [ @@ -14517,6 +15270,9 @@ ], "crate_features": { "common": [ + "bytes", + "default", + "io-util", "libc", "macros", "mio", @@ -14524,147 +15280,73 @@ "rt", "rt-multi-thread", "socket2", + "sync", + "time", "tokio-macros" ], "selects": { - "aarch64-apple-darwin": [ - "bytes", - "default", - "io-util", - "sync", - "time" - ], - "aarch64-unknown-linux-gnu": [ - "bytes", - "default", - "io-util", - "sync", - "time" + "aarch64-pc-windows-msvc": [ + "windows-sys" ], "x86_64-pc-windows-msvc": [ - "bytes", - "default", - "io-util", - "sync", - "time", "windows-sys" - ], - "x86_64-unknown-linux-gnu": [ - "bytes", - "default", - "io-util", - "sync", - "time" - ], - "x86_64-unknown-nixos-gnu": [ - "bytes", - "default", - "io-util", - "sync", - "time" ] } }, "deps": { "common": [ { - "id": "mio 1.0.4", + "id": "bytes 1.11.1", + "target": "bytes" + }, + { + "id": "mio 1.1.1", "target": "mio" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" + }, + { + "id": "socket2 0.6.3", + "target": "socket2" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" } ], - "aarch64-unknown-linux-gnu": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, + "aarch64-pc-windows-msvc": [ { - "id": "socket2 0.6.0", - "target": "socket2" + "id": "windows-sys 0.61.2", + "target": "windows_sys" } ], - "cfg(all(tokio_uring, target_os = \"linux\"))": [ - { - "id": "io-uring 0.7.10", - "target": "io_uring" - }, + "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" - }, - { - "id": "slab 0.4.11", - "target": "slab" } ], - "cfg(tokio_taskdump)": [ + "x86_64-apple-darwin": [ { - "id": "backtrace 0.3.76", - "target": "backtrace" + "id": "libc 0.2.183", + "target": "libc" } ], "x86_64-pc-windows-msvc": [ { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - }, - { - "id": "windows-sys 0.59.0", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ], "x86_64-unknown-linux-gnu": [ { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", - "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" - }, - { - "id": "socket2 0.6.0", - "target": "socket2" } ] } @@ -14673,13 +15355,13 @@ "proc_macro_deps": { "common": [ { - "id": "tokio-macros 2.5.0", + "id": "tokio-macros 2.6.1", "target": "tokio_macros" } ], "selects": {} }, - "version": "1.47.1" + "version": "1.50.0" }, "license": "MIT", "license_ids": [ @@ -14687,14 +15369,14 @@ ], "license_file": "LICENSE" }, - "tokio-macros 2.5.0": { + "tokio-macros 2.6.1": { "name": "tokio-macros", - "version": "2.5.0", + "version": "2.6.1", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.5.0/download", - "sha256": "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" + "url": "https://static.crates.io/crates/tokio-macros/2.6.1/download", + "sha256": "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" } }, "targets": [ @@ -14719,22 +15401,73 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.5.0" + "version": "2.6.1" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "tokio-native-tls 0.3.1": { + "name": "tokio-native-tls", + "version": "0.3.1", + "package_url": "https://github.com/tokio-rs/tls", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/tokio-native-tls/0.3.1/download", + "sha256": "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" + } + }, + "targets": [ + { + "Library": { + "crate_name": "tokio_native_tls", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "tokio_native_tls", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "native-tls 0.2.18", + "target": "native_tls" + }, + { + "id": "tokio 1.50.0", + "target": "tokio" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.1" }, "license": "MIT", "license_ids": [ @@ -14781,11 +15514,11 @@ "deps": { "common": [ { - "id": "rustls 0.23.32", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -14801,14 +15534,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml 0.9.7": { + "toml 0.9.12+spec-1.1.0": { "name": "toml", - "version": "0.9.7", + "version": "0.9.12+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml/0.9.7/download", - "sha256": "00e5e5d9bf2475ac9d4f0d9edab68cc573dc2fd644b0dba36b0c30a92dd9eaa0" + "url": "https://static.crates.io/crates/toml/0.9.12+spec-1.1.0/download", + "sha256": "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" } }, "targets": [ @@ -14847,30 +15580,30 @@ "target": "serde_core" }, { - "id": "serde_spanned 1.0.2", + "id": "serde_spanned 1.0.4", "target": "serde_spanned" }, { - "id": "toml_datetime 0.7.2", + "id": "toml_datetime 0.7.5+spec-1.1.0", "target": "toml_datetime" }, { - "id": "toml_parser 1.0.3", + "id": "toml_parser 1.0.9+spec-1.1.0", "target": "toml_parser" }, { - "id": "toml_writer 1.0.3", + "id": "toml_writer 1.0.6+spec-1.1.0", "target": "toml_writer" }, { - "id": "winnow 0.7.13", + "id": "winnow 0.7.15", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.9.7" + "version": "0.9.12+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14879,14 +15612,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_datetime 0.7.2": { + "toml_datetime 0.7.5+spec-1.1.0": { "name": "toml_datetime", - "version": "0.7.2", + "version": "0.7.5+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_datetime/0.7.2/download", - "sha256": "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1" + "url": "https://static.crates.io/crates/toml_datetime/0.7.5+spec-1.1.0/download", + "sha256": "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" } }, "targets": [ @@ -14926,7 +15659,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.2" + "version": "0.7.5+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14935,14 +15668,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_parser 1.0.3": { + "toml_parser 1.0.9+spec-1.1.0": { "name": "toml_parser", - "version": "1.0.3", + "version": "1.0.9+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_parser/1.0.3/download", - "sha256": "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" + "url": "https://static.crates.io/crates/toml_parser/1.0.9+spec-1.1.0/download", + "sha256": "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" } }, "targets": [ @@ -14974,14 +15707,14 @@ "deps": { "common": [ { - "id": "winnow 0.7.13", + "id": "winnow 0.7.15", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "1.0.3" + "version": "1.0.9+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14990,14 +15723,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_writer 1.0.3": { + "toml_writer 1.0.6+spec-1.1.0": { "name": "toml_writer", - "version": "1.0.3", + "version": "1.0.6+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_writer/1.0.3/download", - "sha256": "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109" + "url": "https://static.crates.io/crates/toml_writer/1.0.6+spec-1.1.0/download", + "sha256": "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" } }, "targets": [ @@ -15027,7 +15760,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.3" + "version": "1.0.6+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15036,14 +15769,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tower 0.5.2": { + "tower 0.5.3": { "name": "tower", - "version": "0.5.2", + "version": "0.5.3", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower/0.5.2/download", - "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" + "url": "https://static.crates.io/crates/tower/0.5.3/download", + "sha256": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" } }, "targets": [ @@ -15067,7 +15800,6 @@ ], "crate_features": { "common": [ - "__common", "futures-core", "futures-util", "pin-project-lite", @@ -15082,15 +15814,15 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -15098,7 +15830,7 @@ "target": "sync_wrapper" }, { - "id": "tokio 1.47.1", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -15113,7 +15845,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.3" }, "license": "MIT", "license_ids": [ @@ -15121,14 +15853,14 @@ ], "license_file": "LICENSE" }, - "tower-http 0.6.6": { + "tower-http 0.6.8": { "name": "tower-http", - "version": "0.6.6", + "version": "0.6.8", "package_url": "https://github.com/tower-rs/tower-http", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower-http/0.6.6/download", - "sha256": "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" + "url": "https://static.crates.io/crates/tower-http/0.6.8/download", + "sha256": "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" } }, "targets": [ @@ -15162,19 +15894,19 @@ "deps": { "common": [ { - "id": "bitflags 2.9.4", + "id": "bitflags 2.11.0", "target": "bitflags" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -15182,15 +15914,15 @@ "target": "http_body" }, { - "id": "iri-string 0.7.8", + "id": "iri-string 0.7.10", "target": "iri_string" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { @@ -15205,7 +15937,7 @@ "selects": {} }, "edition": "2018", - "version": "0.6.6" + "version": "0.6.8" }, "license": "MIT", "license_ids": [ @@ -15289,14 +16021,14 @@ ], "license_file": "LICENSE" }, - "tracing 0.1.41": { + "tracing 0.1.44": { "name": "tracing", - "version": "0.1.41", + "version": "0.1.44", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing/0.1.41/download", - "sha256": "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" + "url": "https://static.crates.io/crates/tracing/0.1.44/download", + "sha256": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" } }, "targets": [ @@ -15327,18 +16059,18 @@ "deps": { "common": [ { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tracing-core 0.1.34", + "id": "tracing-core 0.1.36", "target": "tracing_core" } ], "selects": {} }, "edition": "2018", - "version": "0.1.41" + "version": "0.1.44" }, "license": "MIT", "license_ids": [ @@ -15346,14 +16078,14 @@ ], "license_file": "LICENSE" }, - "tracing-core 0.1.34": { + "tracing-core 0.1.36": { "name": "tracing-core", - "version": "0.1.34", + "version": "0.1.36", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing-core/0.1.34/download", - "sha256": "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" + "url": "https://static.crates.io/crates/tracing-core/0.1.36/download", + "sha256": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" } }, "targets": [ @@ -15385,14 +16117,14 @@ "deps": { "common": [ { - "id": "once_cell 1.21.3", + "id": "once_cell 1.21.4", "target": "once_cell" } ], "selects": {} }, "edition": "2018", - "version": "0.1.34" + "version": "0.1.36" }, "license": "MIT", "license_ids": [ @@ -15438,14 +16170,14 @@ ], "license_file": "LICENSE" }, - "typenum 1.18.0": { + "typenum 1.19.0": { "name": "typenum", - "version": "1.18.0", + "version": "1.19.0", "package_url": "https://github.com/paholg/typenum", "repository": { "Http": { - "url": "https://static.crates.io/crates/typenum/1.18.0/download", - "sha256": "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" + "url": "https://static.crates.io/crates/typenum/1.19.0/download", + "sha256": "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" } }, "targets": [ @@ -15482,14 +16214,14 @@ "deps": { "common": [ { - "id": "typenum 1.18.0", + "id": "typenum 1.19.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.18.0" + "version": "1.19.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -15509,14 +16241,14 @@ ], "license_file": "LICENSE" }, - "unicode-ident 1.0.19": { + "unicode-ident 1.0.24": { "name": "unicode-ident", - "version": "1.0.19", + "version": "1.0.24", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.19/download", - "sha256": "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" + "url": "https://static.crates.io/crates/unicode-ident/1.0.24/download", + "sha256": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" } }, "targets": [ @@ -15538,8 +16270,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.19" + "edition": "2021", + "version": "1.0.24" }, "license": "(MIT OR Apache-2.0) AND Unicode-3.0", "license_ids": [ @@ -15549,6 +16281,51 @@ ], "license_file": "LICENSE-APACHE" }, + "unicode-xid 0.2.6": { + "name": "unicode-xid", + "version": "0.2.6", + "package_url": "https://github.com/unicode-rs/unicode-xid", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/unicode-xid/0.2.6/download", + "sha256": "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + } + }, + "targets": [ + { + "Library": { + "crate_name": "unicode_xid", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "unicode_xid", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default" + ], + "selects": {} + }, + "edition": "2015", + "version": "0.2.6" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "untrusted 0.9.0": { "name": "untrusted", "version": "0.9.0", @@ -15587,14 +16364,14 @@ ], "license_file": "LICENSE.txt" }, - "url 2.5.7": { + "url 2.5.8": { "name": "url", - "version": "2.5.7", + "version": "2.5.8", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.5.7/download", - "sha256": "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" + "url": "https://static.crates.io/crates/url/2.5.8/download", + "sha256": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" } }, "targets": [ @@ -15619,7 +16396,6 @@ "crate_features": { "common": [ "default", - "serde", "std" ], "selects": {} @@ -15637,16 +16413,12 @@ { "id": "percent-encoding 2.3.2", "target": "percent_encoding" - }, - { - "id": "serde 1.0.228", - "target": "serde" } ], "selects": {} }, "edition": "2018", - "version": "2.5.7" + "version": "2.5.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15739,14 +16511,14 @@ ], "license_file": "LICENSE-APACHE" }, - "uuid 1.18.1": { + "uuid 1.22.0": { "name": "uuid", - "version": "1.18.1", + "version": "1.22.0", "package_url": "https://github.com/uuid-rs/uuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/uuid/1.18.1/download", - "sha256": "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" + "url": "https://static.crates.io/crates/uuid/1.22.0/download", + "sha256": "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" } }, "targets": [ @@ -15775,10 +16547,49 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.18.1" + "edition": "2021", + "version": "1.22.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "vcpkg 0.2.15": { + "name": "vcpkg", + "version": "0.2.15", + "package_url": "https://github.com/mcgoo/vcpkg-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/vcpkg/0.2.15/download", + "sha256": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + } + }, + "targets": [ + { + "Library": { + "crate_name": "vcpkg", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "vcpkg", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.2.15" }, - "license": "Apache-2.0 OR MIT", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -15858,7 +16669,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] @@ -16005,13 +16816,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "edition": "2018", "version": "0.11.1+wasi-snapshot-preview1" }, @@ -16022,20 +16826,20 @@ ], "license_file": "LICENSE-APACHE" }, - "wasi 0.14.7+wasi-0.2.4": { - "name": "wasi", - "version": "0.14.7+wasi-0.2.4", + "wasip2 1.0.2+wasi-0.2.9": { + "name": "wasip2", + "version": "1.0.2+wasi-0.2.9", "package_url": "https://github.com/bytecodealliance/wasi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasi/0.14.7+wasi-0.2.4/download", - "sha256": "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" + "url": "https://static.crates.io/crates/wasip2/1.0.2+wasi-0.2.9/download", + "sha256": "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" } }, "targets": [ { "Library": { - "crate_name": "wasi", + "crate_name": "wasip2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16046,7 +16850,7 @@ } } ], - "library_target_name": "wasi", + "library_target_name": "wasip2", "common_attrs": { "compile_data_glob": [ "**" @@ -16054,36 +16858,36 @@ "deps": { "common": [ { - "id": "wasip2 1.0.1+wasi-0.2.4", - "target": "wasip2" + "id": "wit-bindgen 0.51.0", + "target": "wit_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "0.14.7+wasi-0.2.4" + "version": "1.0.2+wasi-0.2.9" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "wasip2 1.0.1+wasi-0.2.4": { - "name": "wasip2", - "version": "1.0.1+wasi-0.2.4", + "wasip3 0.4.0+wasi-0.3.0-rc-2026-01-06": { + "name": "wasip3", + "version": "0.4.0+wasi-0.3.0-rc-2026-01-06", "package_url": "https://github.com/bytecodealliance/wasi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasip2/1.0.1+wasi-0.2.4/download", - "sha256": "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" + "url": "https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download", + "sha256": "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" } }, "targets": [ { "Library": { - "crate_name": "wasip2", + "crate_name": "wasip3", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16094,7 +16898,7 @@ } } ], - "library_target_name": "wasip2", + "library_target_name": "wasip3", "common_attrs": { "compile_data_glob": [ "**" @@ -16102,14 +16906,14 @@ "deps": { "common": [ { - "id": "wit-bindgen 0.46.0", + "id": "wit-bindgen 0.51.0", "target": "wit_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "1.0.1+wasi-0.2.4" + "version": "0.4.0+wasi-0.3.0-rc-2026-01-06" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -16118,14 +16922,14 @@ ], "license_file": null }, - "wasm-bindgen 0.2.104": { + "wasm-bindgen 0.2.114": { "name": "wasm-bindgen", - "version": "0.2.104", + "version": "0.2.114", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.104/download", - "sha256": "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.114/download", + "sha256": "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" } }, "targets": [ @@ -16159,29 +16963,22 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "cfg-if 1.0.3", + "id": "cfg-if 1.0.4", "target": "cfg_if" }, { - "id": "once_cell 1.21.3", + "id": "once_cell 1.21.4", "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "build_script_build" }, { - "id": "wasm-bindgen-shared 0.2.104", + "id": "wasm-bindgen-shared 0.2.114", "target": "wasm_bindgen_shared" } ], @@ -16191,13 +16988,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasm-bindgen-macro 0.2.104", + "id": "wasm-bindgen-macro 0.2.114", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.104" + "version": "0.2.114" }, "build_script_attrs": { "compile_data_glob": [ @@ -16212,7 +17009,7 @@ "link_deps": { "common": [ { - "id": "wasm-bindgen-shared 0.2.104", + "id": "wasm-bindgen-shared 0.2.114", "target": "wasm_bindgen_shared" } ], @@ -16236,20 +17033,20 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-backend 0.2.104": { - "name": "wasm-bindgen-backend", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/backend", + "wasm-bindgen-futures 0.4.64": { + "name": "wasm-bindgen-futures", + "version": "0.4.64", + "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-backend/0.2.104/download", - "sha256": "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.64/download", + "sha256": "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" } }, "targets": [ { "Library": { - "crate_name": "wasm_bindgen_backend", + "crate_name": "wasm_bindgen_futures", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16260,7 +17057,7 @@ } } ], - "library_target_name": "wasm_bindgen_backend", + "library_target_name": "wasm_bindgen_futures", "common_attrs": { "compile_data_glob": [ "**" @@ -16268,34 +17065,85 @@ "deps": { "common": [ { - "id": "bumpalo 3.19.0", - "target": "bumpalo" + "id": "cfg-if 1.0.4", + "target": "cfg_if" }, { - "id": "log 0.4.28", - "target": "log" + "id": "js-sys 0.3.91", + "target": "js_sys" }, { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" + "id": "once_cell 1.21.4", + "target": "once_cell" }, { - "id": "quote 1.0.41", - "target": "quote" - }, + "id": "wasm-bindgen 0.2.114", + "target": "wasm_bindgen" + } + ], + "selects": { + "cfg(target_feature = \"atomics\")": [ + { + "id": "web-sys 0.3.91", + "target": "web_sys" + } + ] + } + }, + "edition": "2021", + "version": "0.4.64" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "wasm-bindgen-macro 0.2.114": { + "name": "wasm-bindgen-macro", + "version": "0.2.114", + "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.114/download", + "sha256": "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "wasm_bindgen_macro", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasm_bindgen_macro", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ { - "id": "syn 2.0.106", - "target": "syn" + "id": "quote 1.0.45", + "target": "quote" }, { - "id": "wasm-bindgen-shared 0.2.104", - "target": "wasm_bindgen_shared" + "id": "wasm-bindgen-macro-support 0.2.114", + "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2021", - "version": "0.2.104" + "version": "0.2.114" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16304,20 +17152,20 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-futures 0.4.54": { - "name": "wasm-bindgen-futures", - "version": "0.4.54", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures", + "wasm-bindgen-macro-support 0.2.114": { + "name": "wasm-bindgen-macro-support", + "version": "0.2.114", + "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.54/download", - "sha256": "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.114/download", + "sha256": "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" } }, "targets": [ { "Library": { - "crate_name": "wasm_bindgen_futures", + "crate_name": "wasm_bindgen_macro_support", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16328,48 +17176,38 @@ } } ], - "library_target_name": "wasm_bindgen_futures", + "library_target_name": "wasm_bindgen_macro_support", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "cfg-if 1.0.3", - "target": "cfg_if" + "id": "bumpalo 3.20.2", + "target": "bumpalo" }, { - "id": "js-sys 0.3.81", - "target": "js_sys" + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" }, { - "id": "once_cell 1.21.3", - "target": "once_cell" + "id": "quote 1.0.45", + "target": "quote" }, { - "id": "wasm-bindgen 0.2.104", - "target": "wasm_bindgen" + "id": "syn 2.0.117", + "target": "syn" + }, + { + "id": "wasm-bindgen-shared 0.2.114", + "target": "wasm_bindgen_shared" } ], - "selects": { - "cfg(target_feature = \"atomics\")": [ - { - "id": "web-sys 0.3.81", - "target": "web_sys" - } - ] - } + "selects": {} }, "edition": "2021", - "version": "0.4.54" + "version": "0.2.114" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16378,20 +17216,20 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro 0.2.104": { - "name": "wasm-bindgen-macro", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro", + "wasm-bindgen-shared 0.2.114": { + "name": "wasm-bindgen-shared", + "version": "0.2.114", + "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.104/download", - "sha256": "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.114/download", + "sha256": "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" } }, "targets": [ { - "ProcMacro": { - "crate_name": "wasm_bindgen_macro", + "Library": { + "crate_name": "wasm_bindgen_shared", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16400,9 +17238,21 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "wasm_bindgen_macro", + "library_target_name": "wasm_bindgen_shared", "common_attrs": { "compile_data_glob": [ "**" @@ -16410,18 +17260,30 @@ "deps": { "common": [ { - "id": "quote 1.0.41", - "target": "quote" + "id": "unicode-ident 1.0.24", + "target": "unicode_ident" }, { - "id": "wasm-bindgen-macro-support 0.2.104", - "target": "wasm_bindgen_macro_support" + "id": "wasm-bindgen-shared 0.2.114", + "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.104" + "version": "0.2.114" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ], + "links": "wasm_bindgen" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16430,20 +17292,20 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro-support 0.2.104": { - "name": "wasm-bindgen-macro-support", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support", + "wasm-encoder 0.244.0": { + "name": "wasm-encoder", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.104/download", - "sha256": "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" + "url": "https://static.crates.io/crates/wasm-encoder/0.244.0/download", + "sha256": "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" } }, "targets": [ { "Library": { - "crate_name": "wasm_bindgen_macro_support", + "crate_name": "wasm_encoder", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16454,60 +17316,56 @@ } } ], - "library_target_name": "wasm_bindgen_macro_support", + "library_target_name": "wasm_encoder", "common_attrs": { "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "component-model", + "std", + "wasmparser" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "proc-macro2 1.0.101", - "target": "proc_macro2" - }, - { - "id": "quote 1.0.41", - "target": "quote" - }, - { - "id": "syn 2.0.106", - "target": "syn" - }, - { - "id": "wasm-bindgen-backend 0.2.104", - "target": "wasm_bindgen_backend" + "id": "leb128fmt 0.1.0", + "target": "leb128fmt" }, { - "id": "wasm-bindgen-shared 0.2.104", - "target": "wasm_bindgen_shared" + "id": "wasmparser 0.244.0", + "target": "wasmparser" } ], "selects": {} }, "edition": "2021", - "version": "0.2.104" + "version": "0.244.0" }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "wasm-bindgen-shared 0.2.104": { - "name": "wasm-bindgen-shared", - "version": "0.2.104", - "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared", + "wasm-metadata 0.244.0": { + "name": "wasm-metadata", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-metadata", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.104/download", - "sha256": "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" + "url": "https://static.crates.io/crates/wasm-metadata/0.244.0/download", + "sha256": "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" } }, "targets": [ { "Library": { - "crate_name": "wasm_bindgen_shared", + "crate_name": "wasm_metadata", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -16516,11 +17374,59 @@ ] } } + } + ], + "library_target_name": "wasm_metadata", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "wasm-encoder 0.244.0", + "target": "wasm_encoder" + }, + { + "id": "wasmparser 0.244.0", + "target": "wasmparser" + } + ], + "selects": {} }, + "edition": "2021", + "version": "0.244.0" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "wasmparser 0.244.0": { + "name": "wasmparser", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasmparser/0.244.0/download", + "sha256": "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" + } + }, + "targets": [ { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", + "Library": { + "crate_name": "wasmparser", + "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, "include": [ @@ -16530,54 +17436,61 @@ } } ], - "library_target_name": "wasm_bindgen_shared", + "library_target_name": "wasmparser", "common_attrs": { "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "component-model", + "features", + "hash-collections", + "simd", + "std", + "validate" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "unicode-ident 1.0.19", - "target": "unicode_ident" + "id": "bitflags 2.11.0", + "target": "bitflags" }, { - "id": "wasm-bindgen-shared 0.2.104", - "target": "build_script_build" + "id": "hashbrown 0.15.5", + "target": "hashbrown" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "semver 1.0.27", + "target": "semver" } ], "selects": {} }, "edition": "2021", - "version": "0.2.104" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ], - "links": "wasm_bindgen" + "version": "0.244.0" }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "web-sys 0.3.81": { + "web-sys 0.3.91": { "name": "web-sys", - "version": "0.3.81", + "version": "0.3.91", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.81/download", - "sha256": "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" + "url": "https://static.crates.io/crates/web-sys/0.3.91/download", + "sha256": "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" } }, "targets": [ @@ -16599,46 +17512,21 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "AbortController", - "AbortSignal", - "Blob", - "BlobPropertyBag", - "EventTarget", - "File", - "FormData", - "Headers", - "ReadableStream", - "Request", - "RequestCache", - "RequestCredentials", - "RequestInit", - "RequestMode", - "Response", - "ServiceWorkerGlobalScope", - "Window", - "WorkerGlobalScope", - "default", - "std" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "js-sys 0.3.81", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "0.3.81" + "version": "0.3.91" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16681,11 +17569,11 @@ "selects": { "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.81", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.104", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ] @@ -16701,14 +17589,14 @@ ], "license_file": "LICENSE-APACHE" }, - "webpki-roots 1.0.2": { + "webpki-roots 1.0.6": { "name": "webpki-roots", - "version": "1.0.2", + "version": "1.0.6", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/1.0.2/download", - "sha256": "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" + "url": "https://static.crates.io/crates/webpki-roots/1.0.6/download", + "sha256": "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" } }, "targets": [ @@ -16733,7 +17621,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.12.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -16741,7 +17629,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.2" + "version": "1.0.6" }, "license": "CDLA-Permissive-2.0", "license_ids": [ @@ -16749,14 +17637,14 @@ ], "license_file": "LICENSE" }, - "which 8.0.0": { + "which 8.0.2": { "name": "which", - "version": "8.0.0", + "version": "8.0.2", "package_url": "https://github.com/harryfei/which-rs.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/which/8.0.0/download", - "sha256": "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d" + "url": "https://static.crates.io/crates/which/8.0.2/download", + "sha256": "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459" } }, "targets": [ @@ -16790,64 +17678,32 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" + "id": "libc 0.2.183", + "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "wasm32-wasip1": [ - { - "id": "rustix 1.1.2", - "target": "rustix" + "id": "libc 0.2.183", + "target": "libc" } ], - "x86_64-pc-windows-msvc": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, + "x86_64-apple-darwin": [ { - "id": "winsafe 0.0.19", - "target": "winsafe" + "id": "libc 0.2.183", + "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "env_home 0.1.0", - "target": "env_home" - }, - { - "id": "rustix 1.1.2", - "target": "rustix" + "id": "libc 0.2.183", + "target": "libc" } ] } }, "edition": "2021", - "version": "8.0.0" + "version": "8.0.2" }, "license": "MIT", "license_ids": [ @@ -17058,7 +17914,7 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.61.1", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] @@ -17145,14 +18001,14 @@ ], "license_file": null }, - "windows-core 0.62.1": { + "windows-core 0.62.2": { "name": "windows-core", - "version": "0.62.1", + "version": "0.62.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-core/0.62.1/download", - "sha256": "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9" + "url": "https://static.crates.io/crates/windows-core/0.62.2/download", + "sha256": "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" } }, "targets": [ @@ -17177,15 +18033,15 @@ "deps": { "common": [ { - "id": "windows-link 0.2.0", + "id": "windows-link 0.2.1", "target": "windows_link" }, { - "id": "windows-result 0.4.0", + "id": "windows-result 0.4.1", "target": "windows_result" }, { - "id": "windows-strings 0.5.0", + "id": "windows-strings 0.5.1", "target": "windows_strings" } ], @@ -17195,17 +18051,17 @@ "proc_macro_deps": { "common": [ { - "id": "windows-implement 0.60.1", + "id": "windows-implement 0.60.2", "target": "windows_implement" }, { - "id": "windows-interface 0.59.2", + "id": "windows-interface 0.59.3", "target": "windows_interface" } ], "selects": {} }, - "version": "0.62.1" + "version": "0.62.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17214,14 +18070,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-implement 0.60.1": { + "windows-implement 0.60.2": { "name": "windows-implement", - "version": "0.60.1", + "version": "0.60.2", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-implement/0.60.1/download", - "sha256": "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0" + "url": "https://static.crates.io/crates/windows-implement/0.60.2/download", + "sha256": "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" } }, "targets": [ @@ -17246,22 +18102,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.60.1" + "version": "0.60.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17270,14 +18126,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-interface 0.59.2": { + "windows-interface 0.59.3": { "name": "windows-interface", - "version": "0.59.2", + "version": "0.59.3", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-interface/0.59.2/download", - "sha256": "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5" + "url": "https://static.crates.io/crates/windows-interface/0.59.3/download", + "sha256": "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" } }, "targets": [ @@ -17302,22 +18158,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.59.2" + "version": "0.59.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17326,14 +18182,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-link 0.2.0": { + "windows-link 0.2.1": { "name": "windows-link", - "version": "0.2.0", + "version": "0.2.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-link/0.2.0/download", - "sha256": "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" + "url": "https://static.crates.io/crates/windows-link/0.2.1/download", + "sha256": "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" } }, "targets": [ @@ -17356,7 +18212,7 @@ "**" ], "edition": "2021", - "version": "0.2.0" + "version": "0.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17365,14 +18221,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-result 0.4.0": { + "windows-result 0.4.1": { "name": "windows-result", - "version": "0.4.0", + "version": "0.4.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-result/0.4.0/download", - "sha256": "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f" + "url": "https://static.crates.io/crates/windows-result/0.4.1/download", + "sha256": "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" } }, "targets": [ @@ -17397,14 +18253,14 @@ "deps": { "common": [ { - "id": "windows-link 0.2.0", + "id": "windows-link 0.2.1", "target": "windows_link" } ], "selects": {} }, "edition": "2021", - "version": "0.4.0" + "version": "0.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17413,14 +18269,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-strings 0.5.0": { + "windows-strings 0.5.1": { "name": "windows-strings", - "version": "0.5.0", + "version": "0.5.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-strings/0.5.0/download", - "sha256": "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda" + "url": "https://static.crates.io/crates/windows-strings/0.5.1/download", + "sha256": "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" } }, "targets": [ @@ -17445,14 +18301,14 @@ "deps": { "common": [ { - "id": "windows-link 0.2.0", + "id": "windows-link 0.2.1", "target": "windows_link" } ], "selects": {} }, "edition": "2021", - "version": "0.5.0" + "version": "0.5.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17467,14 +18323,218 @@ "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.52.0/download", - "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" + "url": "https://static.crates.io/crates/windows-sys/0.52.0/download", + "sha256": "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_sys", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_sys", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "Win32", + "Win32_Foundation", + "Win32_Storage", + "Win32_Storage_FileSystem", + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "windows-targets 0.52.6", + "target": "windows_targets" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.52.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-sys 0.60.2": { + "name": "windows-sys", + "version": "0.60.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-sys/0.60.2/download", + "sha256": "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_sys", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_sys", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "Win32", + "Win32_Foundation", + "Win32_Storage", + "Win32_Storage_FileSystem", + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "windows-targets 0.53.5", + "target": "windows_targets" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.60.2" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-sys 0.61.2": { + "name": "windows-sys", + "version": "0.61.2", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-sys/0.61.2/download", + "sha256": "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_sys", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_sys", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "Wdk", + "Wdk_Foundation", + "Wdk_Storage", + "Wdk_Storage_FileSystem", + "Wdk_System", + "Wdk_System_IO", + "Win32", + "Win32_Foundation", + "Win32_Globalization", + "Win32_Networking", + "Win32_Networking_WinSock", + "Win32_Security", + "Win32_Storage", + "Win32_Storage_FileSystem", + "Win32_System", + "Win32_System_Com", + "Win32_System_Console", + "Win32_System_IO", + "Win32_System_Pipes", + "Win32_System_SystemInformation", + "Win32_System_SystemServices", + "Win32_System_Threading", + "Win32_System_WindowsProgramming", + "Win32_UI", + "Win32_UI_Shell", + "default" + ], + "selects": { + "aarch64-pc-windows-msvc": [ + "Win32_Security_Authentication", + "Win32_Security_Authentication_Identity", + "Win32_Security_Credentials", + "Win32_Security_Cryptography", + "Win32_System_LibraryLoader", + "Win32_System_Memory" + ] + } + }, + "deps": { + "common": [ + { + "id": "windows-link 0.2.1", + "target": "windows_link" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.61.2" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows-targets 0.52.6": { + "name": "windows-targets", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", + "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", + "crate_name": "windows_targets", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17485,32 +18545,66 @@ } } ], - "library_target_name": "windows_sys", + "library_target_name": "windows_targets", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "default" - ], - "selects": {} - }, "deps": { - "common": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} + "common": [], + "selects": { + "aarch64-pc-windows-gnullvm": [ + { + "id": "windows_aarch64_gnullvm 0.52.6", + "target": "windows_aarch64_gnullvm" + } + ], + "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_x86_64_msvc 0.52.6", + "target": "windows_x86_64_msvc" + } + ], + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_aarch64_msvc 0.52.6", + "target": "windows_aarch64_msvc" + } + ], + "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + { + "id": "windows_i686_gnu 0.52.6", + "target": "windows_i686_gnu" + } + ], + "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_i686_msvc 0.52.6", + "target": "windows_i686_msvc" + } + ], + "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + { + "id": "windows_x86_64_gnu 0.52.6", + "target": "windows_x86_64_gnu" + } + ], + "i686-pc-windows-gnullvm": [ + { + "id": "windows_i686_gnullvm 0.52.6", + "target": "windows_i686_gnullvm" + } + ], + "x86_64-pc-windows-gnullvm": [ + { + "id": "windows_x86_64_gnullvm 0.52.6", + "target": "windows_x86_64_gnullvm" + } + ] + } }, "edition": "2021", - "version": "0.52.0" + "version": "0.52.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17519,20 +18613,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-sys 0.59.0": { - "name": "windows-sys", - "version": "0.59.0", + "windows-targets 0.53.5": { + "name": "windows-targets", + "version": "0.53.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.59.0/download", - "sha256": "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" + "url": "https://static.crates.io/crates/windows-targets/0.53.5/download", + "sha256": "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", + "crate_name": "windows_targets", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17543,47 +18637,72 @@ } } ], - "library_target_name": "windows_sys", + "library_target_name": "windows_targets", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "Wdk", - "Wdk_Foundation", - "Wdk_Storage", - "Wdk_Storage_FileSystem", - "Wdk_System", - "Wdk_System_IO", - "Win32", - "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_IO", - "Win32_System_Pipes", - "Win32_System_SystemServices", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", - "default" - ], - "selects": {} - }, "deps": { - "common": [ - { - "id": "windows-targets 0.52.6", - "target": "windows_targets" - } - ], - "selects": {} + "common": [], + "selects": { + "aarch64-pc-windows-gnullvm": [ + { + "id": "windows_aarch64_gnullvm 0.53.1", + "target": "windows_aarch64_gnullvm" + } + ], + "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_x86_64_msvc 0.53.1", + "target": "windows_x86_64_msvc" + } + ], + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_aarch64_msvc 0.53.1", + "target": "windows_aarch64_msvc" + } + ], + "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + { + "id": "windows_i686_gnu 0.53.1", + "target": "windows_i686_gnu" + } + ], + "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + { + "id": "windows_i686_msvc 0.53.1", + "target": "windows_i686_msvc" + } + ], + "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ + { + "id": "windows_x86_64_gnu 0.53.1", + "target": "windows_x86_64_gnu" + } + ], + "cfg(windows_raw_dylib)": [ + { + "id": "windows-link 0.2.1", + "target": "windows_link" + } + ], + "i686-pc-windows-gnullvm": [ + { + "id": "windows_i686_gnullvm 0.53.1", + "target": "windows_i686_gnullvm" + } + ], + "x86_64-pc-windows-gnullvm": [ + { + "id": "windows_x86_64_gnullvm 0.53.1", + "target": "windows_x86_64_gnullvm" + } + ] + } }, "edition": "2021", - "version": "0.59.0" + "version": "0.53.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17592,20 +18711,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-sys 0.60.2": { - "name": "windows-sys", - "version": "0.60.2", + "windows_aarch64_gnullvm 0.52.6": { + "name": "windows_aarch64_gnullvm", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.60.2/download", - "sha256": "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download", + "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", + "crate_name": "windows_aarch64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17614,36 +18733,47 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "windows_sys", + "library_target_name": "windows_aarch64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Console", - "default" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "windows-targets 0.53.4", - "target": "windows_targets" + "id": "windows_aarch64_gnullvm 0.52.6", + "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.60.2" + "version": "0.52.6" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17652,20 +18782,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-sys 0.61.1": { - "name": "windows-sys", - "version": "0.61.1", + "windows_aarch64_gnullvm 0.53.1": { + "name": "windows_aarch64_gnullvm", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-sys/0.61.1/download", - "sha256": "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f" + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download", + "sha256": "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" } }, "targets": [ { "Library": { - "crate_name": "windows_sys", + "crate_name": "windows_aarch64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17674,41 +18804,47 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "windows_sys", + "library_target_name": "windows_aarch64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" - ], - "crate_features": { - "common": [ - "Win32", - "Win32_Foundation", - "Win32_Globalization", - "Win32_Storage", - "Win32_Storage_FileSystem", - "Win32_System", - "Win32_System_Com", - "Win32_System_Console", - "Win32_System_SystemInformation", - "Win32_UI", - "Win32_UI_Shell", - "default" - ], - "selects": {} - }, + ], "deps": { "common": [ { - "id": "windows-link 0.2.0", - "target": "windows_link" + "id": "windows_aarch64_gnullvm 0.53.1", + "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.61.1" + "version": "0.53.1" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17717,20 +18853,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.52.6": { - "name": "windows-targets", + "windows_aarch64_msvc 0.52.6": { + "name": "windows_aarch64_msvc", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.52.6/download", - "sha256": "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", + "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" } }, "targets": [ { "Library": { - "crate_name": "windows_targets", + "crate_name": "windows_aarch64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17739,69 +18875,48 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "windows_targets", + "library_target_name": "windows_aarch64_msvc", "common_attrs": { "compile_data_glob": [ "**" ], "deps": { - "common": [], - "selects": { - "aarch64-pc-windows-gnullvm": [ - { - "id": "windows_aarch64_gnullvm 0.52.6", - "target": "windows_aarch64_gnullvm" - } - ], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_msvc 0.52.6", - "target": "windows_x86_64_msvc" - } - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_aarch64_msvc 0.52.6", - "target": "windows_aarch64_msvc" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_i686_gnu 0.52.6", - "target": "windows_i686_gnu" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_i686_msvc 0.52.6", - "target": "windows_i686_msvc" - } - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_gnu 0.52.6", - "target": "windows_x86_64_gnu" - } - ], - "i686-pc-windows-gnullvm": [ - { - "id": "windows_i686_gnullvm 0.52.6", - "target": "windows_i686_gnullvm" - } - ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.52.6", - "target": "windows_x86_64_gnullvm" - } - ] - } + "common": [ + { + "id": "windows_aarch64_msvc 0.52.6", + "target": "build_script_build" + } + ], + "selects": {} }, "edition": "2021", "version": "0.52.6" }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", @@ -17809,20 +18924,20 @@ ], "license_file": "license-apache-2.0" }, - "windows-targets 0.53.4": { - "name": "windows-targets", - "version": "0.53.4", + "windows_aarch64_msvc 0.53.1": { + "name": "windows_aarch64_msvc", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-targets/0.53.4/download", - "sha256": "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b" + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download", + "sha256": "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" } }, "targets": [ { "Library": { - "crate_name": "windows_targets", + "crate_name": "windows_aarch64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17831,74 +18946,47 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "windows_targets", + "library_target_name": "windows_aarch64_msvc", "common_attrs": { "compile_data_glob": [ "**" ], "deps": { - "common": [], - "selects": { - "aarch64-pc-windows-gnullvm": [ - { - "id": "windows_aarch64_gnullvm 0.53.0", - "target": "windows_aarch64_gnullvm" - } - ], - "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_msvc 0.53.0", - "target": "windows_x86_64_msvc" - } - ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_aarch64_msvc 0.53.0", - "target": "windows_aarch64_msvc" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_i686_gnu 0.53.0", - "target": "windows_i686_gnu" - } - ], - "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [ - { - "id": "windows_i686_msvc 0.53.0", - "target": "windows_i686_msvc" - } - ], - "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - { - "id": "windows_x86_64_gnu 0.53.0", - "target": "windows_x86_64_gnu" - } - ], - "cfg(windows_raw_dylib)": [ - { - "id": "windows-link 0.2.0", - "target": "windows_link" - } - ], - "i686-pc-windows-gnullvm": [ - { - "id": "windows_i686_gnullvm 0.53.0", - "target": "windows_i686_gnullvm" - } - ], - "x86_64-pc-windows-gnullvm": [ - { - "id": "windows_x86_64_gnullvm 0.53.0", - "target": "windows_x86_64_gnullvm" - } - ] - } + "common": [ + { + "id": "windows_aarch64_msvc 0.53.1", + "target": "build_script_build" + } + ], + "selects": {} }, "edition": "2021", - "version": "0.53.4" + "version": "0.53.1" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -17907,20 +18995,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.52.6": { - "name": "windows_aarch64_gnullvm", + "windows_i686_gnu 0.52.6": { + "name": "windows_i686_gnu", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download", - "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", + "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_gnullvm", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -17943,7 +19031,7 @@ } } ], - "library_target_name": "windows_aarch64_gnullvm", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -17951,7 +19039,7 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.52.6", + "id": "windows_i686_gnu 0.52.6", "target": "build_script_build" } ], @@ -17978,20 +19066,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.53.0": { - "name": "windows_aarch64_gnullvm", - "version": "0.53.0", + "windows_i686_gnu 0.53.1": { + "name": "windows_i686_gnu", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.0/download", - "sha256": "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.53.1/download", + "sha256": "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_gnullvm", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18014,7 +19102,7 @@ } } ], - "library_target_name": "windows_aarch64_gnullvm", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -18022,14 +19110,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.53.0", + "id": "windows_i686_gnu 0.53.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.0" + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -18049,20 +19137,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.52.6": { - "name": "windows_aarch64_msvc", + "windows_i686_gnullvm 0.52.6": { + "name": "windows_i686_gnullvm", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", - "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", + "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_msvc", + "crate_name": "windows_i686_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18085,7 +19173,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -18093,7 +19181,7 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.52.6", + "id": "windows_i686_gnullvm 0.52.6", "target": "build_script_build" } ], @@ -18120,20 +19208,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.53.0": { - "name": "windows_aarch64_msvc", - "version": "0.53.0", + "windows_i686_gnullvm 0.53.1": { + "name": "windows_i686_gnullvm", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.53.0/download", - "sha256": "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download", + "sha256": "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_msvc", + "crate_name": "windows_i686_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18156,7 +19244,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -18164,14 +19252,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.53.0", + "id": "windows_i686_gnullvm 0.53.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.0" + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -18191,20 +19279,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.52.6": { - "name": "windows_i686_gnu", + "windows_i686_msvc 0.52.6": { + "name": "windows_i686_msvc", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", - "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18227,7 +19315,7 @@ } } ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -18235,7 +19323,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.52.6", + "id": "windows_i686_msvc 0.52.6", "target": "build_script_build" } ], @@ -18262,20 +19350,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.53.0": { - "name": "windows_i686_gnu", - "version": "0.53.0", + "windows_i686_msvc 0.53.1": { + "name": "windows_i686_msvc", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.53.0/download", - "sha256": "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.53.1/download", + "sha256": "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18298,7 +19386,7 @@ } } ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -18306,14 +19394,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.53.0", + "id": "windows_i686_msvc 0.53.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.0" + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -18333,20 +19421,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnullvm 0.52.6": { - "name": "windows_i686_gnullvm", + "windows_x86_64_gnu 0.52.6": { + "name": "windows_x86_64_gnu", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", - "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", + "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnullvm", + "crate_name": "windows_x86_64_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18369,7 +19457,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_x86_64_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -18377,7 +19465,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.52.6", + "id": "windows_x86_64_gnu 0.52.6", "target": "build_script_build" } ], @@ -18404,20 +19492,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnullvm 0.53.0": { - "name": "windows_i686_gnullvm", - "version": "0.53.0", + "windows_x86_64_gnu 0.53.1": { + "name": "windows_x86_64_gnu", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.53.0/download", - "sha256": "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download", + "sha256": "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnullvm", + "crate_name": "windows_x86_64_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18440,7 +19528,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_x86_64_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -18448,14 +19536,14 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.53.0", + "id": "windows_x86_64_gnu 0.53.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.0" + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -18475,20 +19563,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.52.6": { - "name": "windows_i686_msvc", + "windows_x86_64_gnullvm 0.52.6": { + "name": "windows_x86_64_gnullvm", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", + "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_x86_64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18511,7 +19599,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_x86_64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -18519,7 +19607,7 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.52.6", + "id": "windows_x86_64_gnullvm 0.52.6", "target": "build_script_build" } ], @@ -18546,20 +19634,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.53.0": { - "name": "windows_i686_msvc", - "version": "0.53.0", + "windows_x86_64_gnullvm 0.53.1": { + "name": "windows_x86_64_gnullvm", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.53.0/download", - "sha256": "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download", + "sha256": "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_x86_64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18582,7 +19670,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_x86_64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -18590,14 +19678,14 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.53.0", + "id": "windows_x86_64_gnullvm 0.53.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.0" + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -18617,20 +19705,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.52.6": { - "name": "windows_x86_64_gnu", + "windows_x86_64_msvc 0.52.6": { + "name": "windows_x86_64_msvc", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", - "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", + "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18653,7 +19741,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -18661,7 +19749,7 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.52.6", + "id": "windows_x86_64_msvc 0.52.6", "target": "build_script_build" } ], @@ -18688,20 +19776,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.53.0": { - "name": "windows_x86_64_gnu", - "version": "0.53.0", + "windows_x86_64_msvc 0.53.1": { + "name": "windows_x86_64_msvc", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.53.0/download", - "sha256": "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download", + "sha256": "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18724,7 +19812,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -18732,14 +19820,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.53.0", + "id": "windows_x86_64_msvc 0.53.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.0" + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -18759,20 +19847,58 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnullvm 0.52.6": { - "name": "windows_x86_64_gnullvm", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", + "winnow 0.7.15": { + "name": "winnow", + "version": "0.7.15", + "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", - "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + "url": "https://static.crates.io/crates/winnow/0.7.15/download", + "sha256": "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "winnow", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "winnow", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.7.15" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE-MIT" + }, + "wit-bindgen 0.51.0": { + "name": "wit-bindgen", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wit-bindgen/0.51.0/download", + "sha256": "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wit_bindgen", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18795,7 +19921,7 @@ } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "wit_bindgen", "common_attrs": { "compile_data_glob": [ "**" @@ -18803,14 +19929,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.52.6", + "id": "wit-bindgen 0.51.0", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2024", + "version": "0.51.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -18823,27 +19949,27 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_gnullvm 0.53.0": { - "name": "windows_x86_64_gnullvm", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen-core 0.51.0": { + "name": "wit-bindgen-core", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.0/download", - "sha256": "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + "url": "https://static.crates.io/crates/wit-bindgen-core/0.51.0/download", + "sha256": "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "wit_bindgen_core", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18852,21 +19978,9 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "wit_bindgen_core", "common_attrs": { "compile_data_glob": [ "**" @@ -18874,47 +19988,44 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.53.0", - "target": "build_script_build" + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "heck 0.5.0", + "target": "heck" + }, + { + "id": "wit-parser 0.244.0", + "target": "wit_parser" } ], "selects": {} }, - "edition": "2021", - "version": "0.53.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2024", + "version": "0.51.0" }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_msvc 0.52.6": { - "name": "windows_x86_64_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen-rust 0.51.0": { + "name": "wit-bindgen-rust", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", - "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + "url": "https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download", + "sha256": "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_msvc", + "crate_name": "wit_bindgen_rust", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -18937,7 +20048,7 @@ } } ], - "library_target_name": "windows_x86_64_msvc", + "library_target_name": "wit_bindgen_rust", "common_attrs": { "compile_data_glob": [ "**" @@ -18945,14 +20056,46 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.52.6", + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "heck 0.5.0", + "target": "heck" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + }, + { + "id": "syn 2.0.117", + "target": "syn" + }, + { + "id": "wasm-metadata 0.244.0", + "target": "wasm_metadata" + }, + { + "id": "wit-bindgen-core 0.51.0", + "target": "wit_bindgen_core" + }, + { + "id": "wit-bindgen-rust 0.51.0", "target": "build_script_build" + }, + { + "id": "wit-component 0.244.0", + "target": "wit_component" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2024", + "version": "0.51.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -18963,29 +20106,38 @@ ], "data_glob": [ "**" - ] + ], + "link_deps": { + "common": [ + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + } + ], + "selects": {} + } }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_msvc 0.53.0": { - "name": "windows_x86_64_msvc", - "version": "0.53.0", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen-rust-macro 0.51.0": { + "name": "wit-bindgen-rust-macro", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.53.0/download", - "sha256": "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + "url": "https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download", + "sha256": "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" } }, "targets": [ { - "Library": { - "crate_name": "windows_x86_64_msvc", + "ProcMacro": { + "crate_name": "wit_bindgen_rust_macro", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -19008,7 +20160,7 @@ } } ], - "library_target_name": "windows_x86_64_msvc", + "library_target_name": "wit_bindgen_rust_macro", "common_attrs": { "compile_data_glob": [ "**" @@ -19016,14 +20168,42 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.53.0", + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + }, + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + }, + { + "id": "wit-bindgen-core 0.51.0", + "target": "wit_bindgen_core" + }, + { + "id": "wit-bindgen-rust 0.51.0", + "target": "wit_bindgen_rust" + }, + { + "id": "wit-bindgen-rust-macro 0.51.0", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.53.0" + "edition": "2024", + "version": "0.51.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -19034,67 +20214,38 @@ ], "data_glob": [ "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "winnow 0.7.13": { - "name": "winnow", - "version": "0.7.13", - "package_url": "https://github.com/winnow-rs/winnow", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winnow/0.7.13/download", - "sha256": "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winnow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winnow", - "common_attrs": { - "compile_data_glob": [ - "**" ], - "edition": "2021", - "version": "0.7.13" + "link_deps": { + "common": [ + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + } + ], + "selects": {} + } }, - "license": "MIT", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "LICENSE-APACHE" }, - "winsafe 0.0.19": { - "name": "winsafe", - "version": "0.0.19", - "package_url": "https://github.com/rodrigocfd/winsafe", + "wit-component 0.244.0": { + "name": "wit-component", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-component", "repository": { "Http": { - "url": "https://static.crates.io/crates/winsafe/0.0.19/download", - "sha256": "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" + "url": "https://static.crates.io/crates/wit-component/0.244.0/download", + "sha256": "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" } }, "targets": [ { "Library": { - "crate_name": "winsafe", + "crate_name": "wit_component", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -19105,40 +20256,89 @@ } } ], - "library_target_name": "winsafe", + "library_target_name": "wit_component", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "kernel" + { + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "bitflags 2.11.0", + "target": "bitflags" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "log 0.4.29", + "target": "log" + }, + { + "id": "serde 1.0.228", + "target": "serde" + }, + { + "id": "serde_json 1.0.149", + "target": "serde_json" + }, + { + "id": "wasm-encoder 0.244.0", + "target": "wasm_encoder" + }, + { + "id": "wasm-metadata 0.244.0", + "target": "wasm_metadata" + }, + { + "id": "wasmparser 0.244.0", + "target": "wasmparser" + }, + { + "id": "wit-parser 0.244.0", + "target": "wit_parser" + } ], "selects": {} }, "edition": "2021", - "version": "0.0.19" + "proc_macro_deps": { + "common": [ + { + "id": "serde_derive 1.0.228", + "target": "serde_derive" + } + ], + "selects": {} + }, + "version": "0.244.0" }, - "license": "MIT", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE.md" + "license_file": null }, - "wit-bindgen 0.46.0": { - "name": "wit-bindgen", - "version": "0.46.0", - "package_url": "https://github.com/bytecodealliance/wit-bindgen", + "wit-parser 0.244.0": { + "name": "wit-parser", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-parser", "repository": { "Http": { - "url": "https://static.crates.io/crates/wit-bindgen/0.46.0/download", - "sha256": "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + "url": "https://static.crates.io/crates/wit-parser/0.244.0/download", + "sha256": "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" } }, "targets": [ { "Library": { - "crate_name": "wit_bindgen", + "crate_name": "wit_parser", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -19147,63 +20347,90 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "wit_bindgen", + "library_target_name": "wit_parser", "common_attrs": { "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "decoding", + "default", + "serde", + "serde_json" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "wit-bindgen 0.46.0", - "target": "build_script_build" + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "id-arena 2.3.0", + "target": "id_arena" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "log 0.4.29", + "target": "log" + }, + { + "id": "semver 1.0.27", + "target": "semver" + }, + { + "id": "serde 1.0.228", + "target": "serde" + }, + { + "id": "serde_json 1.0.149", + "target": "serde_json" + }, + { + "id": "unicode-xid 0.2.6", + "target": "unicode_xid" + }, + { + "id": "wasmparser 0.244.0", + "target": "wasmparser" } ], "selects": {} }, "edition": "2021", - "version": "0.46.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "proc_macro_deps": { + "common": [ + { + "id": "serde_derive 1.0.228", + "target": "serde_derive" + } + ], + "selects": {} + }, + "version": "0.244.0" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "writeable 0.6.1": { + "writeable 0.6.2": { "name": "writeable", - "version": "0.6.1", + "version": "0.6.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/writeable/0.6.1/download", - "sha256": "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" + "url": "https://static.crates.io/crates/writeable/0.6.2/download", + "sha256": "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" } }, "targets": [ @@ -19226,7 +20453,7 @@ "**" ], "edition": "2021", - "version": "0.6.1" + "version": "0.6.2" }, "license": "Unicode-3.0", "license_ids": [ @@ -19276,11 +20503,11 @@ "target": "bcder" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -19292,7 +20519,7 @@ "target": "hex" }, { - "id": "pem 3.0.5", + "id": "pem 3.0.6", "target": "pem" }, { @@ -19368,13 +20595,13 @@ "selects": { "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))": [ { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "rustix" } ], "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" } ] @@ -19390,14 +20617,14 @@ ], "license_file": "LICENSE-APACHE" }, - "xml-rs 0.8.27": { + "xml-rs 0.8.28": { "name": "xml-rs", - "version": "0.8.27", + "version": "0.8.28", "package_url": "https://github.com/kornelski/xml-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/xml-rs/0.8.27/download", - "sha256": "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7" + "url": "https://static.crates.io/crates/xml-rs/0.8.28/download", + "sha256": "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" } }, "targets": [ @@ -19420,7 +20647,7 @@ "**" ], "edition": "2021", - "version": "0.8.27" + "version": "0.8.28" }, "license": "MIT", "license_ids": [ @@ -19458,10 +20685,15 @@ "**" ], "crate_features": { - "common": [ - "static" - ], - "selects": {} + "common": [], + "selects": { + "aarch64-apple-darwin": [ + "static" + ], + "x86_64-apple-darwin": [ + "static" + ] + } }, "deps": { "common": [ @@ -19482,14 +20714,14 @@ ], "license_file": "LICENSE-APACHE" }, - "yoke 0.8.0": { + "yoke 0.8.1": { "name": "yoke", - "version": "0.8.0", + "version": "0.8.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke/0.8.0/download", - "sha256": "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" + "url": "https://static.crates.io/crates/yoke/0.8.1/download", + "sha256": "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" } }, "targets": [ @@ -19513,7 +20745,6 @@ ], "crate_features": { "common": [ - "alloc", "derive", "zerofrom" ], @@ -19522,7 +20753,7 @@ "deps": { "common": [ { - "id": "stable_deref_trait 1.2.0", + "id": "stable_deref_trait 1.2.1", "target": "stable_deref_trait" }, { @@ -19536,13 +20767,13 @@ "proc_macro_deps": { "common": [ { - "id": "yoke-derive 0.8.0", + "id": "yoke-derive 0.8.1", "target": "yoke_derive" } ], "selects": {} }, - "version": "0.8.0" + "version": "0.8.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -19550,14 +20781,14 @@ ], "license_file": "LICENSE" }, - "yoke-derive 0.8.0": { + "yoke-derive 0.8.1": { "name": "yoke-derive", - "version": "0.8.0", + "version": "0.8.1", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/yoke-derive/0.8.0/download", - "sha256": "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" + "url": "https://static.crates.io/crates/yoke-derive/0.8.1/download", + "sha256": "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" } }, "targets": [ @@ -19582,15 +20813,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" }, { @@ -19601,7 +20832,7 @@ "selects": {} }, "edition": "2021", - "version": "0.8.0" + "version": "0.8.1" }, "license": "Unicode-3.0", "license_ids": [ @@ -19609,14 +20840,14 @@ ], "license_file": "LICENSE" }, - "zerocopy 0.8.27": { + "zerocopy 0.8.42": { "name": "zerocopy", - "version": "0.8.27", + "version": "0.8.42", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.8.27/download", - "sha256": "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" + "url": "https://static.crates.io/crates/zerocopy/0.8.42/download", + "sha256": "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3" } }, "targets": [ @@ -19659,7 +20890,7 @@ "deps": { "common": [ { - "id": "zerocopy 0.8.27", + "id": "zerocopy 0.8.42", "target": "build_script_build" } ], @@ -19671,13 +20902,13 @@ "selects": { "cfg(any())": [ { - "id": "zerocopy-derive 0.8.27", + "id": "zerocopy-derive 0.8.42", "target": "zerocopy_derive" } ] } }, - "version": "0.8.27" + "version": "0.8.42" }, "build_script_attrs": { "compile_data_glob": [ @@ -19698,14 +20929,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerocopy-derive 0.8.27": { + "zerocopy-derive 0.8.42": { "name": "zerocopy-derive", - "version": "0.8.27", + "version": "0.8.42", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.8.27/download", - "sha256": "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" + "url": "https://static.crates.io/crates/zerocopy-derive/0.8.42/download", + "sha256": "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f" } }, "targets": [ @@ -19730,22 +20961,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.8.27" + "version": "0.8.42" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -19786,7 +21017,6 @@ ], "crate_features": { "common": [ - "alloc", "derive" ], "selects": {} @@ -19841,15 +21071,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" }, { @@ -19900,21 +21130,36 @@ "crate_features": { "common": [ "alloc", - "default", - "derive", - "zeroize_derive" + "default" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "derive", + "zeroize_derive" + ], + "x86_64-apple-darwin": [ + "derive", + "zeroize_derive" + ] + } }, "edition": "2021", "proc_macro_deps": { - "common": [ - { - "id": "zeroize_derive 1.4.2", - "target": "zeroize_derive" - } - ], - "selects": {} + "common": [], + "selects": { + "aarch64-apple-darwin": [ + { + "id": "zeroize_derive 1.4.3", + "target": "zeroize_derive" + } + ], + "x86_64-apple-darwin": [ + { + "id": "zeroize_derive 1.4.3", + "target": "zeroize_derive" + } + ] + } }, "version": "1.8.2" }, @@ -19925,14 +21170,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zeroize_derive 1.4.2": { + "zeroize_derive 1.4.3": { "name": "zeroize_derive", - "version": "1.4.2", + "version": "1.4.3", "package_url": "https://github.com/RustCrypto/utils/tree/master/zeroize/derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/zeroize_derive/1.4.2/download", - "sha256": "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" + "url": "https://static.crates.io/crates/zeroize_derive/1.4.3/download", + "sha256": "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" } }, "targets": [ @@ -19957,22 +21202,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.4.2" + "version": "1.4.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -19981,14 +21226,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerotrie 0.2.2": { + "zerotrie 0.2.3": { "name": "zerotrie", - "version": "0.2.2", + "version": "0.2.3", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerotrie/0.2.2/download", - "sha256": "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" + "url": "https://static.crates.io/crates/zerotrie/0.2.3/download", + "sha256": "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" } }, "targets": [ @@ -20020,7 +21265,7 @@ "deps": { "common": [ { - "id": "yoke 0.8.0", + "id": "yoke 0.8.1", "target": "yoke" }, { @@ -20040,7 +21285,7 @@ ], "selects": {} }, - "version": "0.2.2" + "version": "0.2.3" }, "license": "Unicode-3.0", "license_ids": [ @@ -20048,14 +21293,14 @@ ], "license_file": "LICENSE" }, - "zerovec 0.11.4": { + "zerovec 0.11.5": { "name": "zerovec", - "version": "0.11.4", + "version": "0.11.5", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerovec/0.11.4/download", - "sha256": "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" + "url": "https://static.crates.io/crates/zerovec/0.11.5/download", + "sha256": "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" } }, "targets": [ @@ -20079,7 +21324,6 @@ ], "crate_features": { "common": [ - "alloc", "derive", "yoke" ], @@ -20088,7 +21332,7 @@ "deps": { "common": [ { - "id": "yoke 0.8.0", + "id": "yoke 0.8.1", "target": "yoke" }, { @@ -20102,13 +21346,13 @@ "proc_macro_deps": { "common": [ { - "id": "zerovec-derive 0.11.1", + "id": "zerovec-derive 0.11.2", "target": "zerovec_derive" } ], "selects": {} }, - "version": "0.11.4" + "version": "0.11.5" }, "license": "Unicode-3.0", "license_ids": [ @@ -20116,14 +21360,14 @@ ], "license_file": "LICENSE" }, - "zerovec-derive 0.11.1": { + "zerovec-derive 0.11.2": { "name": "zerovec-derive", - "version": "0.11.1", + "version": "0.11.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerovec-derive/0.11.1/download", - "sha256": "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" + "url": "https://static.crates.io/crates/zerovec-derive/0.11.2/download", + "sha256": "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" } }, "targets": [ @@ -20148,22 +21392,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.101", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.41", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.106", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.11.1" + "version": "0.11.2" }, "license": "Unicode-3.0", "license_ids": [ @@ -20217,19 +21461,19 @@ "target": "crc32fast" }, { - "id": "flate2 1.1.2", + "id": "flate2 1.1.9", "target": "flate2" }, { - "id": "indexmap 2.11.4", + "id": "indexmap 2.13.0", "target": "indexmap" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "zopfli 0.8.2", + "id": "zopfli 0.8.3", "target": "zopfli" } ], @@ -20251,14 +21495,14 @@ ], "license_file": "LICENSE" }, - "zlib-rs 0.5.2": { + "zlib-rs 0.6.3": { "name": "zlib-rs", - "version": "0.5.2", + "version": "0.6.3", "package_url": "https://github.com/trifectatechfoundation/zlib-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/zlib-rs/0.5.2/download", - "sha256": "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2" + "url": "https://static.crates.io/crates/zlib-rs/0.6.3/download", + "sha256": "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513" } }, "targets": [ @@ -20288,7 +21532,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.2" + "version": "0.6.3" }, "license": "Zlib", "license_ids": [ @@ -20296,14 +21540,84 @@ ], "license_file": "LICENSE" }, - "zopfli 0.8.2": { + "zmij 1.0.21": { + "name": "zmij", + "version": "1.0.21", + "package_url": "https://github.com/dtolnay/zmij", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/zmij/1.0.21/download", + "sha256": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" + } + }, + "targets": [ + { + "Library": { + "crate_name": "zmij", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "zmij", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "zmij 1.0.21", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.21" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE-MIT" + }, + "zopfli 0.8.3": { "name": "zopfli", - "version": "0.8.2", + "version": "0.8.3", "package_url": "https://github.com/zopfli-rs/zopfli", "repository": { "Http": { - "url": "https://static.crates.io/crates/zopfli/0.8.2/download", - "sha256": "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7" + "url": "https://static.crates.io/crates/zopfli/0.8.3/download", + "sha256": "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" } }, "targets": [ @@ -20337,7 +21651,7 @@ "deps": { "common": [ { - "id": "bumpalo 3.19.0", + "id": "bumpalo 3.20.2", "target": "bumpalo" }, { @@ -20345,18 +21659,18 @@ "target": "crc32fast" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "simd-adler32 0.3.7", + "id": "simd-adler32 0.3.8", "target": "simd_adler32" } ], "selects": {} }, "edition": "2021", - "version": "0.8.2" + "version": "0.8.3" }, "license": "Apache-2.0", "license_ids": [ @@ -20473,7 +21787,7 @@ "deps": { "common": [ { - "id": "libc 0.2.176", + "id": "libc 0.2.183", "target": "libc" }, { @@ -20591,7 +21905,7 @@ "deps": { "common": [ { - "id": "cc 1.2.39", + "id": "cc 1.2.56", "target": "cc" }, { @@ -20621,10 +21935,15 @@ ], "aarch64-linux-android": [], "aarch64-pc-windows-gnullvm": [], + "aarch64-pc-windows-msvc": [ + "aarch64-pc-windows-msvc" + ], "aarch64-unknown-linux-gnu": [ "aarch64-unknown-linux-gnu" ], - "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))": [], + "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_os = \"windows\"))": [ + "aarch64-pc-windows-msvc" + ], "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))": [ "aarch64-apple-darwin" ], @@ -20634,23 +21953,22 @@ "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))": [ "x86_64-pc-windows-msvc" ], - "cfg(all(any(target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [], + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [], "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], "cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ "aarch64-apple-darwin", - "wasm32-unknown-unknown", - "wasm32-wasip1" + "x86_64-apple-darwin" + ], + "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [ + "aarch64-pc-windows-msvc" ], - "cfg(all(target_arch = \"aarch64\", target_env = \"msvc\", not(windows_raw_dylib)))": [], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ "aarch64-unknown-linux-gnu" ], @@ -20658,123 +21976,112 @@ "aarch64-apple-darwin" ], "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [], - "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ - "wasm32-unknown-unknown" - ], + "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [], "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p3\"))": [], "cfg(all(target_arch = \"x86\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [], "cfg(all(target_arch = \"x86\", target_env = \"msvc\", not(windows_raw_dylib)))": [], "cfg(all(target_arch = \"x86_64\", target_env = \"gnu\", not(target_abi = \"llvm\"), not(windows_raw_dylib)))": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ - "wasm32-unknown-unknown" + "x86_64-unknown-linux-gnu" ], + "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [], "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))": [], - "cfg(all(tokio_uring, target_os = \"linux\"))": [], "cfg(any())": [], "cfg(any(target_arch = \"aarch64\", target_arch = \"x86\", target_arch = \"x86_64\"))": [ "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], "cfg(any(target_arch = \"aarch64\", target_arch = \"x86_64\", target_arch = \"x86\"))": [ "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))": [ "aarch64-apple-darwin", "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu" ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [], "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [], "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [], "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [], "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ - "aarch64-apple-darwin" + "aarch64-apple-darwin", + "x86_64-apple-darwin" ], "cfg(any(unix, target_os = \"wasi\"))": [ "aarch64-apple-darwin", "aarch64-unknown-linux-gnu", - "wasm32-wasip1", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "cfg(any(windows, target_os = \"cygwin\"))": [ - "x86_64-pc-windows-msvc" + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu" ], "cfg(fuzzing)": [], "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", "aarch64-unknown-linux-gnu", - "wasm32-wasip1", + "x86_64-apple-darwin", "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], - "cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))": [ - "aarch64-apple-darwin", + "cfg(not(any(target_os = \"windows\", target_vendor = \"apple\")))": [ "aarch64-unknown-linux-gnu", - "wasm32-unknown-unknown", - "wasm32-wasip1", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], "cfg(not(target_arch = \"wasm32\"))": [ "aarch64-apple-darwin", + "aarch64-pc-windows-msvc", "aarch64-unknown-linux-gnu", + "x86_64-apple-darwin", "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ], "cfg(not(target_has_atomic = \"ptr\"))": [], - "cfg(target_arch = \"wasm32\")": [ - "wasm32-unknown-unknown", - "wasm32-wasip1" - ], + "cfg(target_arch = \"wasm32\")": [], "cfg(target_feature = \"atomics\")": [], "cfg(target_os = \"android\")": [], "cfg(target_os = \"haiku\")": [], "cfg(target_os = \"hermit\")": [], + "cfg(target_os = \"macos\")": [ + "aarch64-apple-darwin", + "x86_64-apple-darwin" + ], "cfg(target_os = \"netbsd\")": [], "cfg(target_os = \"redox\")": [], "cfg(target_os = \"solaris\")": [], "cfg(target_os = \"vxworks\")": [], - "cfg(target_os = \"wasi\")": [ - "wasm32-wasip1" - ], + "cfg(target_os = \"wasi\")": [], "cfg(target_os = \"windows\")": [ + "aarch64-pc-windows-msvc", "x86_64-pc-windows-msvc" ], "cfg(target_vendor = \"apple\")": [ - "aarch64-apple-darwin" + "aarch64-apple-darwin", + "x86_64-apple-darwin" ], - "cfg(tokio_taskdump)": [], "cfg(unix)": [ "aarch64-apple-darwin", "aarch64-unknown-linux-gnu", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu" ], "cfg(windows)": [ + "aarch64-pc-windows-msvc", "x86_64-pc-windows-msvc" ], "cfg(windows_raw_dylib)": [], "i686-pc-windows-gnu": [], "i686-pc-windows-gnullvm": [], - "wasm32-unknown-unknown": [ - "wasm32-unknown-unknown" - ], - "wasm32-wasip1": [ - "wasm32-wasip1" + "x86_64-apple-darwin": [ + "x86_64-apple-darwin" ], "x86_64-pc-windows-gnu": [], "x86_64-pc-windows-gnullvm": [], @@ -20782,44 +22089,40 @@ "x86_64-pc-windows-msvc" ], "x86_64-unknown-linux-gnu": [ - "x86_64-unknown-linux-gnu", - "x86_64-unknown-nixos-gnu" - ], - "x86_64-unknown-nixos-gnu": [ - "x86_64-unknown-nixos-gnu" + "x86_64-unknown-linux-gnu" ] }, "direct_deps": [ - "anyhow 1.0.100", + "anyhow 1.0.102", "apple-flat-package 0.20.0", - "bzip2 0.6.0", - "clap 4.5.48", + "bzip2 0.6.1", + "clap 4.6.0", "debpkg 0.6.0", "directories 6.0.0", - "env_logger 0.11.8", + "env_logger 0.11.9", "exitcode 1.1.2", - "flate2 1.1.2", + "flate2 1.1.9", "fs2 0.4.3", "fs_extra 1.3.0", "infer 0.19.0", - "log 0.4.28", - "regex 1.11.3", - "reqwest 0.12.23", + "log 0.4.29", + "regex 1.12.3", + "reqwest 0.12.28", "serde 1.0.228", - "serde_json 1.0.145", + "serde_json 1.0.149", "sevenz-rust 0.6.1", "tar 0.4.44", - "tempfile 3.23.0", - "tokio 1.47.1", - "toml 0.9.7", + "tempfile 3.27.0", + "tokio 1.50.0", + "toml 0.9.12+spec-1.1.0", "walkdir 2.5.0", - "which 8.0.0", + "which 8.0.2", "winapi 0.3.9", "xz2 0.1.7", "zip 5.1.1" ], "direct_dev_deps": [ - "assert_cmd 2.0.17", + "assert_cmd 2.2.0", "is_executable 1.0.5", "rstest 0.26.1" ], diff --git a/rust/Cargo.aarch64-pc-windows-msvc.toml b/rust/Cargo.aarch64-pc-windows-msvc.toml deleted file mode 100644 index 1e5d512b2fa74..0000000000000 --- a/rust/Cargo.aarch64-pc-windows-msvc.toml +++ /dev/null @@ -1,6 +0,0 @@ -# cargo --config Cargo.aarch64-pc-windows-msvc.toml build -# -# Workaround ring issues to build on Windows ARM64. -# See https://github.com/briansmith/ring/issues/1167 for details. -[patch.crates-io] -ring = { git = "https://github.com/awakecoding/ring", branch = "0.16.20_alpha" } \ No newline at end of file diff --git a/rust/Cargo.lock b/rust/Cargo.lock index e185e5c9635a1..7ab69c013838c 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2,15 +2,6 @@ # It is not intended for manual editing. version = 4 -[[package]] -name = "addr2line" -version = "0.25.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" -dependencies = [ - "gimli", -] - [[package]] name = "adler2" version = "2.0.1" @@ -19,9 +10,9 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] @@ -37,12 +28,27 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.20" +version = "0.6.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" +dependencies = [ + "anstyle", + "anstyle-parse 0.2.7", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstream" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" dependencies = [ "anstyle", - "anstyle-parse", + "anstyle-parse 1.0.0", "anstyle-query", "anstyle-wincon", "colorchoice", @@ -65,34 +71,40 @@ dependencies = [ "utf8parse", ] +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + [[package]] name = "anstyle-query" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.10" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "anyhow" -version = "1.0.100" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" -dependencies = [ - "backtrace", -] +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "apple-flat-package" @@ -106,7 +118,7 @@ dependencies = [ "scroll", "serde", "serde-xml-rs", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -132,7 +144,7 @@ dependencies = [ "sha1", "sha2", "signature", - "thiserror 2.0.17", + "thiserror 2.0.18", "url", "x509-certificate", "xml-rs", @@ -162,13 +174,12 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "assert_cmd" -version = "2.0.17" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66" +checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9" dependencies = [ "anstyle", "bstr", - "doc-comment", "libc", "predicates", "predicates-core", @@ -188,21 +199,6 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" -[[package]] -name = "backtrace" -version = "0.3.76" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" -dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object", - "rustc-demangle", - "windows-link", -] - [[package]] name = "base64" version = "0.22.1" @@ -211,9 +207,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.8.0" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "bcder" @@ -242,9 +238,9 @@ checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22" [[package]] name = "bitflags" -version = "2.9.4" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" [[package]] name = "block-buffer" @@ -257,9 +253,9 @@ dependencies = [ [[package]] name = "bstr" -version = "1.12.0" +version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" +checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" dependencies = [ "memchr", "regex-automata", @@ -268,9 +264,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.19.0" +version = "3.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" [[package]] name = "byteorder" @@ -280,9 +276,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.10.1" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "bzip2" @@ -296,9 +292,9 @@ dependencies = [ [[package]] name = "bzip2" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bea8dcd42434048e4f7a304411d9273a411f647446c1234a65ce0554923f4cff" +checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" dependencies = [ "libbz2-rs-sys", ] @@ -315,9 +311,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.39" +version = "1.2.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" +checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" dependencies = [ "find-msvc-tools", "jobserver", @@ -338,9 +334,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfg_aliases" @@ -350,9 +346,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" dependencies = [ "iana-time-zone", "js-sys", @@ -364,9 +360,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.48" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" +checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" dependencies = [ "clap_builder", "clap_derive", @@ -374,11 +370,11 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.48" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" +checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" dependencies = [ - "anstream", + "anstream 1.0.0", "anstyle", "clap_lex", "strsim", @@ -386,9 +382,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.47" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" +checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" dependencies = [ "heck", "proc-macro2", @@ -398,9 +394,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.5" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "colorchoice" @@ -414,6 +410,16 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -443,9 +449,9 @@ dependencies = [ [[package]] name = "crc" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" +checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" dependencies = [ "crc-catalog", ] @@ -467,9 +473,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ "generic-array", "typenum", @@ -522,9 +528,9 @@ dependencies = [ [[package]] name = "deranged" -version = "0.5.4" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" dependencies = [ "powerfmt", ] @@ -574,7 +580,7 @@ dependencies = [ "libc", "option-ext", "redox_users", - "windows-sys 0.61.1", + "windows-sys 0.61.2", ] [[package]] @@ -588,35 +594,23 @@ dependencies = [ "syn", ] -[[package]] -name = "doc-comment" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" - [[package]] name = "env_filter" -version = "0.1.3" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" +checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f" dependencies = [ "log", "regex", ] -[[package]] -name = "env_home" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe" - [[package]] name = "env_logger" -version = "0.11.8" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" +checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d" dependencies = [ - "anstream", + "anstream 0.6.21", "anstyle", "env_filter", "jiff", @@ -636,7 +630,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.1", + "windows-sys 0.61.2", ] [[package]] @@ -653,14 +647,13 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "filetime" -version = "0.2.26" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" +checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" dependencies = [ "cfg-if", "libc", "libredox", - "windows-sys 0.60.2", ] [[package]] @@ -676,19 +669,19 @@ dependencies = [ [[package]] name = "find-msvc-tools" -version = "0.1.2" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] name = "flate2" -version = "1.1.2" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" dependencies = [ "crc32fast", - "libz-rs-sys", "miniz_oxide", + "zlib-rs", ] [[package]] @@ -697,6 +690,27 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + [[package]] name = "form_urlencoded" version = "1.2.2" @@ -724,9 +738,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" [[package]] name = "futures-channel" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" dependencies = [ "futures-core", "futures-sink", @@ -734,33 +748,33 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" [[package]] name = "futures-io" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" [[package]] name = "futures-sink" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" [[package]] name = "futures-task" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" [[package]] name = "futures-util" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ "futures-core", "futures-io", @@ -768,7 +782,6 @@ dependencies = [ "futures-task", "memchr", "pin-project-lite", - "pin-utils", "slab", ] @@ -784,36 +797,43 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", "js-sys", "libc", - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", "wasm-bindgen", ] [[package]] name = "getrandom" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", "js-sys", "libc", - "r-efi", - "wasi 0.14.7+wasi-0.2.4", + "r-efi 5.3.0", + "wasip2", "wasm-bindgen", ] [[package]] -name = "gimli" -version = "0.32.3" +name = "getrandom" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] [[package]] name = "glob" @@ -829,9 +849,18 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.16.0" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" [[package]] name = "heck" @@ -847,12 +876,11 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "http" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ "bytes", - "fnv", "itoa", ] @@ -887,9 +915,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "hyper" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ "atomic-waker", "bytes", @@ -923,16 +951,31 @@ dependencies = [ "webpki-roots", ] +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + [[package]] name = "hyper-util" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ "base64", "bytes", "futures-channel", - "futures-core", "futures-util", "http", "http-body", @@ -949,9 +992,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.64" +version = "0.1.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -973,9 +1016,9 @@ dependencies = [ [[package]] name = "icu_collections" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ "displaydoc", "potential_utf", @@ -986,9 +1029,9 @@ dependencies = [ [[package]] name = "icu_locale_core" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ "displaydoc", "litemap", @@ -999,11 +1042,10 @@ dependencies = [ [[package]] name = "icu_normalizer" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "displaydoc", "icu_collections", "icu_normalizer_data", "icu_properties", @@ -1014,42 +1056,38 @@ dependencies = [ [[package]] name = "icu_normalizer_data" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" [[package]] name = "icu_properties" -version = "2.0.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "displaydoc", "icu_collections", "icu_locale_core", "icu_properties_data", "icu_provider", - "potential_utf", "zerotrie", "zerovec", ] [[package]] name = "icu_properties_data" -version = "2.0.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" [[package]] name = "icu_provider" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" dependencies = [ "displaydoc", "icu_locale_core", - "stable_deref_trait", - "tinystr", "writeable", "yoke", "zerofrom", @@ -1057,6 +1095,12 @@ dependencies = [ "zerovec", ] +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + [[package]] name = "idna" version = "1.1.0" @@ -1090,12 +1134,14 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.11.4" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", - "hashbrown 0.16.0", + "hashbrown 0.16.1", + "serde", + "serde_core", ] [[package]] @@ -1116,28 +1162,17 @@ dependencies = [ "cfb", ] -[[package]] -name = "io-uring" -version = "0.7.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" -dependencies = [ - "bitflags", - "cfg-if", - "libc", -] - [[package]] name = "ipnet" -version = "2.11.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" [[package]] name = "iri-string" -version = "0.7.8" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" dependencies = [ "memchr", "serde", @@ -1154,34 +1189,34 @@ dependencies = [ [[package]] name = "is_terminal_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "itoa" -version = "1.0.15" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" [[package]] name = "jiff" -version = "0.2.15" +version = "0.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" +checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" dependencies = [ "jiff-static", "log", "portable-atomic", "portable-atomic-util", - "serde", + "serde_core", ] [[package]] name = "jiff-static" -version = "0.2.15" +version = "0.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" +checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" dependencies = [ "proc-macro2", "quote", @@ -1194,20 +1229,26 @@ version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.3.4", "libc", ] [[package]] name = "js-sys" -version = "0.3.81" +version = "0.3.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" +checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" dependencies = [ "once_cell", "wasm-bindgen", ] +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + [[package]] name = "libbz2-rs-sys" version = "0.2.2" @@ -1216,47 +1257,39 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7" [[package]] name = "libc" -version = "0.2.176" +version = "0.2.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" +checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" [[package]] name = "libredox" -version = "0.1.10" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" +checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" dependencies = [ "bitflags", "libc", + "plain", "redox_syscall", ] -[[package]] -name = "libz-rs-sys" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd" -dependencies = [ - "zlib-rs", -] - [[package]] name = "linux-raw-sys" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "litemap" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" [[package]] name = "log" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "lru-slab" @@ -1296,9 +1329,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.6" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "miniz_oxide" @@ -1307,17 +1340,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", + "simd-adler32", ] [[package]] name = "mio" -version = "1.0.4" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "native-tls" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" dependencies = [ "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.59.0", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", ] [[package]] @@ -1332,9 +1383,9 @@ dependencies = [ [[package]] name = "num-conv" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" [[package]] name = "num-traits" @@ -1346,25 +1397,60 @@ dependencies = [ ] [[package]] -name = "object" -version = "0.37.3" +name = "once_cell" +version = "1.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "openssl" +version = "0.10.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" dependencies = [ - "memchr", + "bitflags", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", ] [[package]] -name = "once_cell" -version = "1.21.3" +name = "openssl-macros" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] [[package]] -name = "once_cell_polyfill" -version = "1.70.1" +name = "openssl-probe" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.112" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] [[package]] name = "option-ext" @@ -1374,12 +1460,12 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "pem" -version = "3.0.5" +version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ "base64", - "serde", + "serde_core", ] [[package]] @@ -1390,9 +1476,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" [[package]] name = "pin-utils" @@ -1406,26 +1492,32 @@ version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +[[package]] +name = "plain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" + [[package]] name = "portable-atomic" -version = "1.11.1" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" [[package]] name = "portable-atomic-util" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" dependencies = [ "portable-atomic", ] [[package]] name = "potential_utf" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" dependencies = [ "zerovec", ] @@ -1447,9 +1539,9 @@ dependencies = [ [[package]] name = "predicates" -version = "3.1.3" +version = "3.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" +checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" dependencies = [ "anstyle", "difflib", @@ -1458,25 +1550,35 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" [[package]] name = "predicates-tree" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" +checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" dependencies = [ "predicates-core", "termtree", ] +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + [[package]] name = "proc-macro2" -version = "1.0.101" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" dependencies = [ "unicode-ident", ] @@ -1495,7 +1597,7 @@ dependencies = [ "rustc-hash", "rustls", "socket2", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tracing", "web-time", @@ -1503,12 +1605,12 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.13" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" +checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" dependencies = [ "bytes", - "getrandom 0.3.3", + "getrandom 0.3.4", "lru-slab", "rand 0.9.2", "ring", @@ -1516,7 +1618,7 @@ dependencies = [ "rustls", "rustls-pki-types", "slab", - "thiserror 2.0.17", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -1538,9 +1640,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.41" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" dependencies = [ "proc-macro2", ] @@ -1551,6 +1653,12 @@ version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + [[package]] name = "rand" version = "0.8.5" @@ -1569,7 +1677,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -1589,7 +1697,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -1598,23 +1706,23 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", ] [[package]] name = "rand_core" -version = "0.9.3" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.3.4", ] [[package]] name = "redox_syscall" -version = "0.5.17" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" +checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" dependencies = [ "bitflags", ] @@ -1625,16 +1733,16 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "libredox", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "regex" -version = "1.11.3" +version = "1.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" dependencies = [ "aho-corasick", "memchr", @@ -1644,9 +1752,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.11" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" dependencies = [ "aho-corasick", "memchr", @@ -1655,9 +1763,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.6" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" [[package]] name = "relative-path" @@ -1667,9 +1775,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "reqwest" -version = "0.12.23" +version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ "base64", "bytes", @@ -1681,9 +1789,11 @@ dependencies = [ "http-body-util", "hyper", "hyper-rustls", + "hyper-tls", "hyper-util", "js-sys", "log", + "native-tls", "percent-encoding", "pin-project-lite", "quinn", @@ -1694,6 +1804,7 @@ dependencies = [ "serde_urlencoded", "sync_wrapper", "tokio", + "tokio-native-tls", "tokio-rustls", "tower", "tower-http", @@ -1713,7 +1824,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.16", + "getrandom 0.2.17", "libc", "untrusted", "windows-sys 0.52.0", @@ -1745,12 +1856,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "rustc-demangle" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" - [[package]] name = "rustc-hash" version = "2.1.1" @@ -1768,22 +1873,22 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.2" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ "bitflags", "errno", "libc", "linux-raw-sys", - "windows-sys 0.61.1", + "windows-sys 0.61.2", ] [[package]] name = "rustls" -version = "0.23.32" +version = "0.23.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" +checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" dependencies = [ "once_cell", "ring", @@ -1795,9 +1900,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.12.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ "web-time", "zeroize", @@ -1805,9 +1910,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.6" +version = "0.103.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb" +checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" dependencies = [ "ring", "rustls-pki-types", @@ -1822,9 +1927,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] name = "ryu" -version = "1.0.20" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "same-file" @@ -1835,6 +1940,15 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + [[package]] name = "scroll" version = "0.12.0" @@ -1855,6 +1969,29 @@ dependencies = [ "syn", ] +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "selenium-manager" version = "0.4.42-nightly" @@ -1862,7 +1999,7 @@ dependencies = [ "anyhow", "apple-flat-package", "assert_cmd", - "bzip2 0.6.0", + "bzip2 0.6.1", "clap", "debpkg", "directories", @@ -1941,22 +2078,22 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] name = "serde_spanned" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5417783452c2be558477e104686f7de5dae53dba813c28435e0e70f82d9b04ee" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" dependencies = [ "serde_core", ] @@ -2029,9 +2166,9 @@ dependencies = [ [[package]] name = "simd-adler32" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" [[package]] name = "simple-file-manifest" @@ -2041,9 +2178,9 @@ checksum = "5dd19be0257552dd56d1bb6946f89f193c6e5b9f13cc9327c4bc84a357507c74" [[package]] name = "slab" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "smallvec" @@ -2053,12 +2190,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "socket2" -version = "0.6.0" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -2073,9 +2210,9 @@ dependencies = [ [[package]] name = "stable_deref_trait" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "strsim" @@ -2091,9 +2228,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" -version = "2.0.106" +version = "2.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" dependencies = [ "proc-macro2", "quote", @@ -2133,15 +2270,15 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.23.0" +version = "3.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.3", + "getrandom 0.4.2", "once_cell", "rustix", - "windows-sys 0.61.1", + "windows-sys 0.61.2", ] [[package]] @@ -2161,11 +2298,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.18", ] [[package]] @@ -2181,9 +2318,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", @@ -2192,29 +2329,29 @@ dependencies = [ [[package]] name = "time" -version = "0.3.44" +version = "0.3.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" dependencies = [ "deranged", "num-conv", "powerfmt", - "serde", + "serde_core", "time-core", "time-macros", ] [[package]] name = "time-core" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" [[package]] name = "time-macros" -version = "0.2.24" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" dependencies = [ "num-conv", "time-core", @@ -2222,9 +2359,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" dependencies = [ "displaydoc", "zerovec", @@ -2247,33 +2384,40 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.47.1" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ - "backtrace", "bytes", - "io-uring", "libc", "mio", "pin-project-lite", - "slab", "socket2", "tokio-macros", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" dependencies = [ "proc-macro2", "quote", "syn", ] +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + [[package]] name = "tokio-rustls" version = "0.26.4" @@ -2286,11 +2430,11 @@ dependencies = [ [[package]] name = "toml" -version = "0.9.7" +version = "0.9.12+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00e5e5d9bf2475ac9d4f0d9edab68cc573dc2fd644b0dba36b0c30a92dd9eaa0" +checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.13.0", "serde_core", "serde_spanned", "toml_datetime", @@ -2301,33 +2445,33 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.7.2" +version = "0.7.5+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" dependencies = [ "serde_core", ] [[package]] name = "toml_parser" -version = "1.0.3" +version = "1.0.9+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" +checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" dependencies = [ "winnow", ] [[package]] name = "toml_writer" -version = "1.0.3" +version = "1.0.6+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109" +checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" [[package]] name = "tower" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" dependencies = [ "futures-core", "futures-util", @@ -2340,9 +2484,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ "bitflags", "bytes", @@ -2370,9 +2514,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "pin-project-lite", "tracing-core", @@ -2380,9 +2524,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ "once_cell", ] @@ -2395,15 +2539,21 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "typenum" -version = "1.18.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "unicode-ident" -version = "1.0.19" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "untrusted" @@ -2413,9 +2563,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.7" +version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ "form_urlencoded", "idna", @@ -2437,14 +2587,20 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.18.1" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" +checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" dependencies = [ "js-sys", "wasm-bindgen", ] +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + [[package]] name = "version_check" version = "0.9.5" @@ -2486,28 +2642,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] -name = "wasi" -version = "0.14.7+wasi-0.2.4" +name = "wasip2" +version = "1.0.2+wasi-0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" dependencies = [ - "wasip2", + "wit-bindgen", ] [[package]] -name = "wasip2" -version = "1.0.1+wasi-0.2.4" +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" dependencies = [ "wit-bindgen", ] [[package]] name = "wasm-bindgen" -version = "0.2.104" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" +checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" dependencies = [ "cfg-if", "once_cell", @@ -2516,27 +2672,14 @@ dependencies = [ "wasm-bindgen-shared", ] -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - [[package]] name = "wasm-bindgen-futures" -version = "0.4.54" +version = "0.4.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" +checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" dependencies = [ "cfg-if", + "futures-util", "js-sys", "once_cell", "wasm-bindgen", @@ -2545,9 +2688,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.104" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" +checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -2555,31 +2698,65 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.104" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" +checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" dependencies = [ + "bumpalo", "proc-macro2", "quote", "syn", - "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.104" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" +checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" dependencies = [ "unicode-ident", ] +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap 2.13.0", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "semver", +] + [[package]] name = "web-sys" -version = "0.3.81" +version = "0.3.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" +checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" dependencies = [ "js-sys", "wasm-bindgen", @@ -2597,22 +2774,20 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "1.0.2" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" +checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" dependencies = [ "rustls-pki-types", ] [[package]] name = "which" -version = "8.0.0" +version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d" +checksum = "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459" dependencies = [ - "env_home", - "rustix", - "winsafe", + "libc", ] [[package]] @@ -2637,7 +2812,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.1", + "windows-sys 0.61.2", ] [[package]] @@ -2648,9 +2823,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows-core" -version = "0.62.1" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ "windows-implement", "windows-interface", @@ -2661,9 +2836,9 @@ dependencies = [ [[package]] name = "windows-implement" -version = "0.60.1" +version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", @@ -2672,9 +2847,9 @@ dependencies = [ [[package]] name = "windows-interface" -version = "0.59.2" +version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", @@ -2683,24 +2858,24 @@ dependencies = [ [[package]] name = "windows-link" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-result" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ "windows-link", ] [[package]] name = "windows-strings" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ "windows-link", ] @@ -2714,29 +2889,20 @@ dependencies = [ "windows-targets 0.52.6", ] -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets 0.52.6", -] - [[package]] name = "windows-sys" version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.4", + "windows-targets 0.53.5", ] [[package]] name = "windows-sys" -version = "0.61.1" +version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ "windows-link", ] @@ -2759,19 +2925,19 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.53.4" +version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ "windows-link", - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", - "windows_i686_gnullvm 0.53.0", - "windows_i686_msvc 0.53.0", - "windows_x86_64_gnu 0.53.0", - "windows_x86_64_gnullvm 0.53.0", - "windows_x86_64_msvc 0.53.0", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] @@ -2782,9 +2948,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" [[package]] name = "windows_aarch64_msvc" @@ -2794,9 +2960,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_aarch64_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" [[package]] name = "windows_i686_gnu" @@ -2806,9 +2972,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" [[package]] name = "windows_i686_gnu" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" [[package]] name = "windows_i686_gnullvm" @@ -2818,9 +2984,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" [[package]] name = "windows_i686_msvc" @@ -2830,9 +2996,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_i686_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" [[package]] name = "windows_x86_64_gnu" @@ -2842,9 +3008,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnu" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" [[package]] name = "windows_x86_64_gnullvm" @@ -2854,9 +3020,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" [[package]] name = "windows_x86_64_msvc" @@ -2866,33 +3032,109 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "windows_x86_64_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" -version = "0.7.13" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" [[package]] -name = "winsafe" -version = "0.0.19" +name = "wit-bindgen" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] [[package]] -name = "wit-bindgen" -version = "0.46.0" +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck", + "indexmap 2.13.0", + "prettyplease", + "syn", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags", + "indexmap 2.13.0", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap 2.13.0", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] [[package]] name = "writeable" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" [[package]] name = "x509-certificate" @@ -2925,9 +3167,9 @@ dependencies = [ [[package]] name = "xml-rs" -version = "0.8.27" +version = "0.8.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" [[package]] name = "xz2" @@ -2940,11 +3182,10 @@ dependencies = [ [[package]] name = "yoke" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" dependencies = [ - "serde", "stable_deref_trait", "yoke-derive", "zerofrom", @@ -2952,9 +3193,9 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ "proc-macro2", "quote", @@ -2964,18 +3205,18 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.8.27" +version = "0.8.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" +checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.27" +version = "0.8.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" +checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f" dependencies = [ "proc-macro2", "quote", @@ -3014,9 +3255,9 @@ dependencies = [ [[package]] name = "zeroize_derive" -version = "1.4.2" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ "proc-macro2", "quote", @@ -3025,9 +3266,9 @@ dependencies = [ [[package]] name = "zerotrie" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" dependencies = [ "displaydoc", "yoke", @@ -3036,9 +3277,9 @@ dependencies = [ [[package]] name = "zerovec" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ "yoke", "zerofrom", @@ -3047,9 +3288,9 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ "proc-macro2", "quote", @@ -3065,22 +3306,28 @@ dependencies = [ "arbitrary", "crc32fast", "flate2", - "indexmap 2.11.4", + "indexmap 2.13.0", "memchr", "zopfli", ] [[package]] name = "zlib-rs" -version = "0.5.2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513" + +[[package]] +name = "zmij" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" [[package]] name = "zopfli" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7" +checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" dependencies = [ "bumpalo", "crc32fast", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index fedd351ccc6f0..eb7056c4cd5ab 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -18,7 +18,7 @@ env_logger = "0.11.8" regex = "1.11.3" tokio = { version = "1.47.1", default-features = false, features = ["macros", "net", "rt-multi-thread"] } tempfile = "3.23.0" -reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.12.23", default-features = false } zip = { version = "5.1.1", default-features = false, features = ["deflate"] } directories = "6.0.0" serde = { version = "1.0.228", features = ["derive"] } @@ -34,7 +34,6 @@ xz2 = "0.1.7" walkdir = "2.5.0" debpkg = "0.6.0" anyhow = { version = "1.0.100", default-features = false, features = ["backtrace", "std"] } -apple-flat-package = "0.20.0" which = "8.0.0" fs2 = "0.4.3" fs_extra = "1.3.0" @@ -42,6 +41,15 @@ fs_extra = "1.3.0" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.9", features = ["winver", "winnt", "sysinfoapi"] } +[target.'cfg(all(windows, target_arch = "aarch64"))'.dependencies] +reqwest = { version = "0.12.23", default-features = false, features = ["native-tls"] } + +[target.'cfg(not(all(windows, target_arch = "aarch64")))'.dependencies] +reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls"] } + +[target.'cfg(target_os = "macos")'.dependencies] +apple-flat-package = "0.20.0" + [features] avoid_stats = [] diff --git a/rust/src/files.rs b/rust/src/files.rs index 8a1c1f106a03a..7b745322e961d 100644 --- a/rust/src/files.rs +++ b/rust/src/files.rs @@ -23,6 +23,7 @@ use crate::{ }; use anyhow::Error; use anyhow::anyhow; +#[cfg(target_os = "macos")] use apple_flat_package::PkgReader; use bzip2::read::BzDecoder; use directories::BaseDirs; @@ -148,7 +149,10 @@ pub fn uncompress( log, )? } else if extension.eq_ignore_ascii_case(PKG) { - uncompress_pkg(compressed_file, target, log)? + #[cfg(target_os = "macos")] + uncompress_pkg(compressed_file, target, log)?; + #[cfg(not(target_os = "macos"))] + return Err(anyhow!("PKG extraction is only supported on macOS")); } else if extension.eq_ignore_ascii_case(DMG) { uncompress_dmg(compressed_file, target, log, os, volume.unwrap_or_default())? } else if extension.eq_ignore_ascii_case(EXE) { @@ -208,6 +212,7 @@ pub fn move_folder_content(source: &str, target: &Path, log: &Logger) -> Result< Ok(()) } +#[cfg(target_os = "macos")] pub fn uncompress_pkg(compressed_file: &str, target: &Path, log: &Logger) -> Result<(), Error> { let target_path = Path::new(target); let mut reader = PkgReader::new(File::open(compressed_file)?)?; diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 6aaaec572ff20..9327efff94de0 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -1719,10 +1719,19 @@ pub fn clear_cache(log: &Logger, path: &str) { } pub fn create_http_client(timeout: u64, proxy: &str) -> Result { - let mut client_builder = Client::builder() - .danger_accept_invalid_certs(true) - .use_rustls_tls() - .timeout(Duration::from_secs(timeout)); + let mut client_builder = Client::builder().danger_accept_invalid_certs(true); + #[cfg(all(target_os = "windows", target_arch = "aarch64"))] + { + // There are known issues with the Ring dependency on Windows arm64 that cause Bazel + // tests to fail. We force the use of native TLS on this platform. + // https://github.com/briansmith/ring/issues/2215 + client_builder = client_builder.use_native_tls(); + } + #[cfg(not(all(target_os = "windows", target_arch = "aarch64")))] + { + client_builder = client_builder.use_rustls_tls(); + } + let mut client_builder = client_builder.timeout(Duration::from_secs(timeout)); if !proxy.is_empty() { client_builder = client_builder.proxy(Proxy::all(proxy)?); } From b02ef7b80b2100a3dd58c1a816981f47e068be94 Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Fri, 13 Mar 2026 10:38:09 +0100 Subject: [PATCH 6/6] Fix Firefox download --- rust/src/firefox.rs | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/rust/src/firefox.rs b/rust/src/firefox.rs index ae76214754047..f0ce2f868ad40 100644 --- a/rust/src/firefox.rs +++ b/rust/src/firefox.rs @@ -381,19 +381,13 @@ impl SeleniumManager for FirefoxManager { } fn get_platform_label(&self) -> &str { - let driver_version = self.get_driver_version(); let os = self.get_os(); let arch = self.get_arch(); - let minor_driver_version = self - .get_minor_version(driver_version) - .unwrap_or_default() - .parse::() - .unwrap_or_default(); if WINDOWS.is(os) { - if X32.is(arch) { - "win32" - } else if ARM64.is(arch) && minor_driver_version > 31 { + if ARM64.is(arch) { "win-arm64" + } else if X32.is(arch) { + "win32" } else { "win64" } @@ -401,7 +395,7 @@ impl SeleniumManager for FirefoxManager { if ARM64.is(arch) { "mac-arm64" } else { "mac64" } } else if X32.is(arch) { "linux32" - } else if ARM64.is(arch) && minor_driver_version > 31 { + } else if ARM64.is(arch) { "linux-arm64" } else { "linux64" @@ -781,4 +775,29 @@ mod unit_tests { assert_eq!(d.get(3).unwrap().to_string(), driver_url); }); } + + #[test] + fn test_platform_label() { + let mut firefox_manager = FirefoxManager::new().unwrap(); + + let data = vec![ + vec!["windows", "x86", "win32"], + vec!["windows", "x86_64", "win64"], + vec!["windows", "aarch64", "win-arm64"], + vec!["macos", "x86_64", "mac64"], + vec!["macos", "aarch64", "mac-arm64"], + vec!["linux", "x86", "linux32"], + vec!["linux", "x86_64", "linux64"], + vec!["linux", "aarch64", "linux-arm64"], + ]; + + data.iter().for_each(|d| { + firefox_manager.set_os(d.first().unwrap().to_string()); + firefox_manager.set_arch(d.get(1).unwrap().to_string()); + assert_eq!( + d.get(2).unwrap().to_string(), + firefox_manager.get_platform_label() + ); + }); + } }