[INFO] updating cached repository https://github.com/nventuro/rusty-shooter [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] b514c99b633b0e7e76090f9ec3a0971524d45b5d [INFO] testing nventuro/rusty-shooter against try#41997647ba6a77908f6ef64401414feb00bccf16 for pr-71274 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fnventuro%2Frusty-shooter" "/workspace/builds/worker-11/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-11/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/nventuro/rusty-shooter on toolchain 41997647ba6a77908f6ef64401414feb00bccf16 [INFO] running `"/workspace/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/nventuro/rusty-shooter [INFO] finished tweaking git repo https://github.com/nventuro/rusty-shooter [INFO] tweaked toml for git repo https://github.com/nventuro/rusty-shooter written to /workspace/builds/worker-11/source/Cargo.toml [INFO] crate git repo https://github.com/nventuro/rusty-shooter already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/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" "+41997647ba6a77908f6ef64401414feb00bccf16" "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] a22db771b2db1378feab09dd6f328c3a18c29539e747f2220c5227afdca61bad [INFO] running `"docker" "start" "-a" "a22db771b2db1378feab09dd6f328c3a18c29539e747f2220c5227afdca61bad"` [INFO] [stderr] Compiling num-traits v0.1.36 [INFO] [stderr] Compiling sdl2-sys v0.25.0 [INFO] [stderr] Compiling bitflags v0.6.0 [INFO] [stderr] Compiling lazy_static v0.2.2 [INFO] [stderr] Compiling bitflags v0.7.0 [INFO] [stderr] Compiling num-integer v0.1.32 [INFO] [stderr] Compiling num-iter v0.1.32 [INFO] [stderr] Compiling num v0.1.36 [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/rustwide/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/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.rusty_shooter.568zy4lp-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585" "/opt/rustwide/target/debug/deps/rusty_shooter-300a8253201af585.3bxrwvmeeyiwgj1m.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libsdl2_ttf-2704cc2e0a9429da.rlib" "/opt/rustwide/target/debug/deps/libsdl2_image-648740ac6e0b2827.rlib" "/opt/rustwide/target/debug/deps/libbitflags-57cacbe4af8e84a6.rlib" "/opt/rustwide/target/debug/deps/libsdl2-520ed74c3089788c.rlib" "/opt/rustwide/target/debug/deps/librand-609cd6da18e9b689.rlib" "/opt/rustwide/target/debug/deps/libsdl2_sys-3ca5700593d46ac3.rlib" "/opt/rustwide/target/debug/deps/libbitflags-859219bc1a452bc4.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-9137b14104c4adf1.rlib" "/opt/rustwide/target/debug/deps/liblibc-4e2d1f63550948da.rlib" "/opt/rustwide/target/debug/deps/libnum-458cebc1ad703950.rlib" "/opt/rustwide/target/debug/deps/libnum_iter-0375fa64b6ff9969.rlib" "/opt/rustwide/target/debug/deps/libnum_integer-6e41fbaf27f6f466.rlib" "/opt/rustwide/target/debug/deps/libnum_traits-81082c5215598f31.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-62f93208e14fa8f0.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-b2c4dbe979cef5e2.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-8b9b66cb3e9f891d.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-5998b08bf29f56ac.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-efd1670396ccb585.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-6435b9209e888961.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-866e5dfb603b34d2.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-75eac3089695b3b4.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-35744537b4825584.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-f7ee5081d96fb2cd.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-5b28479cb639d76c.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-f827473dd3b319fa.rlib" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-53f9c299c549c6a9.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/41997647ba6a77908f6ef64401414feb00bccf16/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-44132fbb3fcc18d3.rlib" "-Wl,-Bdynamic" "-lSDL2_ttf" "-lSDL2_image" "-lSDL2" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-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; 7 warnings emitted [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" "a22db771b2db1378feab09dd6f328c3a18c29539e747f2220c5227afdca61bad"` [INFO] running `"docker" "rm" "-f" "a22db771b2db1378feab09dd6f328c3a18c29539e747f2220c5227afdca61bad"` [INFO] [stdout] a22db771b2db1378feab09dd6f328c3a18c29539e747f2220c5227afdca61bad