[INFO] fetching crate mapreduce 0.1.0...
[INFO] checking mapreduce-0.1.0 against 4fcf39725a9c99bd495d8c73af83628a256ff9a9 for pr-162233-crater-rollup
[INFO] extracting crate mapreduce 0.1.0 into /workspace/builds/worker-5-tc1/source
[INFO] started tweaking crates.io crate mapreduce 0.1.0
[INFO] finished tweaking crates.io crate mapreduce 0.1.0
[INFO] tweaked toml for crates.io crate mapreduce 0.1.0 written to /workspace/builds/worker-5-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate mapreduce 0.1.0 on toolchain 4fcf39725a9c99bd495d8c73af83628a256ff9a9
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+4fcf39725a9c99bd495d8c73af83628a256ff9a9" "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" "+4fcf39725a9c99bd495d8c73af83628a256ff9a9" "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" "+4fcf39725a9c99bd495d8c73af83628a256ff9a9" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,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" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:8683fc1fc2eb5c9ac98e0d076ab094b2ffac7f99da555d2b6a2e27f346de2ec7" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174
[INFO] running `Command { std: "docker" "start" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174" "/opt/rustwide/cargo-home/bin/cargo" "+4fcf39725a9c99bd495d8c73af83628a256ff9a9" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174" "/opt/rustwide/cargo-home/bin/cargo" "+4fcf39725a9c99bd495d8c73af83628a256ff9a9" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]     Checking mapreduce v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stdout]   --> src/mapreduce.rs:11:43
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub type MapFunc<T> = fn(item: T, writer: Writer);
[INFO] [stdout]    |                                           ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2021/warnings-promoted-to-error.html>
[INFO] [stdout]    = note: `#[warn(bare_trait_objects)]` (part of `#[warn(rust_2021_compatibility)]`) on by default
[INFO] [stdout] help: if this is a dyn-compatible trait, use `dyn`
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub type MapFunc<T> = fn(item: T, writer: dyn Writer);
[INFO] [stdout]    |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stdout]   --> src/mapreduce.rs:13:46
[INFO] [stdout]    |
[INFO] [stdout] 13 | pub type MapperFunc<T> = fn(item: T, writer: Writer, cancel: fn(Error));
[INFO] [stdout]    |                                              ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2021/warnings-promoted-to-error.html>
[INFO] [stdout] help: if this is a dyn-compatible trait, use `dyn`
[INFO] [stdout]    |
[INFO] [stdout] 13 | pub type MapperFunc<T> = fn(item: T, writer: dyn Writer, cancel: fn(Error));
[INFO] [stdout]    |                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stdout]   --> src/mapreduce.rs:14:55
[INFO] [stdout]    |
[INFO] [stdout] 14 | pub type ReducerFunc<T> = fn(pipe: Sender<T>, writer: Writer, cancel: fn(Error));
[INFO] [stdout]    |                                                       ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2021/warnings-promoted-to-error.html>
[INFO] [stdout] help: if this is a dyn-compatible trait, use `dyn`
[INFO] [stdout]    |
[INFO] [stdout] 14 | pub type ReducerFunc<T> = fn(pipe: Sender<T>, writer: dyn Writer, cancel: fn(Error));
[INFO] [stdout]    |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stdout]   --> src/mapreduce.rs:11:43
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub type MapFunc<T> = fn(item: T, writer: Writer);
[INFO] [stdout]    |                                           ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2021/warnings-promoted-to-error.html>
[INFO] [stdout]    = note: `#[warn(bare_trait_objects)]` (part of `#[warn(rust_2021_compatibility)]`) on by default
[INFO] [stdout] help: if this is a dyn-compatible trait, use `dyn`
[INFO] [stdout]    |
[INFO] [stdout] 11 | pub type MapFunc<T> = fn(item: T, writer: dyn Writer);
[INFO] [stdout]    |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stdout]   --> src/mapreduce.rs:13:46
[INFO] [stdout]    |
[INFO] [stdout] 13 | pub type MapperFunc<T> = fn(item: T, writer: Writer, cancel: fn(Error));
[INFO] [stdout]    |                                              ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2021/warnings-promoted-to-error.html>
[INFO] [stdout] help: if this is a dyn-compatible trait, use `dyn`
[INFO] [stdout]    |
[INFO] [stdout] 13 | pub type MapperFunc<T> = fn(item: T, writer: dyn Writer, cancel: fn(Error));
[INFO] [stdout]    |                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stdout]   --> src/mapreduce.rs:14:55
[INFO] [stdout]    |
[INFO] [stdout] 14 | pub type ReducerFunc<T> = fn(pipe: Sender<T>, writer: Writer, cancel: fn(Error));
[INFO] [stdout]    |                                                       ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021!
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2021/warnings-promoted-to-error.html>
[INFO] [stdout] help: if this is a dyn-compatible trait, use `dyn`
[INFO] [stdout]    |
[INFO] [stdout] 14 | pub type ReducerFunc<T> = fn(pipe: Sender<T>, writer: dyn Writer, cancel: fn(Error));
[INFO] [stdout]    |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `ch`
[INFO] [stdout]   --> src/mapreduce.rs:27:13
[INFO] [stdout]    |
[INFO] [stdout] 27 | fn drain<T>(ch:Receiver<T>){
[INFO] [stdout]    |             ^^ help: if this is intentional, prefix it with an underscore: `_ch`
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `ch`
[INFO] [stdout]   --> src/mapreduce.rs:27:13
[INFO] [stdout]    |
[INFO] [stdout] 27 | fn drain<T>(ch:Receiver<T>){
[INFO] [stdout]    |             ^^ help: if this is intentional, prefix it with an underscore: `_ch`
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: type `MapReduceOption` is more private than the item `mapreduce::Option`
[INFO] [stdout]   --> src/mapreduce.rs:16:1
[INFO] [stdout]    |
[INFO] [stdout] 16 | pub type Option = fn(opts: &mut MapReduceOption);
[INFO] [stdout]    | ^^^^^^^^^^^^^^^ type alias `mapreduce::Option` is reachable at visibility `pub`
[INFO] [stdout]    |
[INFO] [stdout] note: but type `MapReduceOption` is only usable at visibility `pub(self)`
[INFO] [stdout]   --> src/mapreduce.rs:23:1
[INFO] [stdout]    |
[INFO] [stdout] 23 | struct MapReduceOption {
[INFO] [stdout]    | ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    = note: `#[warn(private_interfaces)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: field `worker` is never read
[INFO] [stdout]   --> src/mapreduce.rs:24:5
[INFO] [stdout]    |
[INFO] [stdout] 23 | struct MapReduceOption {
[INFO] [stdout]    |        --------------- field in this struct
[INFO] [stdout] 24 |     worker: i32
[INFO] [stdout]    |     ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `MapReduceOption` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
[INFO] [stdout]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: type `MapReduceOption` is more private than the item `mapreduce::Option`
[INFO] [stdout]   --> src/mapreduce.rs:16:1
[INFO] [stdout]    |
[INFO] [stdout] 16 | pub type Option = fn(opts: &mut MapReduceOption);
[INFO] [stdout]    | ^^^^^^^^^^^^^^^ type alias `mapreduce::Option` is reachable at visibility `pub`
[INFO] [stdout]    |
[INFO] [stdout] note: but type `MapReduceOption` is only usable at visibility `pub(self)`
[INFO] [stdout]   --> src/mapreduce.rs:23:1
[INFO] [stdout]    |
[INFO] [stdout] 23 | struct MapReduceOption {
[INFO] [stdout]    | ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    = note: `#[warn(private_interfaces)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: field `worker` is never read
[INFO] [stdout]   --> src/mapreduce.rs:24:5
[INFO] [stdout]    |
[INFO] [stdout] 23 | struct MapReduceOption {
[INFO] [stdout]    |        --------------- field in this struct
[INFO] [stdout] 24 |     worker: i32
[INFO] [stdout]    |     ^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `MapReduceOption` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
[INFO] [stdout]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `drain` is never used
[INFO] [stdout]   --> src/mapreduce.rs:27:4
[INFO] [stdout]    |
[INFO] [stdout] 27 | fn drain<T>(ch:Receiver<T>){
[INFO] [stdout]    |    ^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `drain` is never used
[INFO] [stdout]   --> src/mapreduce.rs:27:4
[INFO] [stdout]    |
[INFO] [stdout] 27 | fn drain<T>(ch:Receiver<T>){
[INFO] [stdout]    |    ^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.14s
[INFO] running `Command { std: "docker" "inspect" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174", kill_on_drop: false }`
[INFO] [stdout] 6aa7e7a1d8cd6f839c6df43bcff2a6ad3101bf963fbdba8878136dda24e78174
