[INFO] updating cached repository nventuro/rusty-shooter [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/nventuro/rusty-shooter [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/nventuro/rusty-shooter" "work/ex/beta-1.38-1/sources/1.37.0/gh/nventuro/rusty-shooter"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/nventuro/rusty-shooter'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/nventuro/rusty-shooter" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/nventuro/rusty-shooter"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/nventuro/rusty-shooter'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] b514c99b633b0e7e76090f9ec3a0971524d45b5d [INFO] sha for GitHub repo nventuro/rusty-shooter: b514c99b633b0e7e76090f9ec3a0971524d45b5d [INFO] validating manifest of nventuro/rusty-shooter 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 nventuro/rusty-shooter 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 nventuro/rusty-shooter [INFO] finished frobbing nventuro/rusty-shooter [INFO] frobbed toml for nventuro/rusty-shooter written to work/ex/beta-1.38-1/sources/1.37.0/gh/nventuro/rusty-shooter/Cargo.toml [INFO] started frobbing nventuro/rusty-shooter [INFO] finished frobbing nventuro/rusty-shooter [INFO] frobbed toml for nventuro/rusty-shooter written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/nventuro/rusty-shooter/Cargo.toml [INFO] crate nventuro/rusty-shooter 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 nventuro/rusty-shooter against beta-2019-08-13 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-5/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/nventuro/rusty-shooter:/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" "+beta-2019-08-13" "build" "--frozen"` [INFO] [stdout] 03782925909dc347b49f1030723b89bdeffcb4c6f3c51cfbbc80af28f41d46ba [INFO] running `"docker" "start" "-a" "03782925909dc347b49f1030723b89bdeffcb4c6f3c51cfbbc80af28f41d46ba"` [INFO] [stderr] Compiling sdl2-sys v0.25.0 [INFO] [stderr] Compiling sdl2 v0.25.0 [INFO] [stderr] Compiling sdl2_ttf v0.25.1 [INFO] [stderr] Compiling sdl2_image v0.25.0 [INFO] [stderr] Compiling rusty-shooter v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/phi/mod.rs:28:32 [INFO] [stderr] | [INFO] [stderr] 28 | ChangeView { new_view: Box }, [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn View` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/phi/mod.rs:78:30 [INFO] [stderr] | [INFO] [stderr] 78 | where F: Fn(&mut Phi) -> Box { [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn View` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/views/main_menu.rs:8:15 [INFO] [stderr] | [INFO] [stderr] 8 | func: Box ViewAction>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&mut Phi) -> ViewAction` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/views/main_menu.rs:20:58 [INFO] [stderr] | [INFO] [stderr] 20 | fn new(phi: &mut Phi, label: &'static str, func: Box ViewAction>) -> Action { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&mut Phi) -> ViewAction` [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/phi/gfx.rs:61:26 [INFO] [stderr] | [INFO] [stderr] 61 | pub fn render(&self, mut renderer: &mut Renderer, dest: Rectangle) { [INFO] [stderr] | ----^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] warning: method is never used: `overlaps` [INFO] [stderr] --> src/phi/data.rs:52:5 [INFO] [stderr] | [INFO] [stderr] 52 | pub fn overlaps(&self, other: Rectangle) -> bool { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: method is never used: `new` [INFO] [stderr] --> src/phi/gfx.rs:75:5 [INFO] [stderr] | [INFO] [stderr] 75 | pub fn new(texture: Texture, vel: f64) -> ParallaxSprite { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.0.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.1.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.10.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.11.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.12.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.13.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.14.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.15.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.2.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.3.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.4.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.5.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.6.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.7.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.8.rcgu.o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.rusty_shooter.3b0aysve-cgu.9.rcgu.o" "-o" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823" "/opt/crater/target/debug/deps/rusty_shooter-239204b0a3a78823.2vbv57cunawjr5jk.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/crater/target/debug/deps" "-L" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/crater/target/debug/deps/libsdl2_ttf-969cd35b4140e15f.rlib" "/opt/crater/target/debug/deps/libsdl2_image-2e6d14aa5b4a3bbb.rlib" "/opt/crater/target/debug/deps/libbitflags-b03ee8d07369378c.rlib" "/opt/crater/target/debug/deps/libsdl2-370dc183426f30c6.rlib" "/opt/crater/target/debug/deps/librand-123469cd64152cbd.rlib" "/opt/crater/target/debug/deps/libsdl2_sys-d505cac366c730c3.rlib" "/opt/crater/target/debug/deps/libbitflags-c07c0dca308057ba.rlib" "/opt/crater/target/debug/deps/liblazy_static-5b3a6350224c4bac.rlib" "/opt/crater/target/debug/deps/liblibc-5727d97ccaa262e3.rlib" "/opt/crater/target/debug/deps/libnum-21583d9e0585b1d1.rlib" "/opt/crater/target/debug/deps/libnum_iter-0c80d544ba1f8bd7.rlib" "/opt/crater/target/debug/deps/libnum_integer-4739295d8bcfef2e.rlib" "/opt/crater/target/debug/deps/libnum_traits-cf072775152a8823.rlib" "-Wl,--start-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-1d6d86bd078a28e9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e9721e46a424e2a9.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-c07193698f282147.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-6da45690f3863086.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-690797036dd27680.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-d3896ccbfd8eda2b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-7cccc3739e3d7623.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-5e9ba178a513cd29.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-5ca9f83bf63d1f4b.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-bba1c7ef9e950882.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-e23c9de62012deb5.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-9b59dffdcd513d5d.rlib" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-17392340ab2e4a97.rlib" "-Wl,--end-group" "/opt/crater/rustup-home/toolchains/beta-2019-08-13-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-ac21508a81e3f7f3.rlib" "-Wl,-Bdynamic" "-lSDL2_ttf" "-lSDL2_image" "-lSDL2" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: cannot find -lSDL2_ttf [INFO] [stderr] /usr/bin/ld: cannot find -lSDL2_image [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: Could not compile `rusty-shooter`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "03782925909dc347b49f1030723b89bdeffcb4c6f3c51cfbbc80af28f41d46ba"` [INFO] running `"docker" "rm" "-f" "03782925909dc347b49f1030723b89bdeffcb4c6f3c51cfbbc80af28f41d46ba"` [INFO] [stdout] 03782925909dc347b49f1030723b89bdeffcb4c6f3c51cfbbc80af28f41d46ba