[INFO] fetching crate gomoku-core 0.1.1... [INFO] checking gomoku-core-0.1.1 against try#8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8 for pr-82565 [INFO] extracting crate gomoku-core 0.1.1 into /workspace/builds/worker-8/source [INFO] validating manifest of crates.io crate gomoku-core 0.1.1 on toolchain 8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate gomoku-core 0.1.1 [INFO] finished tweaking crates.io crate gomoku-core 0.1.1 [INFO] tweaked toml for crates.io crate gomoku-core 0.1.1 written to /workspace/builds/worker-8/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "fetch" "--locked" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/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" "rustops/crates-build-env@sha256:f2f6bcd4b43ebee4e173f653a26493129bdb64017c85f916b780ca7fbdbaa79d" "/opt/rustwide/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 39e8eefc33c118a0fbcfcf9b24d5883ae7b7c7c393065e5d2299755b6cbe62d2 [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" "39e8eefc33c118a0fbcfcf9b24d5883ae7b7c7c393065e5d2299755b6cbe62d2", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "39e8eefc33c118a0fbcfcf9b24d5883ae7b7c7c393065e5d2299755b6cbe62d2", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "39e8eefc33c118a0fbcfcf9b24d5883ae7b7c7c393065e5d2299755b6cbe62d2", kill_on_drop: false }` [INFO] [stdout] 39e8eefc33c118a0fbcfcf9b24d5883ae7b7c7c393065e5d2299755b6cbe62d2 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/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" "rustops/crates-build-env@sha256:f2f6bcd4b43ebee4e173f653a26493129bdb64017c85f916b780ca7fbdbaa79d" "/opt/rustwide/cargo-home/bin/cargo" "+8e3afc79c11f48cb3acd1be5b3b7de98fe3f93a8" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 2cad2bf03ad2c773cfc8a04909ab32b330b5311a7c6bd77ac2191e1c13d8ebc5 [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" "2cad2bf03ad2c773cfc8a04909ab32b330b5311a7c6bd77ac2191e1c13d8ebc5", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Checking gomoku-core v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/alignments.rs:40:20 [INFO] [stdout] | [INFO] [stdout] 40 | for y in (0...y - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 40 | for y in (0..y - 1).rev() { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 40 | for y in (0..=y - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/alignments.rs:86:20 [INFO] [stdout] | [INFO] [stdout] 86 | for x in (0...x - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 86 | for x in (0..x - 1).rev() { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 86 | for x in (0..=x - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/alignments.rs:40:20 [INFO] [stdout] | [INFO] [stdout] 40 | for y in (0...y - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 40 | for y in (0..y - 1).rev() { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 40 | for y in (0..=y - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/alignments.rs:86:20 [INFO] [stdout] | [INFO] [stdout] 86 | for x in (0...x - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 86 | for x in (0..x - 1).rev() { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 86 | for x in (0..=x - 1).rev() { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:87:28 [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw..x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw..=x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:87:59 [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back..y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back..=y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:137:28 [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back..x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back..=x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:87:28 [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw..x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw..=x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:137:53 [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back..y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back..=y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:87:59 [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back..y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 87 | for (x, y) in (x - forw...x + back).rev().zip(y - back..=y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:137:28 [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back..x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back..=x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: unexpected token: `...` [INFO] [stdout] --> src/functions/captures_on_alignement.rs:137:53 [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back...y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] help: use `..` for an exclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back..y + forw) { [INFO] [stdout] | ^^ [INFO] [stdout] help: or `..=` for an inclusive range [INFO] [stdout] | [INFO] [stdout] 137 | for (x, y) in (x - back...x + forw).zip(y - back..=y + forw) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 6 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `gomoku-core` [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] error: aborting due to 6 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: build failed [INFO] running `Command { std: "docker" "inspect" "2cad2bf03ad2c773cfc8a04909ab32b330b5311a7c6bd77ac2191e1c13d8ebc5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "2cad2bf03ad2c773cfc8a04909ab32b330b5311a7c6bd77ac2191e1c13d8ebc5", kill_on_drop: false }` [INFO] [stdout] 2cad2bf03ad2c773cfc8a04909ab32b330b5311a7c6bd77ac2191e1c13d8ebc5