[INFO] cloning repository https://github.com/btwotwo/chip8rust [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/btwotwo/chip8rust" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fbtwotwo%2Fchip8rust"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fbtwotwo%2Fchip8rust'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 013da8f350e0ba68f425ecf8f6e9cac4fbebf9fb [INFO] checking btwotwo/chip8rust against master#2748a9fd93dd1a00a4521f4f16de5befbf77f6cd for pr-62262-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fbtwotwo%2Fchip8rust" "/workspace/builds/worker-0/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-0/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/btwotwo/chip8rust on toolchain 2748a9fd93dd1a00a4521f4f16de5befbf77f6cd [INFO] running `"/workspace/cargo-home/bin/cargo" "+2748a9fd93dd1a00a4521f4f16de5befbf77f6cd" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/btwotwo/chip8rust [INFO] finished tweaking git repo https://github.com/btwotwo/chip8rust [INFO] tweaked toml for git repo https://github.com/btwotwo/chip8rust written to /workspace/builds/worker-0/source/Cargo.toml [INFO] crate git repo https://github.com/btwotwo/chip8rust already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+2748a9fd93dd1a00a4521f4f16de5befbf77f6cd" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "MAP_USER_ID=0" "-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" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+2748a9fd93dd1a00a4521f4f16de5befbf77f6cd" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] f4abaaefb1e3f5008e80f0f0579dcf753a8e586a75daa13abda94766f5574830 [INFO] running `"docker" "start" "-a" "f4abaaefb1e3f5008e80f0f0579dcf753a8e586a75daa13abda94766f5574830"` [INFO] [stderr] Checking crossterm_utils v0.2.4 [INFO] [stderr] Checking termion v1.5.3 [INFO] [stderr] Checking crossterm_cursor v0.2.6 [INFO] [stderr] Checking crossterm_screen v0.2.5 [INFO] [stderr] Checking crossterm_style v0.3.3 [INFO] [stderr] Checking crossterm_style v0.4.1 [INFO] [stderr] Checking crossterm_input v0.3.9 [INFO] [stderr] Checking crossterm_terminal v0.2.6 [INFO] [stderr] Checking crossterm v0.9.6 [INFO] [stderr] Checking crossterm v0.10.2 [INFO] [stderr] Checking tui v0.6.2 [INFO] [stderr] Checking chip8rust v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused import: `std::fmt` [INFO] [stderr] --> src/main.rs:13:5 [INFO] [stderr] | [INFO] [stderr] 13 | use std::fmt; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0277]: arrays only have std trait implementations for lengths 0..=32 [INFO] [stderr] --> src/main.rs:42:5 [INFO] [stderr] | [INFO] [stderr] 42 | pub memory: Memory, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[u8; 4096]` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Debug` for `[u8; 4096]` [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Debug` for `&[u8; 4096]` [INFO] [stderr] = note: required for the cast to the object type `dyn std::fmt::Debug` [INFO] [stderr] [INFO] [stderr] error[E0277]: `Chip` doesn't implement `std::fmt::Display` [INFO] [stderr] --> src/opcode/mod.rs:76:45 [INFO] [stderr] | [INFO] [stderr] 76 | None => panic!("No opcode! {}", chip) [INFO] [stderr] | ^^^^ `Chip` cannot be formatted with the default formatter [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::fmt::Display` is not implemented for `Chip` [INFO] [stderr] = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Display` for `&mut Chip` [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `chip8rust`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: unused import: `std::fmt` [INFO] [stderr] --> src/main.rs:13:5 [INFO] [stderr] | [INFO] [stderr] 13 | use std::fmt; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0277]: arrays only have std trait implementations for lengths 0..=32 [INFO] [stderr] --> src/main.rs:42:5 [INFO] [stderr] | [INFO] [stderr] 42 | pub memory: Memory, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[u8; 4096]` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Debug` for `[u8; 4096]` [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Debug` for `&[u8; 4096]` [INFO] [stderr] = note: required for the cast to the object type `dyn std::fmt::Debug` [INFO] [stderr] [INFO] [stderr] error[E0277]: `Chip` doesn't implement `std::fmt::Display` [INFO] [stderr] --> src/opcode/mod.rs:76:45 [INFO] [stderr] | [INFO] [stderr] 76 | None => panic!("No opcode! {}", chip) [INFO] [stderr] | ^^^^ `Chip` cannot be formatted with the default formatter [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::fmt::Display` is not implemented for `Chip` [INFO] [stderr] = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Display` for `&mut Chip` [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `chip8rust`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "f4abaaefb1e3f5008e80f0f0579dcf753a8e586a75daa13abda94766f5574830"` [INFO] running `"docker" "rm" "-f" "f4abaaefb1e3f5008e80f0f0579dcf753a8e586a75daa13abda94766f5574830"` [INFO] [stdout] f4abaaefb1e3f5008e80f0f0579dcf753a8e586a75daa13abda94766f5574830