[INFO] cloning repository https://github.com/justinnoah/rusty_chips [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/justinnoah/rusty_chips" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjustinnoah%2Frusty_chips"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjustinnoah%2Frusty_chips'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 9b1333b82820131562908e0ba503da2941bd8194 [INFO] testing justinnoah/rusty_chips against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjustinnoah%2Frusty_chips" "/workspace/builds/worker-8/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-8/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/justinnoah/rusty_chips on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/justinnoah/rusty_chips [INFO] finished tweaking git repo https://github.com/justinnoah/rusty_chips [INFO] tweaked toml for git repo https://github.com/justinnoah/rusty_chips written to /workspace/builds/worker-8/source/Cargo.toml [INFO] crate git repo https://github.com/justinnoah/rusty_chips already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] error: the lock file /workspace/builds/worker-8/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag. [INFO] the lockfile is outdated, regenerating it [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Updating git repository `https://github.com/brson/rust-sdl.git` [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"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" "MAP_USER_ID=0" "-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" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+1.44.0" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] ede278745936fcb2929bc628f8d3eee40f45c3e9fa1bcabe98e131da93d8df8f [INFO] running `"docker" "start" "-a" "ede278745936fcb2929bc628f8d3eee40f45c3e9fa1bcabe98e131da93d8df8f"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling libc v0.1.12 [INFO] [stderr] Compiling num-integer v0.1.42 [INFO] [stderr] Compiling rand v0.4.6 [INFO] [stderr] Compiling num-complex v0.1.43 [INFO] [stderr] Compiling num-iter v0.1.40 [INFO] [stderr] Compiling num-bigint v0.1.44 [INFO] [stderr] Compiling rand v0.3.23 [INFO] [stderr] Compiling num-rational v0.1.42 [INFO] [stderr] Compiling num v0.1.42 [INFO] [stderr] Compiling sdl v0.3.6 (https://github.com/brson/rust-sdl.git#78bd0e74) [INFO] [stderr] Compiling rusty_chips v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:81:52 [INFO] [stderr] | [INFO] [stderr] 81 | let highbits: u8 = self.memory[(self.pc as uint)]; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:82:56 [INFO] [stderr] | [INFO] [stderr] 82 | let lowbits: u8 = self.memory[(self.pc + 1) as uint]; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:93:61 [INFO] [stderr] | [INFO] [stderr] 93 | self.pc = self.stack[(self.stack_pointer as uint)]; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:105:50 [INFO] [stderr] | [INFO] [stderr] 105 | self.stack[self.stack_pointer as uint] = self.pc; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:113:40 [INFO] [stderr] | [INFO] [stderr] 113 | if self.registers[V as uint] == byte { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:121:40 [INFO] [stderr] | [INFO] [stderr] 121 | if self.registers[V as uint] != byte { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:135:56 [INFO] [stderr] | [INFO] [stderr] 135 | self.registers[((op & 0x0f00) >> 8) as uint] = (op & 0x00ff) as u8; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:139:56 [INFO] [stderr] | [INFO] [stderr] 139 | self.registers[((op & 0x0f00) >> 8) as uint] += (op & 0x00ff) as u8; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:143:44 [INFO] [stderr] | [INFO] [stderr] 143 | let x = (op & 0x000f) as uint; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:144:50 [INFO] [stderr] | [INFO] [stderr] 144 | let vy = ((op & 0x00f0) >> 4) as uint; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:145:50 [INFO] [stderr] | [INFO] [stderr] 145 | let vx = ((op & 0x0f00) >> 8) as uint; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:208:50 [INFO] [stderr] | [INFO] [stderr] 208 | let vy = ((op & 0x00f0) >> 4) as uint; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `uint` in this scope [INFO] [stderr] --> src/chip8.rs:209:50 [INFO] [stderr] | [INFO] [stderr] 209 | let vx = ((op & 0x0f00) >> 8) as uint; [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `range` in this scope [INFO] [stderr] --> src/main.rs:72:14 [INFO] [stderr] | [INFO] [stderr] 72 | for c in range(0, fontset.len()) { [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:98:25 [INFO] [stderr] | [INFO] [stderr] 98 | op @ 0x1000 ... 0x1fff => self.pc = op ^ 0x1000, [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:100:25 [INFO] [stderr] | [INFO] [stderr] 100 | op @ 0x2000 ... 0x2fff => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:110:25 [INFO] [stderr] | [INFO] [stderr] 110 | op @ 0x3000 ... 0x3fff => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:118:25 [INFO] [stderr] | [INFO] [stderr] 118 | op @ 0x4000 ... 0x4fff => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:126:25 [INFO] [stderr] | [INFO] [stderr] 126 | op @ 0x5000 ... 0x5ff0 if op % 16 == 0 => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:134:25 [INFO] [stderr] | [INFO] [stderr] 134 | op @ 0x6000 ... 0x6fff => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:138:25 [INFO] [stderr] | [INFO] [stderr] 138 | op @ 0x7000 ... 0x7fff => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:142:25 [INFO] [stderr] | [INFO] [stderr] 142 | op @ 0x8000 ... 0x8ffe => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/chip8.rs:207:25 [INFO] [stderr] | [INFO] [stderr] 207 | op @ 0x9000 ... 0x9ff0 if op % 16 == 0 => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `as_slice` found for array `[sdl::InitFlag; 1]` in the current scope [INFO] [stderr] --> src/main.rs:35:38 [INFO] [stderr] | [INFO] [stderr] 35 | sdl::init([sdl::InitFlag::Video].as_slice()); [INFO] [stderr] | ^^^^^^^^ method not found in `[sdl::InitFlag; 1]` [INFO] [stderr] | [INFO] [stderr] = help: items from traits can only be used if the trait is in scope [INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it: [INFO] [stderr] | [INFO] [stderr] 21 | use std::array::FixedSizeArray; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `as_slice` found for array `[sdl::video::SurfaceFlag; 1]` in the current scope [INFO] [stderr] --> src/main.rs:42:76 [INFO] [stderr] | [INFO] [stderr] 42 | ... [SurfaceFlag::HWSurface].as_slice(), [INFO] [stderr] | ^^^^^^^^ method not found in `[sdl::video::SurfaceFlag; 1]` [INFO] [stderr] | [INFO] [stderr] = help: items from traits can only be used if the trait is in scope [INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it: [INFO] [stderr] | [INFO] [stderr] 21 | use std::array::FixedSizeArray; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `as_slice` found for array `[sdl::video::VideoFlag; 1]` in the current scope [INFO] [stderr] --> src/main.rs:43:74 [INFO] [stderr] | [INFO] [stderr] 43 | ... [VideoFlag::DoubleBuf].as_slice()) { [INFO] [stderr] | ^^^^^^^^ method not found in `[sdl::video::VideoFlag; 1]` [INFO] [stderr] | [INFO] [stderr] = help: items from traits can only be used if the trait is in scope [INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it: [INFO] [stderr] | [INFO] [stderr] 21 | use std::array::FixedSizeArray; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: aborting due to 17 previous errors; 9 warnings emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `rusty_chips`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "ede278745936fcb2929bc628f8d3eee40f45c3e9fa1bcabe98e131da93d8df8f"` [INFO] running `"docker" "rm" "-f" "ede278745936fcb2929bc628f8d3eee40f45c3e9fa1bcabe98e131da93d8df8f"` [INFO] [stdout] ede278745936fcb2929bc628f8d3eee40f45c3e9fa1bcabe98e131da93d8df8f