[INFO] fetching crate msvc_def 0.1.0...
[INFO] testing msvc_def-0.1.0 against beta-2025-10-28 for beta-1.92-2
[INFO] extracting crate msvc_def 0.1.0 into /workspace/builds/worker-7-tc2/source
[INFO] started tweaking crates.io crate msvc_def 0.1.0
[INFO] finished tweaking crates.io crate msvc_def 0.1.0
[INFO] tweaked toml for crates.io crate msvc_def 0.1.0 written to /workspace/builds/worker-7-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate msvc_def 0.1.0 on toolchain beta-2025-10-28
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] b0e4d545222aea6640e1a5ca4f4c70d58c77d092dafd2553001ee18453dc8cab
[INFO] running `Command { std: "docker" "start" "-a" "b0e4d545222aea6640e1a5ca4f4c70d58c77d092dafd2553001ee18453dc8cab", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "b0e4d545222aea6640e1a5ca4f4c70d58c77d092dafd2553001ee18453dc8cab", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "b0e4d545222aea6640e1a5ca4f4c70d58c77d092dafd2553001ee18453dc8cab", kill_on_drop: false }`
[INFO] [stdout] b0e4d545222aea6640e1a5ca4f4c70d58c77d092dafd2553001ee18453dc8cab
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 3152e8a329f634b9a7b6b7caf9270fb2bb819fb30120569f4ffc1c1b06dde3d1
[INFO] running `Command { std: "docker" "start" "-a" "3152e8a329f634b9a7b6b7caf9270fb2bb819fb30120569f4ffc1c1b06dde3d1", kill_on_drop: false }`
[INFO] [stderr]    Compiling msvc_def v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:119:17
[INFO] [stdout]     |
[INFO] [stdout] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stdout]     |                 ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/parse.rs:220:30
[INFO] [stdout]     |
[INFO] [stdout] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stdout]     |                              ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stdout]     |                                                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.57s
[INFO] running `Command { std: "docker" "inspect" "3152e8a329f634b9a7b6b7caf9270fb2bb819fb30120569f4ffc1c1b06dde3d1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "3152e8a329f634b9a7b6b7caf9270fb2bb819fb30120569f4ffc1c1b06dde3d1", kill_on_drop: false }`
[INFO] [stdout] 3152e8a329f634b9a7b6b7caf9270fb2bb819fb30120569f4ffc1c1b06dde3d1
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 81cea36338a6b6cdf59d3d7ec01d6be0073fe9e7bf7f61537fdc348f5748f9bf
[INFO] running `Command { std: "docker" "start" "-a" "81cea36338a6b6cdf59d3d7ec01d6be0073fe9e7bf7f61537fdc348f5748f9bf", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:119:17
[INFO] [stdout]     |
[INFO] [stdout] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stdout]     |                 ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/parse.rs:220:30
[INFO] [stdout]     |
[INFO] [stdout] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stdout]     |                              ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stdout]     |                                                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling msvc_def v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:119:17
[INFO] [stdout]     |
[INFO] [stdout] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stdout]     |                 ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/parse.rs:220:30
[INFO] [stdout]     |
[INFO] [stdout] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stdout]     |                              ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stdout]     |                                                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1.02s
[INFO] running `Command { std: "docker" "inspect" "81cea36338a6b6cdf59d3d7ec01d6be0073fe9e7bf7f61537fdc348f5748f9bf", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "81cea36338a6b6cdf59d3d7ec01d6be0073fe9e7bf7f61537fdc348f5748f9bf", kill_on_drop: false }`
[INFO] [stdout] 81cea36338a6b6cdf59d3d7ec01d6be0073fe9e7bf7f61537fdc348f5748f9bf
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 7c6e8ea0bdf7a5b694d39d63932fde8a3643b93d5cfae73bd1f6dd266e4a8f49
[INFO] running `Command { std: "docker" "start" "-a" "7c6e8ea0bdf7a5b694d39d63932fde8a3643b93d5cfae73bd1f6dd266e4a8f49", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:119:17
[INFO] [stderr]     |
[INFO] [stderr] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stderr]     |                 ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 119 | pub fn parse(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stderr]     |                                                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/parse.rs:220:30
[INFO] [stderr]     |
[INFO] [stderr] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError> {
[INFO] [stderr]     |                              ^^^^ the lifetime is elided here      ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 220 | pub(crate) fn parse_inner(s: &str) -> Result<ModuleDefinitionFile, ParseError<'_>> {
[INFO] [stderr]     |                                                                              ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `msvc_def` (lib) generated 2 warnings (run `cargo fix --lib -p msvc_def` to apply 2 suggestions)
[INFO] [stderr] warning: `msvc_def` (lib test) generated 2 warnings (2 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.04s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/msvc_def-f7df2e66f8a2ca57)
[INFO] [stdout] 
[INFO] [stdout] running 9 tests
[INFO] [stdout] test test::exports ... ok
[INFO] [stdout] test test::heapsize ... ok
[INFO] [stdout] test test::library_name ... ok
[INFO] [stdout] test test::read_synthetic ... ok
[INFO] [stdout] test test::stacksize ... ok
[INFO] [stdout] test test::write ... ok
[INFO] [stdout] test test::stub ... ok
[INFO] [stdout] test test::version ... ok
[INFO] [stderr]    Doc-tests msvc_def
[INFO] [stdout] test test::sections ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test src/lib.rs - (line 6) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.24s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "7c6e8ea0bdf7a5b694d39d63932fde8a3643b93d5cfae73bd1f6dd266e4a8f49", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "7c6e8ea0bdf7a5b694d39d63932fde8a3643b93d5cfae73bd1f6dd266e4a8f49", kill_on_drop: false }`
[INFO] [stdout] 7c6e8ea0bdf7a5b694d39d63932fde8a3643b93d5cfae73bd1f6dd266e4a8f49
