[INFO] fetching crate rudoku-core 0.1.0... [INFO] testing rudoku-core-0.1.0 against beta-2022-02-22 for beta-1.60-1 [INFO] extracting crate rudoku-core 0.1.0 into /workspace/builds/worker-10/source [INFO] validating manifest of crates.io crate rudoku-core 0.1.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 rudoku-core 0.1.0 [INFO] finished tweaking crates.io crate rudoku-core 0.1.0 [INFO] tweaked toml for crates.io crate rudoku-core 0.1.0 written to /workspace/builds/worker-10/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] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-02-22" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] 3087fdbf73b895c7542f13a0b68e235c07d5462eaa30b1e4cd65ed7a083796d5 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "3087fdbf73b895c7542f13a0b68e235c07d5462eaa30b1e4cd65ed7a083796d5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "3087fdbf73b895c7542f13a0b68e235c07d5462eaa30b1e4cd65ed7a083796d5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3087fdbf73b895c7542f13a0b68e235c07d5462eaa30b1e4cd65ed7a083796d5", kill_on_drop: false }` [INFO] [stdout] 3087fdbf73b895c7542f13a0b68e235c07d5462eaa30b1e4cd65ed7a083796d5 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 68cbb558489bcb8c5520111adcca85fc708701e8953f384cf154d6a25e616a12 [INFO] running `Command { std: "docker" "start" "-a" "68cbb558489bcb8c5520111adcca85fc708701e8953f384cf154d6a25e616a12", kill_on_drop: false }` [INFO] [stderr] Compiling itertools v0.9.0 [INFO] [stderr] Compiling rudoku-core v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/sudoku/mod.rs:37:20 [INFO] [stdout] | [INFO] [stdout] 37 | panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [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] 37 - panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [INFO] [stdout] 37 + panic!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/sudoku/mod.rs:39:20 [INFO] [stdout] | [INFO] [stdout] 39 | panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [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] 39 - panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [INFO] [stdout] 39 + panic!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n) [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 3.00s [INFO] running `Command { std: "docker" "inspect" "68cbb558489bcb8c5520111adcca85fc708701e8953f384cf154d6a25e616a12", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "68cbb558489bcb8c5520111adcca85fc708701e8953f384cf154d6a25e616a12", kill_on_drop: false }` [INFO] [stdout] 68cbb558489bcb8c5520111adcca85fc708701e8953f384cf154d6a25e616a12 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] 2b611ae09f8004023e929239ffb771d0c94ca74b1359d49d4a2ade6e3f9abec8 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "2b611ae09f8004023e929239ffb771d0c94ca74b1359d49d4a2ade6e3f9abec8", kill_on_drop: false }` [INFO] [stderr] Compiling rudoku-core v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/sudoku/mod.rs:37:20 [INFO] [stdout] | [INFO] [stdout] 37 | panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [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] 37 - panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [INFO] [stdout] 37 + panic!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/sudoku/mod.rs:39:20 [INFO] [stdout] | [INFO] [stdout] 39 | panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [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] 39 - panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [INFO] [stdout] 39 + panic!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n) [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/sudoku/mod.rs:37:20 [INFO] [stdout] | [INFO] [stdout] 37 | panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [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] 37 - panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [INFO] [stdout] 37 + panic!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/sudoku/mod.rs:39:20 [INFO] [stdout] | [INFO] [stdout] 39 | panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [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] 39 - panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [INFO] [stdout] 39 + panic!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n) [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 2.79s [INFO] running `Command { std: "docker" "inspect" "2b611ae09f8004023e929239ffb771d0c94ca74b1359d49d4a2ade6e3f9abec8", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "2b611ae09f8004023e929239ffb771d0c94ca74b1359d49d4a2ade6e3f9abec8", kill_on_drop: false }` [INFO] [stdout] 2b611ae09f8004023e929239ffb771d0c94ca74b1359d49d4a2ade6e3f9abec8 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/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] ce01acba499fe1d3aded784634753c147d9f3336175bfe375b1d32a0b275cd72 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "ce01acba499fe1d3aded784634753c147d9f3336175bfe375b1d32a0b275cd72", kill_on_drop: false }` [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/sudoku/mod.rs:37:20 [INFO] [stderr] | [INFO] [stderr] 37 | panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [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] 37 - panic!(format!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n)); [INFO] [stderr] 37 + panic!("It is impossible to create a Sudoku with an unique solution, with less than 17 hints. Input was {} hints.", n); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/sudoku/mod.rs:39:20 [INFO] [stderr] | [INFO] [stderr] 39 | panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [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] 39 - panic!(format!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n)) [INFO] [stderr] 39 + panic!("Impossible to create a Sudoku with {} hints. A Sudoku has just 81 fields.", n) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `rudoku-core` (lib) generated 2 warnings [INFO] [stderr] warning: `rudoku-core` (lib test) generated 2 warnings (2 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.02s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/rudoku_core-390b4f40cd16aaba) [INFO] [stdout] [INFO] [stdout] running 25 tests [INFO] [stdout] test sudoku::sudoku_value::tests::from_i32 ... ok [INFO] [stdout] test sudoku::tests::check_false ... ok [INFO] [stdout] test sudoku::tests::get_column ... ok [INFO] [stdout] test sudoku::tests::get_row ... ok [INFO] [stdout] test sudoku::sudoku_value::tests::get_number_array ... ok [INFO] [stdout] test sudoku::tests::from_string ... ok [INFO] [stdout] test sudoku::tests::solved_false ... ok [INFO] [stdout] test util::tests::has_only_unique_elements_1 ... ok [INFO] [stdout] test sudoku::tests::get_square ... ok [INFO] [stdout] test sudoku::tests::count_9 ... ok [INFO] [stdout] test util::tests::has_only_unique_elements_3 ... ok [INFO] [stdout] test sudoku::tests::solved_true ... ok [INFO] [stdout] test util::tests::has_only_unique_elements_2 ... ok [INFO] [stdout] test sudoku::tests::count_other ... ok [INFO] [stdout] test sudoku::tests::check_true ... ok [INFO] [stdout] test sudoku::tests::decimate_81 ... ok [INFO] [stdout] test sudoku::sudoku_value::tests::iterator ... ok [INFO] [stdout] test sudoku::sudoku_value::tests::to_string ... ok [INFO] [stdout] test sudoku::tests::check_panic - should panic ... ok [INFO] [stdout] test sudoku::tests::decimate_16 - should panic ... ok [INFO] [stdout] test sudoku::tests::decimate_82 - should panic ... ok [INFO] [stdout] test sudoku::tests::solve ... ok [INFO] [stdout] test sudoku::tests::fill_random ... ok [INFO] [stdout] test sudoku::tests::fill_check ... ok [INFO] [stderr] Doc-tests rudoku-core [INFO] [stdout] test sudoku::tests::decimate_30 ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 25 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 13.27s [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" "ce01acba499fe1d3aded784634753c147d9f3336175bfe375b1d32a0b275cd72", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ce01acba499fe1d3aded784634753c147d9f3336175bfe375b1d32a0b275cd72", kill_on_drop: false }` [INFO] [stdout] ce01acba499fe1d3aded784634753c147d9f3336175bfe375b1d32a0b275cd72