[INFO] fetching crate crux 0.3.0... [INFO] testing crux-0.3.0 against beta-2022-02-22 for beta-1.60-1 [INFO] extracting crate crux 0.3.0 into /workspace/builds/worker-80/source [INFO] validating manifest of crates.io crate crux 0.3.0 on toolchain beta-2022-02-22 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate crux 0.3.0 [INFO] finished tweaking crates.io crate crux 0.3.0 [INFO] tweaked toml for crates.io crate crux 0.3.0 written to /workspace/builds/worker-80/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "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-02-22" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/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:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-02-22" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] f29413ae06ed04ee752316fc10a25cb6d92a5f01d0098343540a0f5a180503c3 [INFO] running `Command { std: "docker" "start" "-a" "f29413ae06ed04ee752316fc10a25cb6d92a5f01d0098343540a0f5a180503c3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "f29413ae06ed04ee752316fc10a25cb6d92a5f01d0098343540a0f5a180503c3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f29413ae06ed04ee752316fc10a25cb6d92a5f01d0098343540a0f5a180503c3", kill_on_drop: false }` [INFO] [stdout] f29413ae06ed04ee752316fc10a25cb6d92a5f01d0098343540a0f5a180503c3 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/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:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-02-22" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] cf1c94c99fface6f815d19a9d0cdadb3830090f16a5657008d4ab5b7ef45af10 [INFO] running `Command { std: "docker" "start" "-a" "cf1c94c99fface6f815d19a9d0cdadb3830090f16a5657008d4ab5b7ef45af10", kill_on_drop: false }` [INFO] [stderr] Compiling crux v0.3.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/store.rs:10:40 [INFO] [stdout] | [INFO] [stdout] 10 | type ArcMutexMiddleware = Arc + Send + Sync + '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] 10 - type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stdout] 10 + type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/middleware.rs:5:61 [INFO] [stdout] | [INFO] [stdout] 5 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [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] 5 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [INFO] [stdout] 5 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(T::Action), action: T::Action); [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 0.69s [INFO] running `Command { std: "docker" "inspect" "cf1c94c99fface6f815d19a9d0cdadb3830090f16a5657008d4ab5b7ef45af10", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "cf1c94c99fface6f815d19a9d0cdadb3830090f16a5657008d4ab5b7ef45af10", kill_on_drop: false }` [INFO] [stdout] cf1c94c99fface6f815d19a9d0cdadb3830090f16a5657008d4ab5b7ef45af10 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/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:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-02-22" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 9408be22b08bf95b8832175f3bea5049ea869705d982ca53d4b4452756c03365 [INFO] running `Command { std: "docker" "start" "-a" "9408be22b08bf95b8832175f3bea5049ea869705d982ca53d4b4452756c03365", kill_on_drop: false }` [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/store.rs:10:40 [INFO] [stdout] | [INFO] [stdout] 10 | type ArcMutexMiddleware = Arc + Send + Sync + '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] 10 - type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stdout] 10 + type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling crux v0.3.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/middleware.rs:5:61 [INFO] [stdout] | [INFO] [stdout] 5 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [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] 5 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [INFO] [stdout] 5 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(T::Action), action: T::Action); [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] --> src/store.rs:10:40 [INFO] [stdout] | [INFO] [stdout] 10 | type ArcMutexMiddleware = Arc + Send + Sync + '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] 10 - type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stdout] 10 + type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/middleware.rs:5:61 [INFO] [stdout] | [INFO] [stdout] 5 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [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] 5 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [INFO] [stdout] 5 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(T::Action), action: T::Action); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> tests/lib.rs:35:69 [INFO] [stdout] | [INFO] [stdout] 35 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [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] 35 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [INFO] [stdout] 35 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(TestAction), action: TestAction) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> tests/lib.rs:57:69 [INFO] [stdout] | [INFO] [stdout] 57 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [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] 57 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [INFO] [stdout] 57 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(TestAction), action: TestAction) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 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 1.44s [INFO] running `Command { std: "docker" "inspect" "9408be22b08bf95b8832175f3bea5049ea869705d982ca53d4b4452756c03365", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "9408be22b08bf95b8832175f3bea5049ea869705d982ca53d4b4452756c03365", kill_on_drop: false }` [INFO] [stdout] 9408be22b08bf95b8832175f3bea5049ea869705d982ca53d4b4452756c03365 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-80/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:0cd99ca24d8e8c98e67c542213511d985b8778b5bdcbb160e038429496686047" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-02-22" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 21123ab422d4d018c8ec8291f27cefe4c3f4c657e26f210da299492ed5a66129 [INFO] running `Command { std: "docker" "start" "-a" "21123ab422d4d018c8ec8291f27cefe4c3f4c657e26f210da299492ed5a66129", kill_on_drop: false }` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/store.rs:10:40 [INFO] [stderr] | [INFO] [stderr] 10 | type ArcMutexMiddleware = Arc + Send + Sync + '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] 10 - type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stderr] 10 + type ArcMutexMiddleware = Arc + Send + Sync + 'static>>; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/middleware.rs:5:61 [INFO] [stderr] | [INFO] [stderr] 5 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [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] 5 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(T::Action), action: T::Action); [INFO] [stderr] 5 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(T::Action), action: T::Action); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `crux` (lib) generated 2 warnings [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/lib.rs:35:69 [INFO] [stderr] | [INFO] [stderr] 35 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [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] 35 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [INFO] [stderr] 35 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(TestAction), action: TestAction) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/lib.rs:57:69 [INFO] [stderr] | [INFO] [stderr] 57 | fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [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] 57 - fn dispatch(&mut self, store: &mut Store, next: &mut FnMut(TestAction), action: TestAction) { [INFO] [stderr] 57 + fn dispatch(&mut self, store: &mut Store, next: &mut dyn FnMut(TestAction), action: TestAction) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `crux` (lib test) generated 2 warnings (2 duplicates) [INFO] [stderr] warning: `crux` (test "lib") generated 2 warnings [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.24s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/crux-a6a8e82b05857800) [INFO] [stdout] [INFO] [stderr] Running tests/lib.rs (/opt/rustwide/target/debug/deps/lib-77396fa5dd956e8f) [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] [stdout] running 2 tests [INFO] [stdout] test example_async ... ok [INFO] [stdout] test example_sync ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.08s [INFO] [stdout] [INFO] [stderr] Doc-tests crux [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" "21123ab422d4d018c8ec8291f27cefe4c3f4c657e26f210da299492ed5a66129", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "21123ab422d4d018c8ec8291f27cefe4c3f4c657e26f210da299492ed5a66129", kill_on_drop: false }` [INFO] [stdout] 21123ab422d4d018c8ec8291f27cefe4c3f4c657e26f210da299492ed5a66129