[INFO] fetching crate prefixopt 0.4.0... [INFO] testing prefixopt-0.4.0 against 1.60.0 for beta-1.61-1 [INFO] extracting crate prefixopt 0.4.0 into /workspace/builds/worker-45/source [INFO] validating manifest of crates.io crate prefixopt 0.4.0 on toolchain 1.60.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate prefixopt 0.4.0 [INFO] finished tweaking crates.io crate prefixopt 0.4.0 [INFO] tweaked toml for crates.io crate prefixopt 0.4.0 written to /workspace/builds/worker-45/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "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-45/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/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" "+1.60.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] d3775d745cf8a082479fc53a60b7dc974449912053234fe2bfea9661956b6257 [INFO] running `Command { std: "docker" "start" "-a" "d3775d745cf8a082479fc53a60b7dc974449912053234fe2bfea9661956b6257", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "d3775d745cf8a082479fc53a60b7dc974449912053234fe2bfea9661956b6257", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "d3775d745cf8a082479fc53a60b7dc974449912053234fe2bfea9661956b6257", kill_on_drop: false }` [INFO] [stdout] d3775d745cf8a082479fc53a60b7dc974449912053234fe2bfea9661956b6257 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/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" "+1.60.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 023c03f3d1125931699af5c8481a0671d7ee72ad364fafd262954112d8278538 [INFO] running `Command { std: "docker" "start" "-a" "023c03f3d1125931699af5c8481a0671d7ee72ad364fafd262954112d8278538", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling libc v0.2.123 [INFO] [stderr] Compiling scopeguard v0.2.0 [INFO] [stderr] Compiling map_in_place v0.1.0 [INFO] [stderr] Compiling atty v0.2.14 [INFO] [stderr] Compiling clap v2.34.0 [INFO] [stderr] Compiling prefixopt v0.4.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:56:42 [INFO] [stdout] | [INFO] [stdout] 56 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 56 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 56 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:80:42 [INFO] [stdout] | [INFO] [stdout] 80 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 80 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 80 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:98:42 [INFO] [stdout] | [INFO] [stdout] 98 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 98 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 98 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/core.rs:15:42 [INFO] [stdout] | [INFO] [stdout] 15 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [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] 15 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [INFO] [stdout] 15 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/std_impl.rs:13:42 [INFO] [stdout] | [INFO] [stdout] 13 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 13 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 13 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/std_impl.rs:39:42 [INFO] [stdout] | [INFO] [stdout] 39 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 39 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 39 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/core.rs:9:69 [INFO] [stdout] | [INFO] [stdout] 9 | Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [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] 9 - Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [INFO] [stdout] 9 + Self::Container::concat_prefix(&ConcatRef::from(&prefix as &dyn Display)) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 7 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> bin/example_1.rs:53:42 [INFO] [stdout] | [INFO] [stdout] 53 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 53 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 53 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> bin/example_1.rs:68:42 [INFO] [stdout] | [INFO] [stdout] 68 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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 concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 68 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 13.51s [INFO] running `Command { std: "docker" "inspect" "023c03f3d1125931699af5c8481a0671d7ee72ad364fafd262954112d8278538", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "023c03f3d1125931699af5c8481a0671d7ee72ad364fafd262954112d8278538", kill_on_drop: false }` [INFO] [stdout] 023c03f3d1125931699af5c8481a0671d7ee72ad364fafd262954112d8278538 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/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" "+1.60.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 82a5b768bd507b9d7b6d5a977f2277fb1ec650f6c5e56c4ed4710126915003ed [INFO] running `Command { std: "docker" "start" "-a" "82a5b768bd507b9d7b6d5a977f2277fb1ec650f6c5e56c4ed4710126915003ed", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:56:42 [INFO] [stdout] | [INFO] [stdout] 56 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 56 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 56 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:80:42 [INFO] [stdout] | [INFO] [stdout] 80 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 80 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 80 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:98:42 [INFO] [stdout] | [INFO] [stdout] 98 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 98 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 98 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/core.rs:15:42 [INFO] [stdout] | [INFO] [stdout] 15 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [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] 15 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [INFO] [stdout] 15 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling prefixopt v0.4.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/std_impl.rs:13:42 [INFO] [stdout] | [INFO] [stdout] 13 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 13 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 13 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/std_impl.rs:39:42 [INFO] [stdout] | [INFO] [stdout] 39 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 39 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 39 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/core.rs:9:69 [INFO] [stdout] | [INFO] [stdout] 9 | Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [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] 9 - Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [INFO] [stdout] 9 + Self::Container::concat_prefix(&ConcatRef::from(&prefix as &dyn Display)) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 7 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> bin/example_1.rs:53:42 [INFO] [stdout] | [INFO] [stdout] 53 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 53 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 53 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> bin/example_1.rs:68:42 [INFO] [stdout] | [INFO] [stdout] 68 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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 concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 68 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> bin/example_1.rs:53:42 [INFO] [stdout] | [INFO] [stdout] 53 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 53 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 53 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> bin/example_1.rs:68:42 [INFO] [stdout] | [INFO] [stdout] 68 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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 concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 68 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:56:42 [INFO] [stdout] | [INFO] [stdout] 56 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 56 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 56 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:80:42 [INFO] [stdout] | [INFO] [stdout] 80 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 80 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 80 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/parsable.rs:98:42 [INFO] [stdout] | [INFO] [stdout] 98 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 98 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 98 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/core.rs:15:42 [INFO] [stdout] | [INFO] [stdout] 15 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [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] 15 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [INFO] [stdout] 15 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/std_impl.rs:13:42 [INFO] [stdout] | [INFO] [stdout] 13 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 13 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 13 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/std_impl.rs:39:42 [INFO] [stdout] | [INFO] [stdout] 39 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 39 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stdout] 39 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/core.rs:9:69 [INFO] [stdout] | [INFO] [stdout] 9 | Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [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] 9 - Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [INFO] [stdout] 9 + Self::Container::concat_prefix(&ConcatRef::from(&prefix as &dyn Display)) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 7 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 2.47s [INFO] running `Command { std: "docker" "inspect" "82a5b768bd507b9d7b6d5a977f2277fb1ec650f6c5e56c4ed4710126915003ed", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "82a5b768bd507b9d7b6d5a977f2277fb1ec650f6c5e56c4ed4710126915003ed", kill_on_drop: false }` [INFO] [stdout] 82a5b768bd507b9d7b6d5a977f2277fb1ec650f6c5e56c4ed4710126915003ed [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-45/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" "+1.60.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] e2c4d7355580bbc28d63dce52b201f69057f122862bf4efbb78790396cab0249 [INFO] running `Command { std: "docker" "start" "-a" "e2c4d7355580bbc28d63dce52b201f69057f122862bf4efbb78790396cab0249", kill_on_drop: false }` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parsable.rs:56:42 [INFO] [stderr] | [INFO] [stderr] 56 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 56 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 56 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parsable.rs:80:42 [INFO] [stderr] | [INFO] [stderr] 80 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 80 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 80 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parsable.rs:98:42 [INFO] [stderr] | [INFO] [stderr] 98 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 98 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 98 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/core.rs:15:42 [INFO] [stderr] | [INFO] [stderr] 15 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [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] 15 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self; [INFO] [stderr] 15 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/std_impl.rs:13:42 [INFO] [stderr] | [INFO] [stderr] 13 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 13 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 13 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/std_impl.rs:39:42 [INFO] [stderr] | [INFO] [stderr] 39 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 39 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 39 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/core.rs:9:69 [INFO] [stderr] | [INFO] [stderr] 9 | Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [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] 9 - Self::Container::concat_prefix(&ConcatRef::from(&prefix as &Display)) [INFO] [stderr] 9 + Self::Container::concat_prefix(&ConcatRef::from(&prefix as &dyn Display)) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `prefixopt` (lib) generated 7 warnings [INFO] [stderr] warning: `prefixopt` (lib test) generated 7 warnings (7 duplicates) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> bin/example_1.rs:53:42 [INFO] [stderr] | [INFO] [stderr] 53 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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] 53 - fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 53 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> bin/example_1.rs:68:42 [INFO] [stderr] | [INFO] [stderr] 68 | fn concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [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 concat_prefix(prefix: &ConcatRef<&Display>) -> Self { [INFO] [stderr] 68 + fn concat_prefix(prefix: &ConcatRef<&dyn Display>) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `prefixopt` (bin "example_1") generated 2 warnings [INFO] [stderr] warning: `prefixopt` (bin "example_1" test) generated 2 warnings (2 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.05s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/prefixopt-7541704995ebfabe) [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/example_1-3ff1f905adec478c) [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [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] [stdout] [INFO] [stderr] Running tests/stdlib.rs (/opt/rustwide/target/debug/deps/stdlib-1885369df603ccfb) [INFO] [stdout] running 4 tests [INFO] [stderr] Doc-tests prefixopt [INFO] [stdout] test test_option_none ... ok [INFO] [stdout] test test_box ... ok [INFO] [stdout] test test_option_some ... ok [INFO] [stdout] test test_box_no_opt ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [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] running `Command { std: "docker" "inspect" "e2c4d7355580bbc28d63dce52b201f69057f122862bf4efbb78790396cab0249", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e2c4d7355580bbc28d63dce52b201f69057f122862bf4efbb78790396cab0249", kill_on_drop: false }` [INFO] [stdout] e2c4d7355580bbc28d63dce52b201f69057f122862bf4efbb78790396cab0249