[INFO] fetching crate transformable_channels 0.1.1... [INFO] testing transformable_channels-0.1.1 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate transformable_channels 0.1.1 into /workspace/builds/worker-86/source [INFO] validating manifest of crates.io crate transformable_channels 0.1.1 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate transformable_channels 0.1.1 [INFO] finished tweaking crates.io crate transformable_channels 0.1.1 [INFO] tweaked toml for crates.io crate transformable_channels 0.1.1 written to /workspace/builds/worker-86/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] fb66a799bbf8f41b940449b182c53e21661b358eb2e568ca5464ff3166a6bbac [INFO] running `Command { std: "docker" "start" "-a" "fb66a799bbf8f41b940449b182c53e21661b358eb2e568ca5464ff3166a6bbac", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "fb66a799bbf8f41b940449b182c53e21661b358eb2e568ca5464ff3166a6bbac", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "fb66a799bbf8f41b940449b182c53e21661b358eb2e568ca5464ff3166a6bbac", kill_on_drop: false }` [INFO] [stdout] fb66a799bbf8f41b940449b182c53e21661b358eb2e568ca5464ff3166a6bbac [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/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" "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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 38d93789b61ace4d3e05849aca22693a1e513815e3302e648c276c7da82eb289 [INFO] running `Command { std: "docker" "start" "-a" "38d93789b61ace4d3e05849aca22693a1e513815e3302e648c276c7da82eb289", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling transformable_channels v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:250:30 [INFO] [stdout] | [INFO] [stdout] 250 | impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 250 - impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] 250 + impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:258:23 [INFO] [stdout] | [INFO] [stdout] 258 | impl Clone for Box> where T: Send + 'static { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 258 - impl Clone for Box> where T: Send + 'static { [INFO] [stdout] 258 + impl Clone for Box> where T: Send + 'static { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:263:40 [INFO] [stdout] | [INFO] [stdout] 263 | impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 263 - impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] 263 + impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:68:37 [INFO] [stdout] | [INFO] [stdout] 68 | fn internal_clone(&self) -> Box>; [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 68 - fn internal_clone(&self) -> Box>; [INFO] [stdout] 68 + fn internal_clone(&self) -> Box>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:254:37 [INFO] [stdout] | [INFO] [stdout] 254 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 254 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 254 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:280:37 [INFO] [stdout] | [INFO] [stdout] 280 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 280 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 280 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:318:37 [INFO] [stdout] | [INFO] [stdout] 318 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 318 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 318 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:369:37 [INFO] [stdout] | [INFO] [stdout] 369 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 369 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 369 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:416:37 [INFO] [stdout] | [INFO] [stdout] 416 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 416 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 416 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:470:37 [INFO] [stdout] | [INFO] [stdout] 470 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 470 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 470 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 10 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.56s [INFO] running `Command { std: "docker" "inspect" "38d93789b61ace4d3e05849aca22693a1e513815e3302e648c276c7da82eb289", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "38d93789b61ace4d3e05849aca22693a1e513815e3302e648c276c7da82eb289", kill_on_drop: false }` [INFO] [stdout] 38d93789b61ace4d3e05849aca22693a1e513815e3302e648c276c7da82eb289 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/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" "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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 340dd978462a9ce84c540a4c11ddb852bd9c8da231145f4b99121744611cb6a3 [INFO] running `Command { std: "docker" "start" "-a" "340dd978462a9ce84c540a4c11ddb852bd9c8da231145f4b99121744611cb6a3", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling transformable_channels v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:250:30 [INFO] [stdout] | [INFO] [stdout] 250 | impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 250 - impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] 250 + impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:258:23 [INFO] [stdout] | [INFO] [stdout] 258 | impl Clone for Box> where T: Send + 'static { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 258 - impl Clone for Box> where T: Send + 'static { [INFO] [stdout] 258 + impl Clone for Box> where T: Send + 'static { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:263:40 [INFO] [stdout] | [INFO] [stdout] 263 | impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 263 - impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] 263 + impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:68:37 [INFO] [stdout] | [INFO] [stdout] 68 | fn internal_clone(&self) -> Box>; [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 68 - fn internal_clone(&self) -> Box>; [INFO] [stdout] 68 + fn internal_clone(&self) -> Box>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:254:37 [INFO] [stdout] | [INFO] [stdout] 254 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 254 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 254 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:280:37 [INFO] [stdout] | [INFO] [stdout] 280 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 280 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 280 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:318:37 [INFO] [stdout] | [INFO] [stdout] 318 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 318 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 318 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:369:37 [INFO] [stdout] | [INFO] [stdout] 369 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 369 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 369 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:416:37 [INFO] [stdout] | [INFO] [stdout] 416 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 416 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 416 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:470:37 [INFO] [stdout] | [INFO] [stdout] 470 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 470 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 470 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 10 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:250:30 [INFO] [stdout] | [INFO] [stdout] 250 | impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 250 - impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] 250 + impl ExtSender for Box> where T: Send + 'static { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:258:23 [INFO] [stdout] | [INFO] [stdout] 258 | impl Clone for Box> where T: Send + 'static { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 258 - impl Clone for Box> where T: Send + 'static { [INFO] [stdout] 258 + impl Clone for Box> where T: Send + 'static { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:263:40 [INFO] [stdout] | [INFO] [stdout] 263 | impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 263 - impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] 263 + impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:68:37 [INFO] [stdout] | [INFO] [stdout] 68 | fn internal_clone(&self) -> Box>; [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 68 - fn internal_clone(&self) -> Box>; [INFO] [stdout] 68 + fn internal_clone(&self) -> Box>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:254:37 [INFO] [stdout] | [INFO] [stdout] 254 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 254 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 254 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:280:37 [INFO] [stdout] | [INFO] [stdout] 280 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 280 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 280 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:318:37 [INFO] [stdout] | [INFO] [stdout] 318 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 318 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 318 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:369:37 [INFO] [stdout] | [INFO] [stdout] 369 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 369 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 369 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:416:37 [INFO] [stdout] | [INFO] [stdout] 416 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 416 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 416 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/mpsc.rs:470:37 [INFO] [stdout] | [INFO] [stdout] 470 | fn internal_clone(&self) -> Box> { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 470 - fn internal_clone(&self) -> Box> { [INFO] [stdout] 470 + fn internal_clone(&self) -> Box> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 10 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.88s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/transformable_channels-1a0c56e51989c4d3) [INFO] running `Command { std: "docker" "inspect" "340dd978462a9ce84c540a4c11ddb852bd9c8da231145f4b99121744611cb6a3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "340dd978462a9ce84c540a4c11ddb852bd9c8da231145f4b99121744611cb6a3", kill_on_drop: false }` [INFO] [stdout] 340dd978462a9ce84c540a4c11ddb852bd9c8da231145f4b99121744611cb6a3 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-86/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" "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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 4a9400be49cd6f7d28d5358a8fc0df096c6fd3d6e6591cc096c1a9832baaebbf [INFO] running `Command { std: "docker" "start" "-a" "4a9400be49cd6f7d28d5358a8fc0df096c6fd3d6e6591cc096c1a9832baaebbf", kill_on_drop: false }` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:250:30 [INFO] [stderr] | [INFO] [stderr] 250 | impl ExtSender for Box> where T: Send + 'static { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 250 - impl ExtSender for Box> where T: Send + 'static { [INFO] [stderr] 250 + impl ExtSender for Box> where T: Send + 'static { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:258:23 [INFO] [stderr] | [INFO] [stderr] 258 | impl Clone for Box> where T: Send + 'static { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 258 - impl Clone for Box> where T: Send + 'static { [INFO] [stderr] 258 + impl Clone for Box> where T: Send + 'static { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:263:40 [INFO] [stderr] | [INFO] [stderr] 263 | impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 263 - impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stderr] 263 + impl TransformableSender for Box> where T: Send + 'static { } [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:68:37 [INFO] [stderr] | [INFO] [stderr] 68 | fn internal_clone(&self) -> Box>; [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 68 - fn internal_clone(&self) -> Box>; [INFO] [stderr] 68 + fn internal_clone(&self) -> Box>; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:254:37 [INFO] [stderr] | [INFO] [stderr] 254 | fn internal_clone(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 254 - fn internal_clone(&self) -> Box> { [INFO] [stderr] 254 + fn internal_clone(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:280:37 [INFO] [stderr] | [INFO] [stderr] 280 | fn internal_clone(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 280 - fn internal_clone(&self) -> Box> { [INFO] [stderr] 280 + fn internal_clone(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:318:37 [INFO] [stderr] | [INFO] [stderr] 318 | fn internal_clone(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 318 - fn internal_clone(&self) -> Box> { [INFO] [stderr] 318 + fn internal_clone(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:369:37 [INFO] [stderr] | [INFO] [stderr] 369 | fn internal_clone(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 369 - fn internal_clone(&self) -> Box> { [INFO] [stderr] 369 + fn internal_clone(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:416:37 [INFO] [stderr] | [INFO] [stderr] 416 | fn internal_clone(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 416 - fn internal_clone(&self) -> Box> { [INFO] [stderr] 416 + fn internal_clone(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/mpsc.rs:470:37 [INFO] [stderr] | [INFO] [stderr] 470 | fn internal_clone(&self) -> Box> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 470 - fn internal_clone(&self) -> Box> { [INFO] [stderr] 470 + fn internal_clone(&self) -> Box> { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `transformable_channels` (lib) generated 10 warnings [INFO] [stderr] warning: `transformable_channels` (lib test) generated 10 warnings (10 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.02s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/transformable_channels-1a0c56e51989c4d3) [INFO] [stdout] [INFO] [stdout] running 2 tests [INFO] [stdout] test mpsc::test_chain_map ... ok [INFO] [stderr] Doc-tests transformable_channels [INFO] [stdout] test mpsc::test_filter_map ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 5 tests [INFO] [stdout] test src/mpsc.rs - mpsc::TransformableSender::filter_map (line 185) ... ok [INFO] [stdout] test src/mpsc.rs - mpsc::TransformableSender::map (line 87) ... ok [INFO] [stdout] test src/mpsc.rs - mpsc::TransformableSender::filter (line 142) ... ok [INFO] [stdout] test src/mpsc.rs - mpsc::channel (line 27) ... ok [INFO] [stdout] test src/mpsc.rs - mpsc::TransformableSender::tie (line 223) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.62s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "4a9400be49cd6f7d28d5358a8fc0df096c6fd3d6e6591cc096c1a9832baaebbf", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "4a9400be49cd6f7d28d5358a8fc0df096c6fd3d6e6591cc096c1a9832baaebbf", kill_on_drop: false }` [INFO] [stdout] 4a9400be49cd6f7d28d5358a8fc0df096c6fd3d6e6591cc096c1a9832baaebbf