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] Use DEBUG level for WARN traces in offline mode #13810

Merged
merged 1 commit into from
Apr 12, 2024

Conversation

bonigarcia
Copy link
Member

@bonigarcia bonigarcia commented Apr 12, 2024

User description

Description

This PR changes the level of several WARN traces to DEBUG when the offline mode is enabled. Example:

./selenium-manager --browser firefox --debug --offline
[2024-04-12T09:33:30.755Z DEBUG] Offline flag set, but also asked not to avoid browser downloads. Honouring offline flag
[2024-04-12T09:33:30.756Z DEBUG] Using Selenium Manager in offline mode
[2024-04-12T09:33:30.774Z DEBUG] geckodriver not found in PATH
[2024-04-12T09:33:30.774Z DEBUG] firefox detected at C:\Program Files\Mozilla Firefox\firefox.exe
[2024-04-12T09:33:30.775Z DEBUG] Running command: wmic datafile where name='C:\\Program Files\\Mozilla Firefox\\firefox.exe' get Version /value
[2024-04-12T09:33:30.854Z DEBUG] Output: "\r\r\n\r\r\nVersion=124.0.2.8857\r\r\n\r\r\n\r\r\n\r"
[2024-04-12T09:33:30.859Z DEBUG] Detected browser: firefox 124.0.2.8857
[2024-04-12T09:33:30.906Z DEBUG] There was an error managing geckodriver (Unable to discover proper geckodriver version in offline mode); using driver found in the cache
[2024-04-12T09:33:30.907Z INFO ] Driver path: C:\Users\boni\.cache\selenium\geckodriver\win64\0.34.0\geckodriver.exe
[2024-04-12T09:33:30.908Z INFO ] Browser path: C:\Program Files\Mozilla Firefox\firefox.exe

Motivation and Context

Requested in #13809.

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


Description

  • Introduced a new logging method debug_or_warn in logger.rs to dynamically log messages as either DEBUG or WARN based on the offline mode flag.
  • Utilized the new debug_or_warn method in lib.rs and main.rs to improve logging when the Selenium Manager operates in offline mode, specifically when falling back to using cached browsers or drivers.
  • This change aims to provide more appropriate logging levels when in offline mode, reducing the verbosity of WARN logs when not necessary.

Changes walkthrough

Relevant files
Enhancement
lib.rs
Use Debug or Warn Level Logging in Offline Mode                   

rust/src/lib.rs

  • Introduced debug_or_warn method usage for logging when using a browser
    from the cache in offline mode.
  • +7/-4     
    logger.rs
    Add Debug or Warn Logging Method                                                 

    rust/src/logger.rs

  • Added a new method debug_or_warn to log messages as DEBUG or WARN
    based on offline mode flag.
  • +5/-0     
    main.rs
    Enhance Logging for Driver Cache Usage in Offline Mode     

    rust/src/main.rs

  • Utilized debug_or_warn for logging driver cache usage in offline mode.

  • +8/-5     

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

    Copy link
    Contributor

    PR Description updated to latest commit (7c143e1)

    Copy link
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward and localized to logging functionality. The addition of a new method to handle conditional logging based on the offline mode is clear and does not introduce complex logic.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Logging Level Consistency: Ensure that changing WARN to DEBUG in offline mode does not obscure important warnings that users should be aware of, even in offline mode.

    🔒 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.

    @bonigarcia bonigarcia requested a review from diemol April 12, 2024 09:35
    Copy link
    Contributor

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Enhancement
    Improve efficiency by using Into for the message parameter in debug_or_warn.

    Consider using Into trait bound for the message parameter in debug_or_warn function to
    avoid unnecessary to_string calls for types that are already String or can be more
    efficiently converted into String.

    rust/src/logger.rs [153-156]

    -pub fn debug_or_warn<T: Display>(&self, message: T, is_debug: bool) {
    +pub fn debug_or_warn<T: Into<String>>(&self, message: T, is_debug: bool) {
         let level = if is_debug { Level::Debug } else { Level::Warn };
    -    self.logger(message.to_string(), level);
    +    self.logger(message.into(), level);
     }
     
    Enhance error logging for better error context and troubleshooting.

    To ensure that the error context is not lost, consider enhancing the logging statement to
    include more details about the error, especially when not in offline mode.

    rust/src/main.rs [248-254]

    -log.debug_or_warn(
    -    format!(
    -        "There was an error managing {} ({}); using driver found in the cache",
    +if selenium_manager.is_offline() {
    +    log.debug(format!(
    +        "Offline mode: Using cached driver for {} due to error: {}",
             selenium_manager.get_driver_name(),
             err
    -    ),
    -    selenium_manager.is_offline(),
    -);
    +    ));
    +} else {
    +    log.warn(format!(
    +        "Error managing {} ({}); fallback to cached driver.",
    +        selenium_manager.get_driver_name(),
    +        err
    +    ));
    +}
     
    Performance
    Optimize logging by deferring message formatting to when it's actually logged.

    Avoid calling format! macro unnecessarily when logging messages. Instead, pass the message
    directly to the logging function and let it handle formatting only if the message is going
    to be logged based on the current log level.

    rust/src/lib.rs [941-947]

    -self.get_logger().debug_or_warn(
    -    format!(
    -        "There was an error managing {}; using browser found in the cache",
    -        self.get_browser_name()
    -    ),
    -    self.is_offline(),
    -);
    +self.get_logger().debug_or_warn_lazy(|| format!(
    +    "There was an error managing {}; using browser found in the cache",
    +    self.get_browser_name()
    +), self.is_offline());
     
    Add a method for lazy message evaluation in logging to improve performance.

    Implement a new method debug_or_warn_lazy that accepts a closure for lazy evaluation of
    the log message. This approach avoids the cost of formatting messages when the log level
    does not require the message to be logged.

    rust/src/logger.rs [153-156]

    -pub fn debug_or_warn<T: Display>(&self, message: T, is_debug: bool) {
    +pub fn debug_or_warn_lazy<F: FnOnce() -> String>(&self, message: F, is_debug: bool) {
         let level = if is_debug { Level::Debug } else { Level::Warn };
    -    self.logger(message.to_string(), level);
    +    if self.should_log(level) {
    +        self.logger(message(), level);
    +    }
     }
     
    Maintainability
    Improve code readability and flexibility by using pattern matching for logging logic.

    Use pattern matching for self.is_offline() to improve readability and potentially allow
    for more complex logic in the future without additional refactoring.

    rust/src/lib.rs [941-947]

    -self.get_logger().debug_or_warn(
    -    format!(
    +match self.is_offline() {
    +    true => self.get_logger().debug(format!(
             "There was an error managing {}; using browser found in the cache",
             self.get_browser_name()
    -    ),
    -    self.is_offline(),
    -);
    +    )),
    +    false => self.get_logger().warn(format!(
    +        "There was an error managing {}; using browser found in the cache",
    +        self.get_browser_name()
    +    )),
    +}
     

    ✨ 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
    Member

    @diemol diemol left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Thank you, @bonigarcia!

    Copy link
    Contributor

    CI Failure Feedback

    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', which is essential for the build process.
    This issue indicates that the required library file is missing, not accessible, or incorrectly
    specified in the build configuration.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    560:  Build Script Warning: cl : Command line warning D9002 : ignoring unknown option '-fvisibility=hidden'
    561:  Build Script Warning: cl : Command line warning D9002 : ignoring unknown option '-fvisibility=hidden'
    562:  Build Script Warning: cl : Command line warning D9002 : ignoring unknown option '-fvisibility=hidden'
    563:  �[32m[416 / 597]�[0m Running Cargo build script generic-array; 0s disk-cache ... (4 actions, 0 running)
    564:  �[32m[573 / 597]�[0m 12 / 34 tests;�[0m Testing //rust:unit-fmt; 0s local, disk-cache ... (4 actions, 3 running)
    565:  �[32m[573 / 597]�[0m 12 / 34 tests;�[0m Testing //rust:unit-fmt; 1s local, disk-cache ... (4 actions running)
    566:  �[32m[578 / 597]�[0m 17 / 34 tests;�[0m Testing //rust:selenium_manager-fmt; 2s local, disk-cache ... (3 actions running)
    567:  �[32m[579 / 597]�[0m 18 / 34 tests;�[0m Compiling Rust bin unit (17 files); 3s local, disk-cache ... (2 actions running)
    568:  �[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) 
    ...
    
    580:  SET CARGO_PKG_VERSION_MINOR=0
    581:  SET CARGO_PKG_VERSION_PATCH=0
    582:  SET CARGO_PKG_VERSION_PRE=
    583:  SET JRUBY_OPTS=--dev
    584:  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
    585:  SET PATH=C:\Program Files\Git\bin;C:\Program Files\Git\usr\bin;C:\Windows;C:\Windows\System32;C:\Windows\System32\WindowsPowerShell\v1.0
    586:  SET TEMP=C:\Users\RUNNER~1\AppData\Local\Temp
    587:  SET TMP=C:\Users\RUNNER~1\AppData\Local\Temp
    588:  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
    589:  # Configuration: d27e3c43b6f5f897405818019f75d09bf594fdb92ada2f257f636d23e495b2ec
    590:  # Execution platform: @@local_config_platform//:host
    591:  �[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
    592:  �[0m  �[0m�[0m�[1m�[38;5;14m|�[0m
    593:  �[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\\rustc497wZi\\symbols.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.cccaca0c06ff99fa-cgu.0.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.cccaca0c06ff99fa-cgu.1.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.cccaca0c06ff99fa-cgu.2.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.cccaca0c06ff99fa-cgu.3.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.selenium_manager.cccaca0c06ff99fa-cgu.4.rcgu.o" "bazel-out/x64_windows-fastbuild/bin/rust/test-3504094445\\selenium_manager.2fhzqi32k7d96bna.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-6ca0661e08ffbc37.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libgetopts-3052017e40bd3d56.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-9caec8e49ae3c246.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-b7f983da7318d891.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-4eebbe9783f90781.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-f235a851291f88f9.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-700f5e4adfccaf0e.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-46885cba99d4a3a1.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libhashbrown-def8df116250e57a.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-6415affc345ef5d0.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libunwind-fa84163161b01c54.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-47391e5899e7b0c2.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\liblibc-0e478ab8bb65a3f3.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\liballoc-6c773432c0871bd0.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-756f2f9b45be14bb.rlib" "D:\\_bazel\\external\\rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\libcore-ccdf4358954b926b.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-96e76e7a5845557c.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
    594:  �[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'
    595:  �[0m
    596:  �[0m          �[0m
    597:  �[0m�[1m�[38;5;9merror�[0m�[0m�[1m�[38;5;15m: aborting due to 1 previous error�[0m
    598:  �[32m[581 / 597]�[0m 19 / 34 tests, �[31m�[1m1 failed�[0m;�[0m checking cached actions
    599:  �[32mINFO: �[0mElapsed time: 58.005s, Critical Path: 6.81s
    600:  �[32mINFO: �[0m581 processes: 349 disk cache hit, 227 internal, 5 local.
    601:  �[31m�[1mERROR: �[0mBuild did NOT complete successfully
    ...
    
    624:  //rust:integration_tests/mirror_tests                                 �[0m�[31m�[1mNO STATUS�[0m
    625:  //rust:integration_tests/offline_tests                                �[0m�[31m�[1mNO STATUS�[0m
    626:  //rust:integration_tests/output_tests                                 �[0m�[31m�[1mNO STATUS�[0m
    627:  //rust:integration_tests/proxy_tests                                  �[0m�[31m�[1mNO STATUS�[0m
    628:  //rust:integration_tests/safari_tests                                 �[0m�[31m�[1mNO STATUS�[0m
    629:  //rust:integration_tests/stable_browser_tests                         �[0m�[31m�[1mNO STATUS�[0m
    630:  //rust:integration_tests/timeout_tests                                �[0m�[31m�[1mNO STATUS�[0m
    631:  //rust:integration_tests/webview_tests                                �[0m�[31m�[1mNO STATUS�[0m
    632:  //rust:unit                                                     �[0m�[31m�[1mFAILED TO BUILD�[0m
    633:  //rust:selenium-manager-fmt                                              �[0m�[32mPASSED�[0m in 2.5s
    634:  //rust:selenium_manager-fmt                                              �[0m�[32mPASSED�[0m in 2.6s
    635:  //rust:unit-fmt                                                          �[0m�[32mPASSED�[0m in 2.6s
    636:  Executed 3 out of 34 tests: 18 tests pass, �[0m�[31m�[1m1 fails to build�[0m and �[0m�[35m15 were skipped�[0m.
    637:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
    638:  �[0m
    639:  ##[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.

    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.

    [🐛 Bug]: Selenium manger in offline mode emits a warning which it should not do.
    2 participants