[INFO] fetching crate recstrm 0.0.1...
[INFO] testing recstrm-0.0.1 against 1.95.0 for beta-1.96-2
[INFO] extracting crate recstrm 0.0.1 into /workspace/builds/worker-0-tc1/source
[INFO] started tweaking crates.io crate recstrm 0.0.1
[INFO] finished tweaking crates.io crate recstrm 0.0.1
[INFO] tweaked toml for crates.io crate recstrm 0.0.1 written to /workspace/builds/worker-0-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate recstrm 0.0.1 on toolchain 1.95.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.95.0" "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" "+1.95.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]      Locking 25 packages to latest compatible versions
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.95.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]  Downloading crates ...
[INFO] [stderr]   Downloaded testtools v0.1.3
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] c85dcb31efc32bccfd03c3df733ff9b462ba604e077e6717f2ccef857e0a18cf
[INFO] running `Command { std: "docker" "start" "-a" "c85dcb31efc32bccfd03c3df733ff9b462ba604e077e6717f2ccef857e0a18cf", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "c85dcb31efc32bccfd03c3df733ff9b462ba604e077e6717f2ccef857e0a18cf", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "c85dcb31efc32bccfd03c3df733ff9b462ba604e077e6717f2ccef857e0a18cf", kill_on_drop: false }`
[INFO] [stdout] c85dcb31efc32bccfd03c3df733ff9b462ba604e077e6717f2ccef857e0a18cf
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 67322cd722c61bf90b6ab6cf9605f6a3102444112036560cc561afcd5e790760
[INFO] running `Command { std: "docker" "start" "-a" "67322cd722c61bf90b6ab6cf9605f6a3102444112036560cc561afcd5e790760", kill_on_drop: false }`
[INFO] [stderr]    Compiling smallvec v1.15.1
[INFO] [stderr]    Compiling parking_lot_core v0.9.12
[INFO] [stderr]    Compiling parking_lot v0.12.5
[INFO] [stderr]    Compiling recstrm v0.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:184:21
[INFO] [stdout]     |
[INFO] [stdout] 184 |   pub fn recv_async(&self) -> RecvFuture<T, E> {
[INFO] [stdout]     |                     ^^^^^     ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the 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: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 184 |   pub fn recv_async(&self) -> RecvFuture<'_, T, E> {
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:188:25
[INFO] [stdout]     |
[INFO] [stdout] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<T, E> {
[INFO] [stdout]     |                         ^^^^^     ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         the lifetime is elided 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] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<'_, T, E> {
[INFO] [stdout]     |                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:194:28
[INFO] [stdout]     |
[INFO] [stdout] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<T, E> {
[INFO] [stdout]     |                            ^^^^^                 ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                            |
[INFO] [stdout]     |                            the lifetime is elided 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] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<'_, T, E> {
[INFO] [stdout]     |                                                                   +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/send.rs:196:21
[INFO] [stdout]     |
[INFO] [stdout] 196 |   pub fn send_async(&self, n: T) -> SendFuture<T, E> {
[INFO] [stdout]     |                     ^^^^^           ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided 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] 196 |   pub fn send_async(&self, n: T) -> SendFuture<'_, T, E> {
[INFO] [stdout]     |                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/send.rs:211:30
[INFO] [stdout]     |
[INFO] [stdout] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<T, E>
[INFO] [stdout]     |                              ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                              |
[INFO] [stdout]     |                              the lifetime is elided 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] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<'_, T, E>
[INFO] [stdout]     |                                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.49s
[INFO] running `Command { std: "docker" "inspect" "67322cd722c61bf90b6ab6cf9605f6a3102444112036560cc561afcd5e790760", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "67322cd722c61bf90b6ab6cf9605f6a3102444112036560cc561afcd5e790760", kill_on_drop: false }`
[INFO] [stdout] 67322cd722c61bf90b6ab6cf9605f6a3102444112036560cc561afcd5e790760
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] f4c480e5a60a6857eb04ce7c4c4840a6d0fb95d129a85e81d34d5372755887a6
[INFO] running `Command { std: "docker" "start" "-a" "f4c480e5a60a6857eb04ce7c4c4840a6d0fb95d129a85e81d34d5372755887a6", kill_on_drop: false }`
[INFO] [stderr]    Compiling once_cell v1.21.4
[INFO] [stderr]    Compiling syn v2.0.117
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:184:21
[INFO] [stdout]     |
[INFO] [stdout] 184 |   pub fn recv_async(&self) -> RecvFuture<T, E> {
[INFO] [stdout]     |                     ^^^^^     ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the 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: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 184 |   pub fn recv_async(&self) -> RecvFuture<'_, T, E> {
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:188:25
[INFO] [stdout]     |
[INFO] [stdout] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<T, E> {
[INFO] [stdout]     |                         ^^^^^     ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         the lifetime is elided 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] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<'_, T, E> {
[INFO] [stdout]     |                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:194:28
[INFO] [stdout]     |
[INFO] [stdout] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<T, E> {
[INFO] [stdout]     |                            ^^^^^                 ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                            |
[INFO] [stdout]     |                            the lifetime is elided 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] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<'_, T, E> {
[INFO] [stdout]     |                                                                   +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/send.rs:196:21
[INFO] [stdout]     |
[INFO] [stdout] 196 |   pub fn send_async(&self, n: T) -> SendFuture<T, E> {
[INFO] [stdout]     |                     ^^^^^           ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided 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] 196 |   pub fn send_async(&self, n: T) -> SendFuture<'_, T, E> {
[INFO] [stdout]     |                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/send.rs:211:30
[INFO] [stdout]     |
[INFO] [stdout] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<T, E>
[INFO] [stdout]     |                              ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                              |
[INFO] [stdout]     |                              the lifetime is elided 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] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<'_, T, E>
[INFO] [stdout]     |                                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling ahash v0.8.12
[INFO] [stderr]    Compiling hashbrown v0.14.5
[INFO] [stderr]    Compiling testtools v0.1.3
[INFO] [stderr]    Compiling tokio-macros v2.7.0
[INFO] [stderr]    Compiling tokio v1.52.1
[INFO] [stderr]    Compiling recstrm v0.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:184:21
[INFO] [stdout]     |
[INFO] [stdout] 184 |   pub fn recv_async(&self) -> RecvFuture<T, E> {
[INFO] [stdout]     |                     ^^^^^     ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the 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: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 184 |   pub fn recv_async(&self) -> RecvFuture<'_, T, E> {
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:188:25
[INFO] [stdout]     |
[INFO] [stdout] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<T, E> {
[INFO] [stdout]     |                         ^^^^^     ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         the lifetime is elided 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] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<'_, T, E> {
[INFO] [stdout]     |                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/recv.rs:194:28
[INFO] [stdout]     |
[INFO] [stdout] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<T, E> {
[INFO] [stdout]     |                            ^^^^^                 ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                            |
[INFO] [stdout]     |                            the lifetime is elided 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] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<'_, T, E> {
[INFO] [stdout]     |                                                                   +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/send.rs:196:21
[INFO] [stdout]     |
[INFO] [stdout] 196 |   pub fn send_async(&self, n: T) -> SendFuture<T, E> {
[INFO] [stdout]     |                     ^^^^^           ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided 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] 196 |   pub fn send_async(&self, n: T) -> SendFuture<'_, T, E> {
[INFO] [stdout]     |                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/send.rs:211:30
[INFO] [stdout]     |
[INFO] [stdout] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<T, E>
[INFO] [stdout]     |                              ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                              |
[INFO] [stdout]     |                              the lifetime is elided 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] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<'_, T, E>
[INFO] [stdout]     |                                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 11.03s
[INFO] running `Command { std: "docker" "inspect" "f4c480e5a60a6857eb04ce7c4c4840a6d0fb95d129a85e81d34d5372755887a6", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f4c480e5a60a6857eb04ce7c4c4840a6d0fb95d129a85e81d34d5372755887a6", kill_on_drop: false }`
[INFO] [stdout] f4c480e5a60a6857eb04ce7c4c4840a6d0fb95d129a85e81d34d5372755887a6
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 1ac98463c9de8ea2636cf2033c9d6fa69c5abb81876bd951397ccc98693acefa
[INFO] running `Command { std: "docker" "start" "-a" "1ac98463c9de8ea2636cf2033c9d6fa69c5abb81876bd951397ccc98693acefa", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/recv.rs:184:21
[INFO] [stderr]     |
[INFO] [stderr] 184 |   pub fn recv_async(&self) -> RecvFuture<T, E> {
[INFO] [stderr]     |                     ^^^^^     ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                     |
[INFO] [stderr]     |                     the lifetime is elided 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] 184 |   pub fn recv_async(&self) -> RecvFuture<'_, T, E> {
[INFO] [stderr]     |                                          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/recv.rs:188:25
[INFO] [stderr]     |
[INFO] [stderr] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<T, E> {
[INFO] [stderr]     |                         ^^^^^     ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                         |
[INFO] [stderr]     |                         the lifetime is elided 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] 188 |   pub fn recv_all_async(&self) -> RecvAllFuture<'_, T, E> {
[INFO] [stderr]     |                                                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/recv.rs:194:28
[INFO] [stderr]     |
[INFO] [stderr] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<T, E> {
[INFO] [stderr]     |                            ^^^^^                 ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                            |
[INFO] [stderr]     |                            the lifetime is elided 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] 194 |   pub fn recv_atmost_async(&self, lim: usize) -> RecvAtMostFuture<'_, T, E> {
[INFO] [stderr]     |                                                                   +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/send.rs:196:21
[INFO] [stderr]     |
[INFO] [stderr] 196 |   pub fn send_async(&self, n: T) -> SendFuture<T, E> {
[INFO] [stderr]     |                     ^^^^^           ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                     |
[INFO] [stderr]     |                     the lifetime is elided 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] 196 |   pub fn send_async(&self, n: T) -> SendFuture<'_, T, E> {
[INFO] [stderr]     |                                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/send.rs:211:30
[INFO] [stderr]     |
[INFO] [stderr] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<T, E>
[INFO] [stderr]     |                              ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                              |
[INFO] [stderr]     |                              the lifetime is elided 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] 211 |   pub fn send_batch_async<I>(&self, it: I) -> SendFuture<'_, T, E>
[INFO] [stderr]     |                                                          +++
[INFO] [stderr] 
[INFO] [stderr] warning: `recstrm` (lib) generated 5 warnings (run `cargo fix --lib -p recstrm` to apply 5 suggestions)
[INFO] [stderr] warning: `recstrm` (lib test) generated 5 warnings (5 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.11s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/recstrm-89b012567586fc78)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/simple.rs (/opt/rustwide/target/debug/deps/simple-608fb62f4fb149d7)
[INFO] [stdout] 
[INFO] [stdout] running 16 tests
[INFO] [stdout] test drop_sender_before_num_recs ... ok
[INFO] [stdout] test batch_order ... ok
[INFO] [stdout] test drop_sender_after_num_recs ... ok
[INFO] [stdout] test drop_sender_before_num_recs_one_off ... ok
[INFO] [stdout] test eof_with_queued_records ... ok
[INFO] [stdout] test fail_receiver ... ok
[INFO] [stdout] test recv_all ... ok
[INFO] [stdout] test receiver_disappeared ... ok
[INFO] [stdout] test send_before_recv ... ok
[INFO] [stdout] test try_send_full_queue ... ok
[INFO] [stdout] test recv_atmost ... ok
[INFO] [stdout] test fail_sender ... ok
[INFO] [stdout] test order ... ok
[INFO] [stdout] test eof_after_sender_drop ... ok
[INFO] [stdout] test sender_blocking ... ok
[INFO] [stdout] test send_after_recv ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 16 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.51s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/simple_async.rs (/opt/rustwide/target/debug/deps/simple_async-defd865b3c2abe88)
[INFO] [stdout] 
[INFO] [stdout] running 13 tests
[INFO] [stdout] test eof_with_queued_records ... ok
[INFO] [stdout] test fail_receiver ... ok
[INFO] [stdout] test order ... ok
[INFO] [stdout] test fail_sender ... ok
[INFO] [stdout] test try_send_full_queue ... ok
[INFO] [stdout] test recv_all ... ok
[INFO] [stdout] test receiver_disappeared ... ok
[INFO] [stdout] test recv_atmost ... ok
[INFO] [stdout] test eof_after_sender_drop ... ok
[INFO] [stdout] test batch_order ... ok
[INFO] [stdout] test sender_blocking ... ok
[INFO] [stdout] test send_after_recv ... ok
[INFO] [stdout] test send_before_recv ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 13 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.51s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/tryrecv.rs (/opt/rustwide/target/debug/deps/tryrecv-1e735ab58cd230b7)
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test tryrecv ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests recstrm
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test src/lib.rs - channel (line 176) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.31s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "1ac98463c9de8ea2636cf2033c9d6fa69c5abb81876bd951397ccc98693acefa", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "1ac98463c9de8ea2636cf2033c9d6fa69c5abb81876bd951397ccc98693acefa", kill_on_drop: false }`
[INFO] [stdout] 1ac98463c9de8ea2636cf2033c9d6fa69c5abb81876bd951397ccc98693acefa
