[INFO] updating cached repository soupersauce/ruguelike [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/soupersauce/ruguelike [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/soupersauce/ruguelike" "work/ex/beta-1.38-1/sources/1.37.0/gh/soupersauce/ruguelike"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/soupersauce/ruguelike'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/soupersauce/ruguelike" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/soupersauce/ruguelike"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/soupersauce/ruguelike'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 986a5419f9913f498bf118b83a09f82733d2623c [INFO] sha for GitHub repo soupersauce/ruguelike: 986a5419f9913f498bf118b83a09f82733d2623c [INFO] validating manifest of soupersauce/ruguelike on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of soupersauce/ruguelike on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing soupersauce/ruguelike [INFO] finished frobbing soupersauce/ruguelike [INFO] frobbed toml for soupersauce/ruguelike written to work/ex/beta-1.38-1/sources/1.37.0/gh/soupersauce/ruguelike/Cargo.toml [INFO] started frobbing soupersauce/ruguelike [INFO] finished frobbing soupersauce/ruguelike [INFO] frobbed toml for soupersauce/ruguelike written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/soupersauce/ruguelike/Cargo.toml [INFO] crate soupersauce/ruguelike already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing soupersauce/ruguelike against 1.37.0 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-4/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/gh/soupersauce/ruguelike:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+1.37.0" "build" "--frozen"` [INFO] [stdout] 79496434d105668f1b0a70c85816bbefc9e07021c24b2abdd29f1dfc8fa04aa5 [INFO] running `"docker" "start" "-a" "79496434d105668f1b0a70c85816bbefc9e07021c24b2abdd29f1dfc8fa04aa5"` [INFO] [stderr] warning: unused manifest key: constants [INFO] [stderr] Compiling tcod-sys v5.0.1 [INFO] [stderr] Compiling sdl2-sys v0.32.6 [INFO] [stderr] Compiling sdl2 v0.32.2 [INFO] [stderr] Compiling tcod v0.15.0 [INFO] [stderr] Compiling ruguelike v0.1.0 (/opt/crater/workdir) [INFO] [stderr] error[E0432]: unresolved import `crate::constants` [INFO] [stderr] --> src/lib.rs:5:12 [INFO] [stderr] | [INFO] [stderr] 5 | use crate::constants::*; [INFO] [stderr] | ^^^^^^^^^ maybe a missing `extern crate constants;`? [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `MSG_HEIGHT` in the crate root [INFO] [stderr] --> src/lib.rs:321:29 [INFO] [stderr] | [INFO] [stderr] 321 | if messages.len() == ::MSG_HEIGHT { [INFO] [stderr] | ^^^^^^^^^^ not found in the crate root [INFO] [stderr] [INFO] [stderr] warning: unused import: `tcod::colors::*` [INFO] [stderr] --> src/lib.rs:2:5 [INFO] [stderr] | [INFO] [stderr] 2 | use tcod::colors::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_imports)] on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::constants::*` [INFO] [stderr] --> src/lib.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use crate::constants::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:38:34 [INFO] [stderr] | [INFO] [stderr] 38 | pub fn draw(&self, con: &mut Console) { [INFO] [stderr] | ^^^^^^^ help: use `dyn`: `dyn Console` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(bare_trait_objects)] on by default [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/lib.rs:190:24 [INFO] [stderr] | [INFO] [stderr] 190 | Player => {player_death}, [INFO] [stderr] | ^^^^^^^^^^^^ incorrect number of function parameters [INFO] [stderr] | [INFO] [stderr] = note: expected type `for<'r> fn(&'r mut Object)` [INFO] [stderr] found type `for<'r, 's> fn(&'r mut Object, &'s mut std::vec::Vec<(std::string::String, tcod::colors::Color)>) {player_death}` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/lib.rs:191:25 [INFO] [stderr] | [INFO] [stderr] 191 | Monster => {monster_death}, [INFO] [stderr] | ^^^^^^^^^^^^^ incorrect number of function parameters [INFO] [stderr] | [INFO] [stderr] = note: expected type `for<'r> fn(&'r mut Object)` [INFO] [stderr] found type `for<'r, 's> fn(&'r mut Object, &'s mut std::vec::Vec<(std::string::String, tcod::colors::Color)>) {monster_death}` [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 1 parameter but 2 parameters were supplied [INFO] [stderr] --> src/lib.rs:193:9 [INFO] [stderr] | [INFO] [stderr] 193 | callback(object, messages); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 1 parameter [INFO] [stderr] [INFO] [stderr] error: aborting due to 5 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0308, E0425, E0432. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: Could not compile `ruguelike`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "79496434d105668f1b0a70c85816bbefc9e07021c24b2abdd29f1dfc8fa04aa5"` [INFO] running `"docker" "rm" "-f" "79496434d105668f1b0a70c85816bbefc9e07021c24b2abdd29f1dfc8fa04aa5"` [INFO] [stdout] 79496434d105668f1b0a70c85816bbefc9e07021c24b2abdd29f1dfc8fa04aa5