[INFO] fetching crate metrics-facade 0.1.1... [INFO] building metrics-facade-0.1.1 against try#615edd3ad1cf6871c977dc900317cb6c2070fd6b for pr-97334 [INFO] extracting crate metrics-facade 0.1.1 into /workspace/builds/worker-39/source [INFO] validating manifest of crates.io crate metrics-facade 0.1.1 on toolchain 615edd3ad1cf6871c977dc900317cb6c2070fd6b [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+615edd3ad1cf6871c977dc900317cb6c2070fd6b" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate metrics-facade 0.1.1 [INFO] finished tweaking crates.io crate metrics-facade 0.1.1 [INFO] tweaked toml for crates.io crate metrics-facade 0.1.1 written to /workspace/builds/worker-39/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+615edd3ad1cf6871c977dc900317cb6c2070fd6b" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+615edd3ad1cf6871c977dc900317cb6c2070fd6b" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-39/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-39/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:ac0d0aa6ec8ed129e241004a6179c99fa0d2616f50ba759c5b60bd26d0fafa02" "/opt/rustwide/cargo-home/bin/cargo" "+615edd3ad1cf6871c977dc900317cb6c2070fd6b" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 53654f954f28ce7cb2b6930ec5c631910f6d5a299b47995bf82c8d346f4bade6 [INFO] running `Command { std: "docker" "start" "-a" "53654f954f28ce7cb2b6930ec5c631910f6d5a299b47995bf82c8d346f4bade6", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "53654f954f28ce7cb2b6930ec5c631910f6d5a299b47995bf82c8d346f4bade6", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "53654f954f28ce7cb2b6930ec5c631910f6d5a299b47995bf82c8d346f4bade6", kill_on_drop: false }` [INFO] [stdout] 53654f954f28ce7cb2b6930ec5c631910f6d5a299b47995bf82c8d346f4bade6 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-39/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-39/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=forbid" "-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:ac0d0aa6ec8ed129e241004a6179c99fa0d2616f50ba759c5b60bd26d0fafa02" "/opt/rustwide/cargo-home/bin/cargo" "+615edd3ad1cf6871c977dc900317cb6c2070fd6b" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 51af5e9c0c7906e65b358f15ac825ccf3206581e8dcccb7b427e0b23a2dbea53 [INFO] running `Command { std: "docker" "start" "-a" "51af5e9c0c7906e65b358f15ac825ccf3206581e8dcccb7b427e0b23a2dbea53", kill_on_drop: false }` [INFO] [stderr] Compiling metrics-facade v0.1.1 (/opt/rustwide/workdir) [INFO] [stderr] Compiling futures v0.1.31 [INFO] [stderr] Compiling metrics-core v0.4.0 [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:157:31 [INFO] [stdout] | [INFO] [stdout] 157 | static mut RECORDER: &'static Recorder = &NoopRecorder; [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 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 157 - static mut RECORDER: &'static Recorder = &NoopRecorder; [INFO] [stdout] 157 + static mut RECORDER: &'static dyn Recorder = &NoopRecorder; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:216:40 [INFO] [stdout] | [INFO] [stdout] 216 | pub fn set_recorder(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 216 - pub fn set_recorder(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] 216 + pub fn set_recorder(recorder: &'static dyn Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:239:29 [INFO] [stdout] | [INFO] [stdout] 239 | F: FnOnce() -> &'static Recorder, [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 239 - F: FnOnce() -> &'static Recorder, [INFO] [stdout] 239 + F: FnOnce() -> &'static dyn Recorder, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:274:52 [INFO] [stdout] | [INFO] [stdout] 274 | pub unsafe fn set_recorder_racy(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 274 - pub unsafe fn set_recorder_racy(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] 274 + pub unsafe fn set_recorder_racy(recorder: &'static dyn Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:310:31 [INFO] [stdout] | [INFO] [stdout] 310 | pub fn recorder() -> &'static Recorder { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 310 - pub fn recorder() -> &'static Recorder { [INFO] [stdout] 310 + pub fn recorder() -> &'static dyn Recorder { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::sync::atomic::AtomicUsize::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead [INFO] [stdout] --> src/lib.rs:242:21 [INFO] [stdout] | [INFO] [stdout] 242 | match STATE.compare_and_swap(UNINITIALIZED, INITIALIZING, Ordering::SeqCst) { [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 6 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 2.56s [INFO] running `Command { std: "docker" "inspect" "51af5e9c0c7906e65b358f15ac825ccf3206581e8dcccb7b427e0b23a2dbea53", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "51af5e9c0c7906e65b358f15ac825ccf3206581e8dcccb7b427e0b23a2dbea53", kill_on_drop: false }` [INFO] [stdout] 51af5e9c0c7906e65b358f15ac825ccf3206581e8dcccb7b427e0b23a2dbea53 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-39/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-39/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=forbid" "-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:ac0d0aa6ec8ed129e241004a6179c99fa0d2616f50ba759c5b60bd26d0fafa02" "/opt/rustwide/cargo-home/bin/cargo" "+615edd3ad1cf6871c977dc900317cb6c2070fd6b" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 493a5ef642eefaf7723a33a4e6891691e19e789d69e8840a59b1bf2c4a5f15fa [INFO] running `Command { std: "docker" "start" "-a" "493a5ef642eefaf7723a33a4e6891691e19e789d69e8840a59b1bf2c4a5f15fa", kill_on_drop: false }` [INFO] [stderr] Compiling log v0.4.17 [INFO] [stderr] Compiling cfg-if v1.0.0 [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:157:31 [INFO] [stdout] | [INFO] [stdout] 157 | static mut RECORDER: &'static Recorder = &NoopRecorder; [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 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 157 - static mut RECORDER: &'static Recorder = &NoopRecorder; [INFO] [stdout] 157 + static mut RECORDER: &'static dyn Recorder = &NoopRecorder; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:216:40 [INFO] [stdout] | [INFO] [stdout] 216 | pub fn set_recorder(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 216 - pub fn set_recorder(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] 216 + pub fn set_recorder(recorder: &'static dyn Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:239:29 [INFO] [stdout] | [INFO] [stdout] 239 | F: FnOnce() -> &'static Recorder, [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 239 - F: FnOnce() -> &'static Recorder, [INFO] [stdout] 239 + F: FnOnce() -> &'static dyn Recorder, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:274:52 [INFO] [stdout] | [INFO] [stdout] 274 | pub unsafe fn set_recorder_racy(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 274 - pub unsafe fn set_recorder_racy(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] 274 + pub unsafe fn set_recorder_racy(recorder: &'static dyn Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:310:31 [INFO] [stdout] | [INFO] [stdout] 310 | pub fn recorder() -> &'static Recorder { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 310 - pub fn recorder() -> &'static Recorder { [INFO] [stdout] 310 + pub fn recorder() -> &'static dyn Recorder { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::sync::atomic::AtomicUsize::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead [INFO] [stdout] --> src/lib.rs:242:21 [INFO] [stdout] | [INFO] [stdout] 242 | match STATE.compare_and_swap(UNINITIALIZED, INITIALIZING, Ordering::SeqCst) { [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 6 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling metrics-facade v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:157:31 [INFO] [stdout] | [INFO] [stdout] 157 | static mut RECORDER: &'static Recorder = &NoopRecorder; [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 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 157 - static mut RECORDER: &'static Recorder = &NoopRecorder; [INFO] [stdout] 157 + static mut RECORDER: &'static dyn Recorder = &NoopRecorder; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:216:40 [INFO] [stdout] | [INFO] [stdout] 216 | pub fn set_recorder(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 216 - pub fn set_recorder(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] 216 + pub fn set_recorder(recorder: &'static dyn Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:239:29 [INFO] [stdout] | [INFO] [stdout] 239 | F: FnOnce() -> &'static Recorder, [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 239 - F: FnOnce() -> &'static Recorder, [INFO] [stdout] 239 + F: FnOnce() -> &'static dyn Recorder, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:274:52 [INFO] [stdout] | [INFO] [stdout] 274 | pub unsafe fn set_recorder_racy(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 274 - pub unsafe fn set_recorder_racy(recorder: &'static Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] 274 + pub unsafe fn set_recorder_racy(recorder: &'static dyn Recorder) -> Result<(), SetRecorderError> { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:310:31 [INFO] [stdout] | [INFO] [stdout] 310 | pub fn recorder() -> &'static Recorder { [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 [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 310 - pub fn recorder() -> &'static Recorder { [INFO] [stdout] 310 + pub fn recorder() -> &'static dyn Recorder { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::sync::atomic::AtomicUsize::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead [INFO] [stdout] --> src/lib.rs:242:21 [INFO] [stdout] | [INFO] [stdout] 242 | match STATE.compare_and_swap(UNINITIALIZED, INITIALIZING, Ordering::SeqCst) { [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 6 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 1.60s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/metrics_facade-3eaa92398eb20db1) [ERROR] error running command: no output for 300 seconds [INFO] running `Command { std: "docker" "inspect" "493a5ef642eefaf7723a33a4e6891691e19e789d69e8840a59b1bf2c4a5f15fa", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "493a5ef642eefaf7723a33a4e6891691e19e789d69e8840a59b1bf2c4a5f15fa", kill_on_drop: false }` [INFO] [stdout] 493a5ef642eefaf7723a33a4e6891691e19e789d69e8840a59b1bf2c4a5f15fa