[INFO] updating cached repository https://github.com/ngraham20/rust-roguelike [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] f9b4e87894129a99fe52d868232677062e71adf4 [INFO] testing ngraham20/rust-roguelike against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fngraham20%2Frust-roguelike" "/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/ngraham20/rust-roguelike 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/ngraham20/rust-roguelike [INFO] finished tweaking git repo https://github.com/ngraham20/rust-roguelike [INFO] tweaked toml for git repo https://github.com/ngraham20/rust-roguelike written to /workspace/builds/worker-0/source/Cargo.toml [INFO] crate git repo https://github.com/ngraham20/rust-roguelike 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] 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=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] [stdout] bb1bd7b8e04aa15ee8f5b6a77220fdb66d2d338e8a61e8b5edd3172f85989556 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "bb1bd7b8e04aa15ee8f5b6a77220fdb66d2d338e8a61e8b5edd3172f85989556"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling tcod-sys v5.0.1 [INFO] [stderr] Compiling rand v0.4.6 [INFO] [stderr] Compiling rand v0.3.23 [INFO] [stderr] Compiling tcod v0.15.0 [INFO] [stderr] Compiling roguelike v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0432]: unresolved import `crate::map::Game` [INFO] [stderr] --> src/user_input.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use crate::map::Game; [INFO] [stderr] | ^^^^^^^^^^^^^^^^ no `Game` in `map` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Map` in this scope [INFO] [stderr] --> src/game.rs:2:14 [INFO] [stderr] | [INFO] [stderr] 2 | pub map: Map, [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope [INFO] [stderr] | [INFO] [stderr] 1 | use core::iter::Map; [INFO] [stderr] | [INFO] [stderr] 1 | use crate::map::Map; [INFO] [stderr] | [INFO] [stderr] 1 | use std::iter::Map; [INFO] [stderr] | [INFO] [stderr] 1 | use tcod::Map; [INFO] [stderr] | [INFO] [stderr] and 1 other candidate [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Messages` in this scope [INFO] [stderr] --> src/game.rs:3:19 [INFO] [stderr] | [INFO] [stderr] 3 | pub messages: Messages, [INFO] [stderr] | ^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use crate::screen::Messages; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Game` in this scope [INFO] [stderr] --> src/main.rs:40:20 [INFO] [stderr] | [INFO] [stderr] 40 | let mut game = Game { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 9 | use crate::game::Game; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unused imports: `Event`, `Key`, `self` [INFO] [stderr] --> src/user_input.rs:8:19 [INFO] [stderr] | [INFO] [stderr] 8 | use tcod::input::{self, Event, Key, Mouse}; [INFO] [stderr] | ^^^^ ^^^^^ ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: the item `Key` is imported redundantly [INFO] [stderr] --> src/user_input.rs:30:9 [INFO] [stderr] | [INFO] [stderr] 8 | use tcod::input::{self, Event, Key, Mouse}; [INFO] [stderr] | --- the item `Key` is already imported here [INFO] [stderr] ... [INFO] [stderr] 30 | use tcod::input::Key; [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::screen::Messages` [INFO] [stderr] --> src/map.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use crate::screen::Messages; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors; 3 warnings emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0422, E0432. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `roguelike`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "bb1bd7b8e04aa15ee8f5b6a77220fdb66d2d338e8a61e8b5edd3172f85989556"` [INFO] running `"docker" "rm" "-f" "bb1bd7b8e04aa15ee8f5b6a77220fdb66d2d338e8a61e8b5edd3172f85989556"` [INFO] [stdout] bb1bd7b8e04aa15ee8f5b6a77220fdb66d2d338e8a61e8b5edd3172f85989556