[INFO] fetching crate shifted_vec 0.1.2... [INFO] testing shifted_vec-0.1.2 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate shifted_vec 0.1.2 into /workspace/builds/worker-6/source [INFO] validating manifest of crates.io crate shifted_vec 0.1.2 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 shifted_vec 0.1.2 [INFO] finished tweaking crates.io crate shifted_vec 0.1.2 [INFO] tweaked toml for crates.io crate shifted_vec 0.1.2 written to /workspace/builds/worker-6/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] 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-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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] 47b11edf8fe087bb5285b0f5a6875834695084ffa3fa40857c5ac731d637d257 [INFO] running `Command { std: "docker" "start" "-a" "47b11edf8fe087bb5285b0f5a6875834695084ffa3fa40857c5ac731d637d257", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "47b11edf8fe087bb5285b0f5a6875834695084ffa3fa40857c5ac731d637d257", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "47b11edf8fe087bb5285b0f5a6875834695084ffa3fa40857c5ac731d637d257", kill_on_drop: false }` [INFO] [stdout] 47b11edf8fe087bb5285b0f5a6875834695084ffa3fa40857c5ac731d637d257 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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] 25315075276e98f6597b5573d6d7c80a788ad72951a0f1d4a5c396d11ef78294 [INFO] running `Command { std: "docker" "start" "-a" "25315075276e98f6597b5573d6d7c80a788ad72951a0f1d4a5c396d11ef78294", kill_on_drop: false }` [INFO] [stderr] Compiling shifted_vec v0.1.2 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:241:28 [INFO] [stdout] | [INFO] [stdout] 241 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 241 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] 241 + None => panic!("out of bounds access {}", i), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:250:28 [INFO] [stdout] | [INFO] [stdout] 250 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 250 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] 250 + None => panic!("out of bounds access {}", i), [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.56s [INFO] running `Command { std: "docker" "inspect" "25315075276e98f6597b5573d6d7c80a788ad72951a0f1d4a5c396d11ef78294", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "25315075276e98f6597b5573d6d7c80a788ad72951a0f1d4a5c396d11ef78294", kill_on_drop: false }` [INFO] [stdout] 25315075276e98f6597b5573d6d7c80a788ad72951a0f1d4a5c396d11ef78294 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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] c6889c0706809e940c72cff8582e72549206e3ea3c915d6585f34dd80b495f5a [INFO] running `Command { std: "docker" "start" "-a" "c6889c0706809e940c72cff8582e72549206e3ea3c915d6585f34dd80b495f5a", kill_on_drop: false }` [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:241:28 [INFO] [stdout] | [INFO] [stdout] 241 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 241 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] 241 + None => panic!("out of bounds access {}", i), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling shifted_vec v0.1.2 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:250:28 [INFO] [stdout] | [INFO] [stdout] 250 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 250 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] 250 + None => panic!("out of bounds access {}", i), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:241:28 [INFO] [stdout] | [INFO] [stdout] 241 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 241 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] 241 + None => panic!("out of bounds access {}", i), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/lib.rs:250:28 [INFO] [stdout] | [INFO] [stdout] 250 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 250 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stdout] 250 + None => panic!("out of bounds access {}", i), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.60s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/shifted_vec-3860345aa0ac2e59) [INFO] running `Command { std: "docker" "inspect" "c6889c0706809e940c72cff8582e72549206e3ea3c915d6585f34dd80b495f5a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "c6889c0706809e940c72cff8582e72549206e3ea3c915d6585f34dd80b495f5a", kill_on_drop: false }` [INFO] [stdout] c6889c0706809e940c72cff8582e72549206e3ea3c915d6585f34dd80b495f5a [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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] bbbd4cb5f18813072232cf170a934c054bec9f912590cb989710b97e5e2ed575 [INFO] running `Command { std: "docker" "start" "-a" "bbbd4cb5f18813072232cf170a934c054bec9f912590cb989710b97e5e2ed575", kill_on_drop: false }` [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/lib.rs:241:28 [INFO] [stderr] | [INFO] [stderr] 241 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 241 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stderr] 241 + None => panic!("out of bounds access {}", i), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/lib.rs:250:28 [INFO] [stderr] | [INFO] [stderr] 250 | None => panic!(format!("out of bounds access {}", i)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the panic!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 250 - None => panic!(format!("out of bounds access {}", i)), [INFO] [stderr] 250 + None => panic!("out of bounds access {}", i), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `shifted_vec` (lib) generated 2 warnings [INFO] [stderr] warning: `shifted_vec` (lib test) generated 2 warnings (2 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/shifted_vec-3860345aa0ac2e59) [INFO] [stdout] [INFO] [stdout] running 12 tests [INFO] [stdout] test tests::debug ... ok [INFO] [stdout] test tests::debug_pretty ... ok [INFO] [stdout] test tests::display ... ok [INFO] [stdout] test tests::half_shift ... ok [INFO] [stdout] test tests::half_shift_mut ... ok [INFO] [stdout] test tests::negative_shift ... ok [INFO] [stdout] test tests::normal ... ok [INFO] [stdout] test tests::out_of_bounds ... ok [INFO] [stdout] test tests::out_of_bounds_mut ... ok [INFO] [stdout] test tests::positive_shift ... ok [INFO] [stdout] test tests::out_of_bounds_panic - should panic ... ok [INFO] [stdout] test tests::out_of_bounds_panic_mut - should panic ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stderr] Doc-tests shifted_vec [INFO] [stdout] [INFO] [stdout] running 10 tests [INFO] [stdout] test src/lib.rs - (line 4) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::iter (line 138) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec (line 31) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::with_offset (line 51) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::with_offset_and_capacity (line 61) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::iter_shifted_mut (line 198) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::iter_mut (line 155) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::get_mut (line 108) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::push (line 84) ... ok [INFO] [stdout] test src/lib.rs - ShiftedVec::iter_shifted (line 177) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 10 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.37s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "bbbd4cb5f18813072232cf170a934c054bec9f912590cb989710b97e5e2ed575", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "bbbd4cb5f18813072232cf170a934c054bec9f912590cb989710b97e5e2ed575", kill_on_drop: false }` [INFO] [stdout] bbbd4cb5f18813072232cf170a934c054bec9f912590cb989710b97e5e2ed575