Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rust] Enhance logic to uncompress DEB files and set toolchain version #13741

Merged
merged 4 commits into from Mar 27, 2024

Conversation

bonigarcia
Copy link
Member

@bonigarcia bonigarcia commented Mar 26, 2024

User description

Description

This PR improves the logic to extract Deb files (e.g., Edge), which was causing problems in Fedora. Also, this PR specifies a fixed version of the Rust compiler in the WORKSPACE file.

Motivation and Context

Currently, a warning is displayed in Fedora.

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist

  • I have read the contributing document.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

Type

bug_fix, enhancement


Description

  • Enhanced the logic for uncompressing DEB files in rust/src/files.rs to better handle empty target directories, improving compatibility with Fedora.
  • Set a fixed Rust compiler version (1.77.0) and specified Rust edition as "2021" in the WORKSPACE file to ensure consistent toolchain usage.

Changes walkthrough

Relevant files
Enhancement
files.rs
Enhance DEB File Uncompression Logic                                         

rust/src/files.rs

  • Modified the logic to check if the target directory is empty after
    attempting to uncompress DEB files.
  • Removed unnecessary output check for emptiness after running shell
    command.
  • Added a print statement to indicate when the target directory is
    empty.
  • +4/-2     
    Configuration changes
    WORKSPACE
    Set Fixed Rust Toolchain Version                                                 

    WORKSPACE

  • Specified Rust edition as "2021".
  • Set Rust compiler version to "1.77.0" explicitly.
  • +6/-1     

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    Copy link

    PR Description updated to latest commit (257ca09)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are focused on two specific areas: enhancing the logic for uncompressing DEB files and specifying the Rust compiler version. The modifications are straightforward and localized, making the review process relatively easy.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Error Handling: The new logic in rust/src/files.rs assumes the parent of the target path always exists and can be unwrapped safely. If for any reason the parent does not exist, this could lead to a panic at runtime.

    Print Statement: The use of println!("IS EMPTY"); for indicating an empty target directory might not be suitable for production code. Consider logging this information at an appropriate log level instead or handling the empty case more robustly.

    🔒 Security concerns

    No


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review which includes several types of feedbacks, such as possible PR issues, security threats and relevant test in the PR. More feedbacks can be added by configuring the tool.

    The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.

    • When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:
    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    
    [pr_reviewer]
    some_config1=...
    some_config2=...
    

    See the review usage page for a comprehensive guide on using this tool.

    Copy link

    codiumai-pr-agent-pro bot commented Mar 26, 2024

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Best practice
    Replace unwrap() with safe error handling for target_path.parent().

    Instead of using unwrap() which could potentially cause a panic if target_path.parent() is
    None, it's safer to handle this case explicitly. Consider using if let or match to safely
    access the parent directory and handle the None case gracefully, perhaps by logging an
    error or returning an Err from the function.

    rust/src/files.rs [278-279]

    -if target_path.parent().unwrap().read_dir()?.next().is_none() {
    -    println!("IS EMPTY");
    +if let Some(parent) = target_path.parent() {
    +    if parent.read_dir()?.next().is_none() {
    +        println!("IS EMPTY");
    +    }
    +} else {
    +    // Handle error or return Err
     }
     
    Add more versions to the toolchain versions array for better compatibility.

    When specifying toolchain versions, it's a good practice to include more than one version
    to ensure compatibility across different environments and to facilitate easier upgrades.
    Consider adding more versions to the versions array, including both newer and older
    versions than the currently specified 1.77.0.

    WORKSPACE [244-246]

     versions = [
         "1.77.0",
    +    "1.76.0",
    +    "1.78.0",
     ],
     
    Verify Rust edition compatibility with all specified toolchain versions.

    Specifying the Rust edition is a good practice for ensuring that the codebase uses a
    consistent set of features and syntax. However, it's also important to ensure that the
    specified edition is compatible with all the toolchain versions listed. Verify that all
    versions specified in the versions array support the Rust 2021 edition.

    WORKSPACE [243]

    -edition = "2021",
    +edition = "2021",  # Ensure compatibility with all specified versions
     
    Use a logging framework instead of println! for error or status messages.

    The use of println! for logging purposes, especially for error or status messages, is not
    recommended in production code. Consider using a logging framework like log or env_logger
    for more control over logging levels and better integration with various logging systems.

    rust/src/files.rs [279]

    -println!("IS EMPTY");
    +warn!("The target directory {:?} is empty after uncompression.", target_path.parent().unwrap());
     
    Enhancement
    Improve the descriptiveness of the printed message when a directory is empty.

    The message "IS EMPTY" printed to the console may not be informative enough for users or
    developers to understand the context or the significance of the directory being empty.
    Consider adding more descriptive text to the message, including what directory is empty
    and why this information is relevant.

    rust/src/files.rs [279]

    -println!("IS EMPTY");
    +println!("The target directory {:?} is empty after uncompression.", target_path.parent().unwrap());
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.

    • When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:
    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    
    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    

    See the improve usage page for a comprehensive guide on using this tool.

    Copy link

    codiumai-pr-agent-pro bot commented Mar 26, 2024

    CI Failure Feedback

    (Checks updated until commit ee1db14)

    Action: Rust / Tests (windows) / Tests (windows)

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed due to a linking error with C:/Program Files/Microsoft Visual
    Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/HostX64/x64/link.exe. Specifically, the linker
    was unable to open the input file 'windows.0.48.0.lib', resulting in a fatal error LNK1181. This
    indicates a missing library or incorrect library path configuration for the windows.0.48.0.lib file,
    which is essential for the build process.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    552:  Build Script Warning: cl : Command line warning D9002 : ignoring unknown option '-fvisibility=hidden'
    553:  Build Script Warning: cl : Command line warning D9002 : ignoring unknown option '-fvisibility=hidden'
    554:  Build Script Warning: cl : Command line warning D9002 : ignoring unknown option '-fvisibility=hidden'
    555:  �[32m[383 / 603]�[0m Compiling Rust rlib colorchoice v1.0.0 (1 files); 0s disk-cache ... (3 actions, 0 running)
    556:  �[32m[583 / 603]�[0m 16 / 34 tests;�[0m Compiling Rust rlib selenium_manager (17 files); Downloading external/crates__hyper-0.14.25/libhyper-3424127245.rlib, 5.5 MiB / 6.8 MiB; 0s disk-cache ... (4 actions, 2 running)
    557:  �[32m[583 / 603]�[0m 16 / 34 tests;�[0m Testing //rust:selenium_manager-fmt; 1s local, disk-cache ... (4 actions running)
    558:  �[32m[583 / 603]�[0m 16 / 34 tests;�[0m Testing //rust:selenium_manager-fmt; 2s local, disk-cache ... (4 actions running)
    559:  �[32m[585 / 603]�[0m 18 / 34 tests;�[0m Compiling Rust bin unit (17 files); 3s local, disk-cache ... (2 actions running)
    560:  �[31m�[1mERROR: �[0mD:/a/selenium/selenium/rust/BUILD.bazel:98:10: Compiling Rust bin unit (17 files) failed: (Exit 1): process_wrapper.exe failed: error executing Rustc command (from target //rust:unit) 
    ...
    
    572:  SET CARGO_PKG_VERSION_MINOR=0
    573:  SET CARGO_PKG_VERSION_PATCH=0
    574:  SET CARGO_PKG_VERSION_PRE=
    575:  SET JRUBY_OPTS=--dev
    576:  SET LIB=C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.39.33519\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.39.33519\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22621.0\\um\x64
    577:  SET PATH=C:\Program Files\Git\bin;C:\Program Files\Git\usr\bin;C:\Windows;C:\Windows\System32;C:\Windows\System32\WindowsPowerShell\v1.0
    578:  SET TEMP=C:\Users\RUNNER~1\AppData\Local\Temp
    579:  SET TMP=C:\Users\RUNNER~1\AppData\Local\Temp
    580:  bazel-out\x64_windows-opt-exec-ST-13d3ddad9198\bin\external\rules_rust\util\process_wrapper\process_wrapper.exe --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__anyhow-1.0.81/anyhow_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__backtrace-0.3.67/backtrace_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__libc-0.2.153/libc_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-sys-0.1.11-1.0.8/bzip2-sys_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__num-traits-0.2.16/num-traits_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__serde-1.0.197/serde_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__windows_x86_64_msvc-0.48.0/windows_x86_64_msvc_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__futures-core-0.3.27/futures-core_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__futures-channel-0.3.27/futures-channel_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__futures-task-0.3.27/futures-task_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__futures-util-0.3.27/futures-util_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__slab-0.4.8/slab_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__indexmap-1.9.2/indexmap_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__httparse-1.8.0/httparse_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__winapi-0.3.9/winapi_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.16.20/ring_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-0.21.6/rustls_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.17.8/ring_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__thiserror-1.0.58/thiserror_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__generic-array-0.14.6/generic-array_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__typenum-1.16.0/typenum_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__crc32fast-1.3.2/crc32fast_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__lzma-sys-0.1.20/lzma-sys_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-safe-5.0.2-zstd.1.5.2/zstd-safe_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-sys-2.0.7-zstd.1.5.4/zstd-sys_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__windows_x86_64_msvc-0.52.0/windows_x86_64_msvc_bs.linksearchpaths --arg-file bazel-out/x64_windows-fastbuild/bin/external/crates__serde_json-1.0.114/serde_json_bs.linksearchpaths --subst *** -- bazel-out/x64_windows-fastbuild/bin/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools/rust_toolchain/bin/rustc.exe rust/src/lib.rs --crate-name=selenium_manager --crate-type=bin --error-format=human --out-dir=bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445 --codegen=opt-level=0 --codegen=debuginfo=0 --remap-path-prefix=${pwd}= --emit=link=bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445/unit.exe --emit=dep-info --color=always --target=x86_64-pc-windows-msvc -L bazel-out/x64_windows-fastbuild/bin/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools/rust_toolchain/lib/rustlib/x86_64-pc-windows-msvc/lib --test --edition=2021 --codegen=linker=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/HostX64/x64/link.exe --codegen=link-arg=/nologo --codegen=link-arg=/SUBSYSTEM:CONSOLE --codegen=link-arg=/MACHINE:X64 --codegen=link-arg=/DEFAULTLIB:msvcrt.lib --codegen=link-arg=/DEBUG:FASTLINK --codegen=link-arg=/INCREMENTAL:NO --extern=anyhow=bazel-out/x64_windows-fastbuild/bin/external/crates__anyhow-1.0.81/libanyhow-256304961.rlib --extern=apple_flat_package=bazel-out/x64_windows-fastbuild/bin/external/crates__apple-flat-package-0.18.0/libapple_flat_package-2325944642.rlib --extern=bzip2=bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-0.4.4/libbzip2-1692867386.rlib --extern=clap=bazel-out/x64_windows-fastbuild/bin/external/crates__clap-4.5.4/libclap-2146013709.rlib --extern=debpkg=bazel-out/x64_windows-fastbuild/bin/external/crates__debpkg-0.6.0/libdebpkg-314367982.rlib --extern=directories=bazel-out/x64_windows-fastbuild/bin/external/crates__directories-5.0.1/libdirectories-1465551182.rlib --extern=env_logger=bazel-out/x64_windows-fastbuild/bin/external/crates__env_logger-0.10.2/libenv_logger-329013215.rlib --extern=exitcode=bazel-out/x64_windows-fastbuild/bin/external/crates__exitcode-1.1.2/libexitcode-2349273582.rlib --extern=flate2=bazel-out/x64_windows-fastbuild/bin/external/crates__flate2-1.0.28/libflate2-2412638419.rlib --extern=infer=bazel-out/x64_windows-fastbuild/bin/external/crates__infer-0.15.0/libinfer-1294803625.rlib --extern=is_executable=bazel-out/x64_windows-fastbuild/bin/external/crates__is_executable-1.0.1/libis_executable-825616614.rlib --extern=log=bazel-out/x64_windows-fastbuild/bin/external/crates__log-0.4.21/liblog-3790420161.rlib --extern=regex=bazel-out/x64_windows-fastbuild/bin/external/crates__regex-1.10.3/libregex-1676369694.rlib --extern=reqwest=bazel-out/x64_windows-fastbuild/bin/external/crates__reqwest-0.11.26/libreqwest-1452864588.rlib --extern=serde=bazel-out/x64_windows-fastbuild/bin/external/crates__serde-1.0.197/libserde-469623992.rlib --extern=serde_json=bazel-out/x64_windows-fastbuild/bin/external/crates__serde_json-1.0.114/libserde_json-852354965.rlib --extern=sevenz_rust=bazel-out/x64_windows-fastbuild/bin/external/crates__sevenz-rust-0.5.4/libsevenz_rust-2745310589.rlib --extern=tar=bazel-out/x64_windows-fastbuild/bin/external/crates__tar-0.4.40/libtar-1156171232.rlib --extern=tempfile=bazel-out/x64_windows-fastbuild/bin/external/crates__tempfile-3.10.1/libtempfile-1105428595.rlib --extern=tokio=bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-1.36.0/libtokio-2109673873.rlib --extern=toml=bazel-out/x64_windows-fastbuild/bin/external/crates__toml-0.8.11/libtoml-1390900195.rlib --extern=walkdir=bazel-out/x64_windows-fastbuild/bin/external/crates__walkdir-2.5.0/libwalkdir-2408561013.rlib --extern=zip=bazel-out/x64_windows-fastbuild/bin/external/crates__zip-0.6.6/libzip-1742151944.rlib -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__gimli-0.27.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__addr2line-0.19.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__cfg-if-1.0.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__libc-0.2.153 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__adler-1.0.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__miniz_oxide-0.6.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__memchr-2.6.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__object-0.30.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rustc-demangle-0.1.23 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__backtrace-0.3.67 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__anyhow-1.0.81 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__base64-0.21.7 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__bytes-1.6.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__smallvec-1.13.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__bcder-0.7.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-sys-0.1.11-1.0.8 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-0.4.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__num-traits-0.2.16 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__serde_derive-1.0.197 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__serde-1.0.197 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__windows_x86_64_msvc-0.48.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__windows-targets-0.48.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__chrono-0.4.31 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__hex-0.4.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__pem-3.0.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__futures-core-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__futures-sink-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__futures-channel-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__futures-io-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__futures-task-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__pin-project-lite-0.2.12 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__pin-utils-0.1.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__slab-0.4.8 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__futures-macro-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__futures-util-0.3.27 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__fnv-1.0.7 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__itoa-1.0.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__http-0.2.9 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__percent-encoding-2.3.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__form_urlencoded-1.2.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__ryu-1.0.13 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__serde_urlencoded-0.7.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__sync_wrapper-0.1.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tower-service-0.3.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__unicode-bidi-0.3.13 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tinyvec_macros-0.1.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tinyvec-1.6.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__unicode-normalization-0.1.22 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__idna-0.5.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__url-2.5.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__encoding_rs-0.8.32 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__hashbrown-0.12.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__indexmap-1.9.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__windows-sys-0.48.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__mio-0.8.9 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__num_cpus-1.15.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__socket2-0.5.5 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__tokio-macros-2.2.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-1.36.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__once_cell-1.17.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tracing-core-0.1.30 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tracing-0.1.37 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-util-0.7.7 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__h2-0.3.17 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__http-body-0.4.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__httparse-1.8.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__httpdate-1.0.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__winapi-0.3.9 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__socket2-0.4.9 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__log-0.4.21 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__try-lock-0.2.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__want-0.3.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__hyper-0.14.25 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__untrusted-0.7.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__spin-0.5.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.16.20 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-webpki-0.101.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__sct-0.7.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-0.21.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-rustls-0.24.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__hyper-rustls-0.24.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__ipnet-2.7.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__mime-0.3.17 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-pemfile-1.0.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__webpki-roots-0.25.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__winreg-0.50.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__reqwest-0.11.26 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__getrandom-0.2.12 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__untrusted-0.9.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__spin-0.9.8 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.17.8 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__signature-2.2.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__const-oid-0.9.6 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__zeroize_derive-1.4.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__zeroize-1.7.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__der-0.7.8 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__spki-0.7.3 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__thiserror-impl-1.0.58 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__thiserror-1.0.58 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__x509-certificate-0.23.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__cryptographic-message-syntax-0.26.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__typenum-1.16.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__generic-array-0.14.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__block-buffer-0.10.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__crypto-common-0.1.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__subtle-2.4.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__digest-0.10.7 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__crc32fast-1.3.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__miniz_oxide-0.7.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__flate2-1.0.28 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__md-5-0.10.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__ppv-lite86-0.2.17 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rand_core-0.6.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rand_chacha-0.3.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__rand-0.8.5 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__scroll_derive-0.12.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__scroll-0.12.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__xml-rs-0.8.19 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__serde-xml-rs-0.6.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__cpufeatures-0.2.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__sha1-0.10.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__sha2-0.10.8 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__lzma-sys-0.1.20 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__xz2-0.1.7 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__apple-xar-0.18.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__is_executable-1.0.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__simple-file-manifest-0.11.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__cpio-archive-0.9.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__apple-flat-package-0.18.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-1.0.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__utf8parse-0.2.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-parse-0.2.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-query-1.0.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__colorchoice-1.0.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-wincon-3.0.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__anstream-0.6.11 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__clap_lex-0.7.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__strsim-0.11.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__clap_builder-4.5.2 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__clap_derive-4.5.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__clap-4.5.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__ar-0.9.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__arrayvec-0.7.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__byteorder-1.5.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__uuid-1.3.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__cfb-0.7.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__infer-0.8.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__filetime-0.2.22 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tar-0.4.40 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-sys-2.0.7-zstd.1.5.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-safe-5.0.2-zstd.1.5.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-0.11.2-zstd.1.5.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__debpkg-0.6.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__option-ext-0.2.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__dirs-sys-0.4.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__directories-5.0.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__humantime-2.1.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__windows_x86_64_msvc-0.52.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__windows-targets-0.52.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__windows-sys-0.52.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__is-terminal-0.4.10 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__aho-corasick-1.0.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__regex-syntax-0.8.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__regex-automata-0.4.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__regex-1.10.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__winapi-util-0.1.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__termcolor-1.4.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__env_logger-0.10.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__exitcode-1.1.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__infer-0.15.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__serde_json-1.0.114 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__bit-vec-0.6.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__bit-set-0.5.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__crc-catalog-2.2.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__crc-3.0.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__filetime_creation-0.1.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__lzma-rust-0.1.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__powerfmt-0.2.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__deranged-0.3.11 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__time-core-0.1.2 -Ldependency=bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__time-macros-0.2.16 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__time-0.3.31 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__nt-time-0.6.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__sevenz-rust-0.5.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__fastrand-2.0.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__tempfile-3.10.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__serde_spanned-0.6.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__toml_datetime-0.6.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__equivalent-1.0.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__hashbrown-0.14.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__indexmap-2.0.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__winnow-0.6.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__toml_edit-0.22.7 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__toml-0.8.11 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__same-file-1.0.6 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__walkdir-2.5.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__inout-0.1.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__cipher-0.4.4 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__aes-0.8.3 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__constant_time_eq-0.1.5 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__hmac-0.12.1 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__base64ct-1.6.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__password-hash-0.4.2 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__pbkdf2-0.11.0 -Ldependency=bazel-out/x64_windows-fastbuild/bin/external/crates__zip-0.6.6 --sysroot=bazel-out/x64_windows-fastbuild/bin/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools/rust_toolchain
    581:  # Configuration: d27e3c43b6f5f897405818019f75d09bf594fdb92ada2f257f636d23e495b2ec
    582:  # Execution platform: @@local_config_platform//:host
    583:  �[0m�[1m�[38;5;9merror�[0m�[0m�[1m�[38;5;15m: linking with `C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/HostX64/x64/link.exe` failed: exit code: 1181�[0m
    584:  �[0m  �[0m�[0m�[1m�[38;5;14m|�[0m
    585:  �[0m  �[0m�[0m�[1m�[38;5;14m= �[0m�[0m�[1m�[38;5;15mnote�[0m�[0m: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/HostX64/x64/link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcKzyy0I\\symbols.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.d99d58c19a56e498-cgu.0.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.d99d58c19a56e498-cgu.1.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.d99d58c19a56e498-cgu.2.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.d99d58c19a56e498-cgu.3.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.d99d58c19a56e498-cgu.4.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.f6p2kkgsfwx7go5.rcgu.o" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools/rust_toolchain/lib/rustlib/x86_64-pc-windows-msvc/lib" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__gimli-0.27.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__addr2line-0.19.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__cfg-if-1.0.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__libc-0.2.153" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__adler-1.0.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__miniz_oxide-0.6.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__memchr-2.6.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__object-0.30.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rustc-demangle-0.1.23" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__backtrace-0.3.67" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__anyhow-1.0.81" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__base64-0.21.7" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__bytes-1.6.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__smallvec-1.13.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__bcder-0.7.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-sys-0.1.11-1.0.8" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-0.4.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__num-traits-0.2.16" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__serde_derive-1.0.197" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__serde-1.0.197" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__windows_x86_64_msvc-0.48.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__windows-targets-0.48.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__chrono-0.4.31" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__hex-0.4.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__pem-3.0.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__futures-core-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__futures-sink-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__futures-channel-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__futures-io-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__futures-task-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__pin-project-lite-0.2.12" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__pin-utils-0.1.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__slab-0.4.8" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__futures-macro-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__futures-util-0.3.27" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__fnv-1.0.7" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__itoa-1.0.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__http-0.2.9" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__percent-encoding-2.3.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__form_urlencoded-1.2.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__ryu-1.0.13" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__serde_urlencoded-0.7.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__sync_wrapper-0.1.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tower-service-0.3.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__unicode-bidi-0.3.13" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tinyvec_macros-0.1.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tinyvec-1.6.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__unicode-normalization-0.1.22" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__idna-0.5.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__url-2.5.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__encoding_rs-0.8.32" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__hashbrown-0.12.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__indexmap-1.9.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__windows-sys-0.48.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__mio-0.8.9" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__num_cpus-1.15.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__socket2-0.5.5" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__tokio-macros-2.2.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-1.36.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__once_cell-1.17.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tracing-core-0.1.30" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tracing-0.1.37" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-util-0.7.7" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__h2-0.3.17" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__http-body-0.4.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__httparse-1.8.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__httpdate-1.0.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__winapi-0.3.9" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__socket2-0.4.9" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__log-0.4.21" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__try-lock-0.2.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__want-0.3.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__hyper-0.14.25" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__untrusted-0.7.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__spin-0.5.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.16.20" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-webpki-0.101.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__sct-0.7.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-0.21.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tokio-rustls-0.24.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__hyper-rustls-0.24.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__ipnet-2.7.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__mime-0.3.17" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rustls-pemfile-1.0.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__webpki-roots-0.25.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__winreg-0.50.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__reqwest-0.11.26" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__getrandom-0.2.12" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__untrusted-0.9.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__spin-0.9.8" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.17.8" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__signature-2.2.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__const-oid-0.9.6" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__zeroize_derive-1.4.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__zeroize-1.7.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__der-0.7.8" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__spki-0.7.3" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__thiserror-impl-1.0.58" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__thiserror-1.0.58" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__x509-certificate-0.23.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__cryptographic-message-syntax-0.26.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__typenum-1.16.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__generic-array-0.14.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__block-buffer-0.10.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__crypto-common-0.1.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__subtle-2.4.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__digest-0.10.7" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__crc32fast-1.3.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__miniz_oxide-0.7.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__flate2-1.0.28" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__md-5-0.10.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__ppv-lite86-0.2.17" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rand_core-0.6.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rand_chacha-0.3.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__rand-0.8.5" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__scroll_derive-0.12.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__scroll-0.12.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__xml-rs-0.8.19" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__serde-xml-rs-0.6.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__cpufeatures-0.2.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__sha1-0.10.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__sha2-0.10.8" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__lzma-sys-0.1.20" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__xz2-0.1.7" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__apple-xar-0.18.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__is_executable-1.0.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__simple-file-manifest-0.11.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__cpio-archive-0.9.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__apple-flat-package-0.18.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-1.0.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__utf8parse-0.2.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-parse-0.2.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-query-1.0.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__colorchoice-1.0.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__anstyle-wincon-3.0.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__anstream-0.6.11" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__clap_lex-0.7.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__strsim-0.11.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__clap_builder-4.5.2" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__clap_derive-4.5.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__clap-4.5.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__ar-0.9.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__arrayvec-0.7.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__byteorder-1.5.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__uuid-1.3.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__cfb-0.7.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__infer-0.8.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__filetime-0.2.22" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tar-0.4.40" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-sys-2.0.7-zstd.1.5.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-safe-5.0.2-zstd.1.5.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-0.11.2-zstd.1.5.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__debpkg-0.6.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__option-ext-0.2.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__dirs-sys-0.4.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__directories-5.0.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__humantime-2.1.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__windows_x86_64_msvc-0.52.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__windows-targets-0.52.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__windows-sys-0.52.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__is-terminal-0.4.10" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__aho-corasick-1.0.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__regex-syntax-0.8.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__regex-automata-0.4.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__regex-1.10.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__winapi-util-0.1.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__termcolor-1.4.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__env_logger-0.10.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__exitcode-1.1.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__infer-0.15.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__serde_json-1.0.114" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__bit-vec-0.6.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__bit-set-0.5.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__crc-catalog-2.2.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__crc-3.0.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__filetime_creation-0.1.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__lzma-rust-0.1.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__powerfmt-0.2.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__deranged-0.3.11" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__time-core-0.1.2" "/LIBPATH:bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__time-macros-0.2.16" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__time-0.3.31" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__nt-time-0.6.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__sevenz-rust-0.5.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__fastrand-2.0.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__tempfile-3.10.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__serde_spanned-0.6.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__toml_datetime-0.6.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__equivalent-1.0.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__hashbrown-0.14.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__indexmap-2.0.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__winnow-0.6.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__toml_edit-0.22.7" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__toml-0.8.11" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__same-file-1.0.6" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__walkdir-2.5.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__inout-0.1.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__cipher-0.4.4" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__aes-0.8.3" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__constant_time_eq-0.1.5" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__hmac-0.12.1" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__base64ct-1.6.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__password-hash-0.4.2" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__pbkdf2-0.11.0" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/crates__zip-0.6.6" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-fastbuild/bin/external/crates__bzip2-sys-0.1.11-1.0.8/bzip2-sys_bs.out_dir\\lib" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__windows_x86_64_msvc-0.48.0/windows_x86_64_msvc_bs_.exe.runfiles/crates__windows_x86_64_msvc-0.48.0/lib" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.16.20/ring_bs.out_dir" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-fastbuild/bin/external/crates__ring-0.17.8/ring_bs.out_dir" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-fastbuild/bin/external/crates__lzma-sys-0.1.20/lzma-sys_bs.out_dir" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-fastbuild/bin/external/crates__zstd-sys-2.0.7-zstd.1.5.4/zstd-sys_bs.out_dir" "/LIBPATH:D:\\_bazel\\execroot\\selenium\\bazel-out/x64_windows-opt-exec-ST-13d3ddad9198/bin/external/crates__windows_x86_64_msvc-0.52.0/windows_x86_64_msvc_bs_.exe.runfiles/crates__windows_x86_64_msvc-0.52.0/lib" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools/rust_toolchain\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__debpkg-0.6.0\\libdebpkg-314367982.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__infer-0.8.1\\libinfer-2815699893.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__ar-0.9.0\\libar-1785551906.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__arrayvec-0.7.4\\libarrayvec-2463335820.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__sevenz-rust-0.5.4\\libsevenz_rust-2745310589.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__crc-3.0.1\\libcrc-1858310373.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__crc-catalog-2.2.0\\libcrc_catalog-754587915.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__lzma-rust-0.1.5\\liblzma_rust-1440196664.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__nt-time-0.6.5\\libnt_time-1505512691.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__bit-set-0.5.3\\libbit_set-938201161.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__bit-vec-0.6.3\\libbit_vec-715607049.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__filetime_creation-0.1.6\\libfiletime_creation-2454648028.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__infer-0.15.0\\libinfer-1294803625.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__cfb-0.7.3\\libcfb-1123389766.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__uuid-1.3.0\\libuuid-3733429918.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libtest-d6c960cd180af43a.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libgetopts-9439fedbb2e674b3.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libunicode_width-4c184f0f525d6699.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_std_workspace_std-39853613268ac973.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__env_logger-0.10.2\\libenv_logger-329013215.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__termcolor-1.4.1\\libtermcolor-1780719454.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__is-terminal-0.4.10\\libis_terminal-1434528372.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__humantime-2.1.0\\libhumantime-2561830495.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__serde_json-1.0.114\\libserde_json-852354965.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__zip-0.6.6\\libzip-1742151944.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__pbkdf2-0.11.0\\libpbkdf2-1888945278.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__password-hash-0.4.2\\libpassword_hash-157363577.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__base64ct-1.6.0\\libbase64ct-485698345.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__time-0.3.31\\libtime-39304842.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__time-core-0.1.2\\libtime_core-66667944.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__deranged-0.3.11\\libderanged-2167878307.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__powerfmt-0.2.0\\libpowerfmt-1979606663.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__zstd-0.11.2-zstd.1.5.2\\libzstd-925772512.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__zstd-safe-5.0.2-zstd.1.5.2\\libzstd_safe-2850328062.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__zstd-sys-2.0.7-zstd.1.5.4\\libzstd_sys-212047028.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__byteorder-1.5.0\\libbyteorder-689428173.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__aes-0.8.3\\libaes-2668237846.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__cipher-0.4.4\\libcipher-317726858.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__inout-0.1.3\\libinout-590675088.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__hmac-0.12.1\\libhmac-2718391314.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__constant_time_eq-0.1.5\\libconstant_time_eq-467656362.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tar-0.4.40\\libtar-1156171232.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__filetime-0.2.22\\libfiletime-621518748.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__regex-1.10.3\\libregex-1676369694.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__regex-automata-0.4.5\\libregex_automata-1346266895.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__aho-corasick-1.0.2\\libaho_corasick-505405875.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__regex-syntax-0.8.2\\libregex_syntax-280532966.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__directories-5.0.1\\libdirectories-1465551182.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__dirs-sys-0.4.1\\libdirs_sys-745574045.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__option-ext-0.2.0\\liboption_ext-1884377958.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__apple-flat-package-0.18.0\\libapple_flat_package-2325944642.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__apple-xar-0.18.0\\libapple_xar-1060475265.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__sha2-0.10.8\\libsha2-729274177.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__sha1-0.10.6\\libsha1-355296962.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__cpufeatures-0.2.5\\libcpufeatures-2163054956.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__md-5-0.10.6\\libmd5-2966203973.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__serde-xml-rs-0.6.0\\libserde_xml_rs-1562084826.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__xz2-0.1.7\\libxz2-2049197129.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__lzma-sys-0.1.20\\liblzma_sys-1267747905.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__bzip2-0.4.4\\libbzip2-1692867386.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__bzip2-sys-0.1.11-1.0.8\\libbzip2_sys-1258468977.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__libc-0.2.153\\liblibc-590303195.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__xml-rs-0.8.19\\libxml-50365630.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__digest-0.10.7\\libdigest-1438462659.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__subtle-2.4.1\\libsubtle-832449750.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__block-buffer-0.10.4\\libblock_buffer-3149625879.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__crypto-common-0.1.6\\libcrypto_common-1128671824.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__generic-array-0.14.6\\libgeneric_array-272717684.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__typenum-1.16.0\\libtypenum-2430719897.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__rand-0.8.5\\librand-1750600294.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__rand_chacha-0.3.1\\librand_chacha-138140385.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__ppv-lite86-0.2.17\\libppv_lite86-1900517912.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__rand_core-0.6.4\\librand_core-512594336.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__flate2-1.0.28\\libflate2-2412638419.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__miniz_oxide-0.7.1\\libminiz_oxide-2627340596.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__adler-1.0.2\\libadler-1634427069.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__crc32fast-1.3.2\\libcrc32fast-496696330.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__cryptographic-message-syntax-0.26.0\\libcryptographic_message_syntax-835054758.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__x509-certificate-0.23.1\\libx509_certificate-507564919.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__hex-0.4.3\\libhex-426293662.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__pem-3.0.3\\libpem-270012513.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__signature-2.2.0\\libsignature-351649215.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__spki-0.7.3\\libspki-1582990486.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__der-0.7.8\\libder-3199602968.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__zeroize-1.7.0\\libzeroize-2194597619.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__const-oid-0.9.6\\libconst_oid-518025045.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__ring-0.17.8\\libring-17750351.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__getrandom-0.2.12\\libgetrandom-2725829172.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__spin-0.9.8\\libspin-527056257.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__untrusted-0.9.0\\libuntrusted-2826778715.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__bcder-0.7.4\\libbcder-3337403497.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__smallvec-1.13.2\\libsmallvec-651351298.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__scroll-0.12.0\\libscroll-974453534.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__cpio-archive-0.9.0\\libcpio_archive-3472004327.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__thiserror-1.0.58\\libthiserror-2452697541.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__simple-file-manifest-0.11.0\\libsimple_file_manifest-1213070988.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__chrono-0.4.31\\libchrono-2471744570.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__num-traits-0.2.16\\libnum_traits-2012231253.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tempfile-3.10.1\\libtempfile-1105428595.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__fastrand-2.0.1\\libfastrand-531689118.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__windows-sys-0.52.0\\libwindows_sys-26563220.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__windows-targets-0.52.0\\libwindows_targets-855434625.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__toml-0.8.11\\libtoml-1390900195.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__toml_edit-0.22.7\\libtoml_edit-2673177942.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__serde_spanned-0.6.5\\libserde_spanned-3660080236.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__indexmap-2.0.0\\libindexmap-71037207.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__equivalent-1.0.0\\libequivalent-1727480825.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__hashbrown-0.14.0\\libhashbrown-2555860579.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__winnow-0.6.5\\libwinnow-3292933717.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__toml_datetime-0.6.5\\libtoml_datetime-936857127.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__walkdir-2.5.0\\libwalkdir-2408561013.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__same-file-1.0.6\\libsame_file-4010607164.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__winapi-util-0.1.5\\libwinapi_util-2773497866.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__reqwest-0.11.26\\libreqwest-1452864588.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__rustls-pemfile-1.0.2\\librustls_pemfile-39543483.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__hyper-rustls-0.24.0\\libhyper_rustls-1333298671.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__webpki-roots-0.25.2\\libwebpki_roots-2949921083.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__base64-0.21.7\\libbase64-1875434658.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__winreg-0.50.0\\libwinreg-1580011153.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__ipnet-2.7.1\\libipnet-259471773.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tokio-rustls-0.24.1\\libtokio_rustls-477347185.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__serde_urlencoded-0.7.1\\libserde_urlencoded-760434760.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__ryu-1.0.13\\libryu-819936503.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__mime-0.3.17\\libmime-810257765.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__encoding_rs-0.8.32\\libencoding_rs-1049059192.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__serde-1.0.197\\libserde-469623992.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__rustls-0.21.6\\librustls-2781954292.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__sct-0.7.0\\libsct-178886795.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__rustls-webpki-0.101.4\\libwebpki-370429313.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__ring-0.16.20\\libring-544652107.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__spin-0.5.2\\libspin-1857422699.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__untrusted-0.7.1\\libuntrusted-182615788.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__hyper-0.14.25\\libhyper-3424127245.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__want-0.3.0\\libwant-1699177905.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__try-lock-0.2.4\\libtry_lock-2277515470.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__socket2-0.4.9\\libsocket2-2824174758.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__httparse-1.8.0\\libhttparse-2693899720.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__h2-0.3.17\\libh2-2413264035.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__indexmap-1.9.2\\libindexmap-270791299.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__hashbrown-0.12.3\\libhashbrown-2819672573.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tokio-util-0.7.7\\libtokio_util-884241474.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tower-service-0.3.2\\libtower_service-187826298.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tracing-0.1.37\\libtracing-3082087171.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__cfg-if-1.0.0\\libcfg_if-204885615.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tracing-core-0.1.30\\libtracing_core-1887316067.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__once_cell-1.17.1\\libonce_cell-1051415483.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tokio-1.36.0\\libtokio-2109673873.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__num_cpus-1.15.0\\libnum_cpus-168096803.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__socket2-0.5.5\\libsocket2-188481798.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__mio-0.8.9\\libmio-776055898.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__windows-sys-0.48.0\\libwindows_sys-635539188.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__windows-targets-0.48.1\\libwindows_targets-104408959.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__sync_wrapper-0.1.2\\libsync_wrapper-535313488.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__http-body-0.4.5\\libhttp_body-779925568.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__log-0.4.21\\liblog-3790420161.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__futures-util-0.3.27\\libfutures_util-1095181232.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__memchr-2.6.4\\libmemchr-2545533483.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__futures-io-0.3.27\\libfutures_io-1553810308.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__slab-0.4.8\\libslab-3720149869.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__futures-channel-0.3.27\\libfutures_channel-1152871377.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__pin-project-lite-0.2.12\\libpin_project_lite-1758259065.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__futures-sink-0.3.27\\libfutures_sink-143114883.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__futures-task-0.3.27\\libfutures_task-516127655.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__pin-utils-0.1.0\\libpin_utils-2060261262.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__futures-core-0.3.27\\libfutures_core-697494617.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__url-2.5.0\\liburl-2133199670.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__idna-0.5.0\\libidna-375571149.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__unicode-normalization-0.1.22\\libunicode_normalization-1799060522.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tinyvec-1.6.0\\libtinyvec-2724148987.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__tinyvec_macros-0.1.1\\libtinyvec_macros-954731887.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__unicode-bidi-0.3.13\\libunicode_bidi-520151213.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__form_urlencoded-1.2.1\\libform_urlencoded-3125683361.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__percent-encoding-2.3.1\\libpercent_encoding-1679669264.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__http-0.2.9\\libhttp-1883127481.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__itoa-1.0.6\\libitoa-341408346.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__bytes-1.6.0\\libbytes-1086374926.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__fnv-1.0.7\\libfnv-3557511382.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__is_executable-1.0.1\\libis_executable-825616614.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__winapi-0.3.9\\libwinapi-1255796815.rlib" "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\external\\crates__anyhow-1.0.81\\libanyhow-256304961.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libstd-e493bcbfdc66a475.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libpanic_unwind-467acea86c440d1f.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_demangle-8bcec20f8d868561.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libstd_detect-e75d865d889e433e.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libhashbrown-cd24a5810f58b720.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_std_workspace_alloc-44b4ecbbc95939b2.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libunwind-ff93d2b34eb6aecc.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcfg_if-17346c417f0e9166.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\liblibc-ff5a06ebf4571d10.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\liballoc-cb2478631e21007b.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\librustc_std_workspace_core-58d59322b34f2b51.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcore-c192803e6895f627.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcompiler_builtins-20106e86b5dab94f.rlib" "kernel32.lib" "legacy_stdio_definitions.lib" "bcrypt.lib" "advapi32.lib" "windows.0.48.0.lib" "windows.0.52.0.lib" "ntdll.lib" "windows.0.48.0.lib" "advapi32.lib" "cfgmgr32.lib" "credui.lib" "fwpuclnt.lib" "gdi32.lib" "kernel32.lib" "msimg32.lib" "ntdll.lib" "opengl32.lib" "secur32.lib" "user32.lib" "winspool.lib" "ws2_32.lib" "kernel32.lib" "advapi32.lib" "bcrypt.lib" "kernel32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "kernel32.lib" "ws2_32.lib" "kernel32.lib" "ntdll.lib" "kernel32.lib" "msvcrt.lib" "/NXCOMPAT" "/LIBPATH:bazel-out/x64_windows-fastbuild/bin/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools/rust_toolchain\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib" "/OUT:bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445/unit.exe" "/OPT:REF,NOICF" "/DEBUG" "/nologo" "/SUBSYSTEM:CONSOLE" "/MACHINE:X64" "/DEFAULTLIB:msvcrt.lib" "/DEBUG:FASTLINK" "/INCREMENTAL:NO"�[0m
    586:  �[0m  �[0m�[0m�[1m�[38;5;14m= �[0m�[0m�[1m�[38;5;15mnote�[0m�[0m: LINK : fatal error LNK1181: cannot open input file 'windows.0.48.0.lib'
    587:  �[0m
    588:  �[0m          �[0m
    589:  �[0m�[1m�[38;5;9merror�[0m�[0m�[1m�[38;5;15m: aborting due to 1 previous error�[0m
    590:  �[32m[587 / 603]�[0m 19 / 34 tests, �[31m�[1m1 failed�[0m;�[0m checking cached actions
    591:  �[32mINFO: �[0mElapsed time: 95.568s, Critical Path: 7.42s
    592:  �[32mINFO: �[0m587 processes: 352 disk cache hit, 233 internal, 2 local.
    593:  �[31m�[1mERROR: �[0mBuild did NOT complete successfully
    ...
    
    617:  //rust:integration_tests/mirror_tests                                 �[0m�[31m�[1mNO STATUS�[0m
    618:  //rust:integration_tests/offline_tests                                �[0m�[31m�[1mNO STATUS�[0m
    619:  //rust:integration_tests/output_tests                                 �[0m�[31m�[1mNO STATUS�[0m
    620:  //rust:integration_tests/proxy_tests                                  �[0m�[31m�[1mNO STATUS�[0m
    621:  //rust:integration_tests/safari_tests                                 �[0m�[31m�[1mNO STATUS�[0m
    622:  //rust:integration_tests/stable_browser_tests                         �[0m�[31m�[1mNO STATUS�[0m
    623:  //rust:integration_tests/timeout_tests                                �[0m�[31m�[1mNO STATUS�[0m
    624:  //rust:integration_tests/webview_tests                                �[0m�[31m�[1mNO STATUS�[0m
    625:  //rust:unit                                                     �[0m�[31m�[1mFAILED TO BUILD�[0m
    626:  //rust:selenium_manager-fmt                                              �[0m�[32mPASSED�[0m in 2.8s
    627:  //rust:unit-fmt                                                          �[0m�[32mPASSED�[0m in 2.8s
    628:  Executed 2 out of 34 tests: 18 tests pass, �[0m�[31m�[1m1 fails to build�[0m and �[0m�[35m15 were skipped�[0m.
    629:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
    630:  �[0m
    631:  ##[error]Process completed with exit code 1.
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    @diemol diemol merged commit 1f058a8 into trunk Mar 27, 2024
    20 checks passed
    @diemol diemol deleted the sm_pkg_and_toolchain branch March 27, 2024 01:06
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    Status: Done
    Development

    Successfully merging this pull request may close these issues.

    None yet

    2 participants