[INFO] fetching crate gomoku-core 0.1.1... [INFO] checking gomoku-core-0.1.1 against beta for pr-78714 [INFO] extracting crate gomoku-core 0.1.1 into /workspace/builds/worker-5/source [INFO] validating manifest of crates.io crate gomoku-core 0.1.1 on toolchain beta [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta" "read-manifest" "--manifest-path" "Cargo.toml", 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-5/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta" "fetch" "--locked" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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:6eabd152ff4036248d66efda456a36cb33d24b7291b33f25f75140726c88da35" "/opt/rustwide/cargo-home/bin/cargo" "+beta" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 60090df3b40b067fb212da8d6ab47dea727fa98f0a03efc90e7dcf80a6cbfe1b [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" "60090df3b40b067fb212da8d6ab47dea727fa98f0a03efc90e7dcf80a6cbfe1b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "60090df3b40b067fb212da8d6ab47dea727fa98f0a03efc90e7dcf80a6cbfe1b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "60090df3b40b067fb212da8d6ab47dea727fa98f0a03efc90e7dcf80a6cbfe1b", kill_on_drop: false }` [INFO] [stdout] 60090df3b40b067fb212da8d6ab47dea727fa98f0a03efc90e7dcf80a6cbfe1b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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:6eabd152ff4036248d66efda456a36cb33d24b7291b33f25f75140726c88da35" "/opt/rustwide/cargo-home/bin/cargo" "+beta" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 3b2b84936615836be59d395584f010a29fd176e80757ef5706ce9241430f2003 [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" "3b2b84936615836be59d395584f010a29fd176e80757ef5706ce9241430f2003", 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: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[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stdout] --> src/lib.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | #![feature(inclusive_range_syntax)] [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stdout] --> src/lib.rs:3:1 [INFO] [stdout] | [INFO] [stdout] 3 | #![feature(test)] extern crate test; [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: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[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stdout] --> src/lib.rs:1:1 [INFO] [stdout] | [INFO] [stdout] 1 | #![feature(inclusive_range_syntax)] [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stdout] --> src/lib.rs:3:1 [INFO] [stdout] | [INFO] [stdout] 3 | #![feature(test)] extern crate test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 8 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0554`. [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 8 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0554`. [INFO] [stdout] [INFO] [stderr] error: build failed [INFO] running `Command { std: "docker" "inspect" "3b2b84936615836be59d395584f010a29fd176e80757ef5706ce9241430f2003", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3b2b84936615836be59d395584f010a29fd176e80757ef5706ce9241430f2003", kill_on_drop: false }` [INFO] [stdout] 3b2b84936615836be59d395584f010a29fd176e80757ef5706ce9241430f2003