[INFO] cloning repository https://github.com/mpancia/aoc2020 [INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/mpancia/aoc2020" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmpancia%2Faoc2020", kill_on_drop: false }` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmpancia%2Faoc2020'... [INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }` [INFO] [stdout] 6044149ca9ec2dca214c7abb3daa07551db742ba [INFO] testing mpancia/aoc2020 against 1.59.0 for beta-1.60-1 [INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmpancia%2Faoc2020" "/workspace/builds/worker-3/source", kill_on_drop: false }` [INFO] [stderr] Cloning into '/workspace/builds/worker-3/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/mpancia/aoc2020 on toolchain 1.59.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.59.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking git repo https://github.com/mpancia/aoc2020 [INFO] finished tweaking git repo https://github.com/mpancia/aoc2020 [INFO] tweaked toml for git repo https://github.com/mpancia/aoc2020 written to /workspace/builds/worker-3/source/Cargo.toml [INFO] crate git repo https://github.com/mpancia/aoc2020 already has a lockfile, it will not be regenerated [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.59.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/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" "+1.59.0" "metadata" "--no-deps" "--format-version=1", 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] bdbfd75d6acf090a2cfeb7227c64be962260c8e3828752aed56499d2b0bb0359 [INFO] running `Command { std: "docker" "start" "-a" "bdbfd75d6acf090a2cfeb7227c64be962260c8e3828752aed56499d2b0bb0359", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "bdbfd75d6acf090a2cfeb7227c64be962260c8e3828752aed56499d2b0bb0359", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "bdbfd75d6acf090a2cfeb7227c64be962260c8e3828752aed56499d2b0bb0359", kill_on_drop: false }` [INFO] [stdout] bdbfd75d6acf090a2cfeb7227c64be962260c8e3828752aed56499d2b0bb0359 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/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" "+1.59.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] a0f7779310102462fb082d4796455a84255391cadb337e24764c110a8c22da37 [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" "a0f7779310102462fb082d4796455a84255391cadb337e24764c110a8c22da37", kill_on_drop: false }` [INFO] [stderr] Compiling parse v0.1.0 (/opt/rustwide/workdir/parse) [INFO] [stderr] Compiling itertools v0.9.0 [INFO] [stdout] warning: cannot borrow `count_dict` as mutable because it is also borrowed as immutable [INFO] [stdout] --> parse/src/day02.rs:17:22 [INFO] [stdout] | [INFO] [stdout] 15 | let curr_count = count_dict.get(&pass_char); [INFO] [stdout] | -------------------------- immutable borrow occurs here [INFO] [stdout] 16 | match curr_count.is_none() { [INFO] [stdout] 17 | false => count_dict.insert(pass_char, curr_count.unwrap() + 1), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------^^^^^^^^^^^^^^ [INFO] [stdout] | | | [INFO] [stdout] | | immutable borrow later used here [INFO] [stdout] | mutable borrow occurs here [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(mutable_borrow_reservation_conflict)]` on by default [INFO] [stdout] = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future [INFO] [stdout] = note: for more information, see issue #59159 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 1 warning emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling aoc2020 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 3.81s [INFO] running `Command { std: "docker" "inspect" "a0f7779310102462fb082d4796455a84255391cadb337e24764c110a8c22da37", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a0f7779310102462fb082d4796455a84255391cadb337e24764c110a8c22da37", kill_on_drop: false }` [INFO] [stdout] a0f7779310102462fb082d4796455a84255391cadb337e24764c110a8c22da37 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/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" "+1.59.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] a79dcc043d4e8afc9a320635a472fc195704da34937d6926277fd1c50ed0ccb2 [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" "a79dcc043d4e8afc9a320635a472fc195704da34937d6926277fd1c50ed0ccb2", kill_on_drop: false }` [INFO] [stderr] Compiling aoc2020 v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: cannot borrow `count_dict` as mutable because it is also borrowed as immutable [INFO] [stdout] --> parse/src/day02.rs:17:22 [INFO] [stdout] | [INFO] [stdout] 15 | let curr_count = count_dict.get(&pass_char); [INFO] [stdout] | -------------------------- immutable borrow occurs here [INFO] [stdout] 16 | match curr_count.is_none() { [INFO] [stdout] 17 | false => count_dict.insert(pass_char, curr_count.unwrap() + 1), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------^^^^^^^^^^^^^^ [INFO] [stdout] | | | [INFO] [stdout] | | immutable borrow later used here [INFO] [stdout] | mutable borrow occurs here [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(mutable_borrow_reservation_conflict)]` on by default [INFO] [stdout] = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future [INFO] [stdout] = note: for more information, see issue #59159 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 1 warning emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 1.35s [INFO] running `Command { std: "docker" "inspect" "a79dcc043d4e8afc9a320635a472fc195704da34937d6926277fd1c50ed0ccb2", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a79dcc043d4e8afc9a320635a472fc195704da34937d6926277fd1c50ed0ccb2", kill_on_drop: false }` [INFO] [stdout] a79dcc043d4e8afc9a320635a472fc195704da34937d6926277fd1c50ed0ccb2 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/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" "+1.59.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 86e2649b623476067d3b8fb1951ddc67b374496040a36d01d78ecb27a018acb6 [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" "86e2649b623476067d3b8fb1951ddc67b374496040a36d01d78ecb27a018acb6", kill_on_drop: false }` [INFO] [stderr] warning: cannot borrow `count_dict` as mutable because it is also borrowed as immutable [INFO] [stderr] --> parse/src/day02.rs:17:22 [INFO] [stderr] | [INFO] [stderr] 15 | let curr_count = count_dict.get(&pass_char); [INFO] [stderr] | -------------------------- immutable borrow occurs here [INFO] [stderr] 16 | match curr_count.is_none() { [INFO] [stderr] 17 | false => count_dict.insert(pass_char, curr_count.unwrap() + 1), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------^^^^^^^^^^^^^^ [INFO] [stderr] | | | [INFO] [stderr] | | immutable borrow later used here [INFO] [stderr] | mutable borrow occurs here [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(mutable_borrow_reservation_conflict)]` on by default [INFO] [stderr] = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future [INFO] [stderr] = note: for more information, see issue #59159 [INFO] [stderr] [INFO] [stderr] warning: `parse` (lib) generated 1 warning [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.02s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/day01-a868b927d260d3b1) [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/day02-507d5f945fec9205) [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] [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" "86e2649b623476067d3b8fb1951ddc67b374496040a36d01d78ecb27a018acb6", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "86e2649b623476067d3b8fb1951ddc67b374496040a36d01d78ecb27a018acb6", kill_on_drop: false }` [INFO] [stdout] 86e2649b623476067d3b8fb1951ddc67b374496040a36d01d78ecb27a018acb6