[INFO] fetching crate subtext 0.3.5...
[INFO] testing subtext-0.3.5 against beta-2025-09-21 for beta-1.91-3
[INFO] extracting crate subtext 0.3.5 into /workspace/builds/worker-5-tc2/source
[INFO] started tweaking crates.io crate subtext 0.3.5
[INFO] finished tweaking crates.io crate subtext 0.3.5
[INFO] tweaked toml for crates.io crate subtext 0.3.5 written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate subtext 0.3.5 on toolchain beta-2025-09-21
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate subtext 0.3.5 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] b6fd19b7b0762f88d2102dbb8c7cf9cd10bb3d1133b05f332401165e8f925169
[INFO] running `Command { std: "docker" "start" "-a" "b6fd19b7b0762f88d2102dbb8c7cf9cd10bb3d1133b05f332401165e8f925169", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "b6fd19b7b0762f88d2102dbb8c7cf9cd10bb3d1133b05f332401165e8f925169", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "b6fd19b7b0762f88d2102dbb8c7cf9cd10bb3d1133b05f332401165e8f925169", kill_on_drop: false }`
[INFO] [stdout] b6fd19b7b0762f88d2102dbb8c7cf9cd10bb3d1133b05f332401165e8f925169
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 3e167e34e24e651be70a28f8a8e58befee4ef38d2ce6a2d16bcae9d5260dfba2
[INFO] running `Command { std: "docker" "start" "-a" "3e167e34e24e651be70a28f8a8e58befee4ef38d2ce6a2d16bcae9d5260dfba2", kill_on_drop: false }`
[INFO] [stderr]    Compiling log v0.4.17
[INFO] [stderr]    Compiling mac v0.1.1
[INFO] [stderr]    Compiling new_debug_unreachable v1.0.4
[INFO] [stderr]    Compiling anyhow v1.0.60
[INFO] [stderr]    Compiling utf-8 v0.7.6
[INFO] [stderr]    Compiling futf v0.1.5
[INFO] [stderr]    Compiling tendril v0.4.3
[INFO] [stderr]    Compiling subtext v0.3.5 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/predicate.rs:11:44
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub fn sequence_to_predicate(mut sequence: Sequence) -> impl FnMut(&char) -> Option<usize> + '_ {
[INFO] [stdout]    |                                            ^^^^^^^^ the lifetime is hidden here              ^^ the same lifetime is elided 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: consistently use `'_`
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub fn sequence_to_predicate(mut sequence: Sequence<'_>) -> impl FnMut(&char) -> Option<usize> + '_ {
[INFO] [stdout]    |                                                    ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.50s
[INFO] running `Command { std: "docker" "inspect" "3e167e34e24e651be70a28f8a8e58befee4ef38d2ce6a2d16bcae9d5260dfba2", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "3e167e34e24e651be70a28f8a8e58befee4ef38d2ce6a2d16bcae9d5260dfba2", kill_on_drop: false }`
[INFO] [stdout] 3e167e34e24e651be70a28f8a8e58befee4ef38d2ce6a2d16bcae9d5260dfba2
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] edc8cb7d63d98e425ff4a4c0fbafd0e5c91ac6159d227796a73193edc34b2e7e
[INFO] running `Command { std: "docker" "start" "-a" "edc8cb7d63d98e425ff4a4c0fbafd0e5c91ac6159d227796a73193edc34b2e7e", kill_on_drop: false }`
[INFO] [stderr]    Compiling proc-macro2 v1.0.69
[INFO] [stderr]    Compiling unicode-ident v1.0.3
[INFO] [stderr]    Compiling wasm-bindgen-shared v0.2.82
[INFO] [stderr]    Compiling syn v1.0.99
[INFO] [stderr]    Compiling once_cell v1.13.1
[INFO] [stderr]    Compiling bumpalo v3.11.0
[INFO] [stderr]    Compiling wasm-bindgen v0.2.82
[INFO] [stderr]    Compiling scoped-tls v1.0.0
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/predicate.rs:11:44
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub fn sequence_to_predicate(mut sequence: Sequence) -> impl FnMut(&char) -> Option<usize> + '_ {
[INFO] [stdout]    |                                            ^^^^^^^^ the lifetime is hidden here              ^^ the same lifetime is elided 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: consistently use `'_`
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub fn sequence_to_predicate(mut sequence: Sequence<'_>) -> impl FnMut(&char) -> Option<usize> + '_ {
[INFO] [stdout]    |                                                    ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling quote v1.0.33
[INFO] [stderr]    Compiling wasm-bindgen-test-macro v0.3.32
[INFO] [stderr]    Compiling wasm-bindgen-backend v0.2.82
[INFO] [stderr]    Compiling wasm-bindgen-macro-support v0.2.82
[INFO] [stderr]    Compiling wasm-bindgen-macro v0.2.82
[INFO] [stdout] error: older versions of the `wasm-bindgen` crate are incompatible with current versions of Rust; please update to `wasm-bindgen` v0.2.88
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `wasm-bindgen` (lib) due to 1 previous error
[INFO] running `Command { std: "docker" "inspect" "edc8cb7d63d98e425ff4a4c0fbafd0e5c91ac6159d227796a73193edc34b2e7e", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "edc8cb7d63d98e425ff4a4c0fbafd0e5c91ac6159d227796a73193edc34b2e7e", kill_on_drop: false }`
[INFO] [stdout] edc8cb7d63d98e425ff4a4c0fbafd0e5c91ac6159d227796a73193edc34b2e7e
