[INFO] updating cached repository https://github.com/xfix/advent-of-code-2018-mirror [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] 1f9c778413d93d66d40dfc9bab850340a9d4fe8b [INFO] testing xfix/advent-of-code-2018-mirror against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fxfix%2Fadvent-of-code-2018-mirror" "work/builds/worker-4/source"` [INFO] [stderr] Cloning into 'work/builds/worker-4/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/xfix/advent-of-code-2018-mirror on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/xfix/advent-of-code-2018-mirror [INFO] finished tweaking git repo https://github.com/xfix/advent-of-code-2018-mirror [INFO] tweaked toml for git repo https://github.com/xfix/advent-of-code-2018-mirror written to work/builds/worker-4/source/Cargo.toml [INFO] crate git repo https://github.com/xfix/advent-of-code-2018-mirror already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 09f353f507f28dcc25d22cc022a19c1dd09faf8741d8fda421a55d77e59aec16 [INFO] running `"docker" "start" "-a" "09f353f507f28dcc25d22cc022a19c1dd09faf8741d8fda421a55d77e59aec16"` [INFO] [stderr] Compiling num-traits v0.2.6 [INFO] [stderr] Compiling num-complex v0.2.1 [INFO] [stderr] Compiling z3-sys v0.4.0 [INFO] [stderr] Compiling arraymap v0.1.1 [INFO] [stderr] Compiling arrayvec v0.4.8 [INFO] [stderr] Compiling heck v0.3.0 [INFO] [stderr] Compiling memchr v2.1.2 [INFO] [stderr] Compiling itertools v0.7.11 [INFO] [stderr] Compiling num_cpus v1.8.0 [INFO] [stderr] Compiling syn v0.15.22 [INFO] [stderr] Compiling clap v2.32.0 [INFO] [stderr] Compiling crossbeam-epoch v0.3.1 [INFO] [stderr] Compiling z3 v0.3.0 [INFO] [stderr] Compiling aho-corasick v0.6.9 [INFO] [stderr] Compiling nom v4.1.1 [INFO] [stderr] Compiling crossbeam-deque v0.2.0 [INFO] [stderr] Compiling regex v1.1.0 [INFO] [stderr] Compiling rayon-core v1.4.1 [INFO] [stderr] Compiling rayon v1.0.3 [INFO] [stderr] Compiling enumset_derive v0.2.0 [INFO] [stderr] Compiling structopt-derive v0.2.14 [INFO] [stderr] Compiling enumset v0.3.14 [INFO] [stderr] Compiling structopt v0.2.14 [INFO] [stderr] Compiling advent-of-code-2018 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'take_while1_s': Please use `take_while1` instead [INFO] [stderr] --> src/day3/mod.rs:94:1 [INFO] [stderr] | [INFO] [stderr] 94 | / named!( [INFO] [stderr] 95 | | integer, u16>, [INFO] [stderr] 96 | | map_res!( [INFO] [stderr] 97 | | take_while1_s!(|c| char::is_digit(c, 10)), [INFO] [stderr] 98 | | |x: CompleteStr<'_>| x.parse() [INFO] [stderr] 99 | | ) [INFO] [stderr] 100 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'take_while1_s': Please use `take_while1` instead [INFO] [stderr] --> src/day3/mod.rs:94:1 [INFO] [stderr] | [INFO] [stderr] 94 | / named!( [INFO] [stderr] 95 | | integer, u16>, [INFO] [stderr] 96 | | map_res!( [INFO] [stderr] 97 | | take_while1_s!(|c| char::is_digit(c, 10)), [INFO] [stderr] 98 | | |x: CompleteStr<'_>| x.parse() [INFO] [stderr] 99 | | ) [INFO] [stderr] 100 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'take_while1_s': Please use `take_while1` instead [INFO] [stderr] --> src/day4/mod.rs:125:1 [INFO] [stderr] | [INFO] [stderr] 125 | / named!( [INFO] [stderr] 126 | | integer(CompleteStr<'_>) -> u32, [INFO] [stderr] 127 | | map_res!( [INFO] [stderr] 128 | | take_while1_s!(|c| char::is_digit(c, 10)), [INFO] [stderr] 129 | | |x: CompleteStr<'_>| x.parse() [INFO] [stderr] 130 | | ) [INFO] [stderr] 131 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'take_while1_s': Please use `take_while1` instead [INFO] [stderr] --> src/day4/mod.rs:125:1 [INFO] [stderr] | [INFO] [stderr] 125 | / named!( [INFO] [stderr] 126 | | integer(CompleteStr<'_>) -> u32, [INFO] [stderr] 127 | | map_res!( [INFO] [stderr] 128 | | take_while1_s!(|c| char::is_digit(c, 10)), [INFO] [stderr] 129 | | |x: CompleteStr<'_>| x.parse() [INFO] [stderr] 130 | | ) [INFO] [stderr] 131 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'nom::str::take_while1_s': Please use `take_while1` instead [INFO] [stderr] --> src/day3/mod.rs:3:77 [INFO] [stderr] | [INFO] [stderr] 3 | use nom::{call, do_parse, error_position, map_res, named, tag, take_while1, take_while1_s}; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'nom::str::take_while1_s': Please use `take_while1` instead [INFO] [stderr] --> src/day4/mod.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | take_while1_s, tuple_parser, [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: cannot borrow `*self` as mutable because it is also borrowed as immutable [INFO] [stderr] --> src/day15/mod.rs:125:13 [INFO] [stderr] | [INFO] [stderr] 121 | player = &self.players[player_number]; [INFO] [stderr] | ------------ immutable borrow occurs here [INFO] [stderr] ... [INFO] [stderr] 125 | self.hurt(positions, target, player.attack_power); [INFO] [stderr] | ^^^^ ------------------- immutable borrow later used here [INFO] [stderr] | | [INFO] [stderr] | mutable borrow occurs here [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(mutable_borrow_reservation_conflict)]` on by default [INFO] [stderr] = warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future [INFO] [stderr] = note: for more information, see issue #59159 [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/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.advent_of_code_2018.b3puzeki-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80" "/opt/rustwide/target/debug/deps/advent_of_code_2018-dfc212dccf0f4f80.rdtvud450ybuayg.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libz3-9f9bd62c76e55086.rlib" "/opt/rustwide/target/debug/deps/libz3_sys-ac962f9b5e9d5c99.rlib" "/opt/rustwide/target/debug/deps/liblog-f8aa24668e170227.rlib" "/opt/rustwide/target/debug/deps/libenumset-a404d7537bd15289.rlib" "/opt/rustwide/target/debug/deps/libnum_complex-d7efae42cc3dc3f1.rlib" "/opt/rustwide/target/debug/deps/libnum_traits-221bdfa6e97a8a56.rlib" "/opt/rustwide/target/debug/deps/libarraymap-111209e73d9ad52c.rlib" "/opt/rustwide/target/debug/deps/librayon-aaa766357be65222.rlib" "/opt/rustwide/target/debug/deps/librayon_core-9cea15f0e96fc13f.rlib" "/opt/rustwide/target/debug/deps/libnum_cpus-44b820cd8fbdf829.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam_deque-e5574be593c9ce6f.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam_epoch-ae9af9ce55b06544.rlib" "/opt/rustwide/target/debug/deps/libscopeguard-0684162327b2b1d2.rlib" "/opt/rustwide/target/debug/deps/libmemoffset-97283fd366a3fe51.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam_utils-6975b9ce28032754.rlib" "/opt/rustwide/target/debug/deps/libarrayvec-10820eedeacab45d.rlib" "/opt/rustwide/target/debug/deps/libnodrop-30dc09557a31fb0d.rlib" "/opt/rustwide/target/debug/deps/libregex-4432c1ab82258ff9.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-83ae249c9a6ecf11.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-235589642b8203ab.rlib" "/opt/rustwide/target/debug/deps/libucd_util-b548f566287fc6d5.rlib" "/opt/rustwide/target/debug/deps/libthread_local-cb91a623fce42c10.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-dc50c07bdb2aa9f0.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-7213ab623244b8d8.rlib" "/opt/rustwide/target/debug/deps/libitertools-b70ed2c51f623f6f.rlib" "/opt/rustwide/target/debug/deps/libeither-218deddf6289c71d.rlib" "/opt/rustwide/target/debug/deps/libnom-cd199ddb94868ffb.rlib" "/opt/rustwide/target/debug/deps/libmemchr-449a4e496e209461.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-7a542410dd593189.rlib" "/opt/rustwide/target/debug/deps/libstructopt-0c7dad44f1f4aa3d.rlib" "/opt/rustwide/target/debug/deps/libclap-3115616ba0d9b1d4.rlib" "/opt/rustwide/target/debug/deps/libvec_map-1d07ce46f780a1ae.rlib" "/opt/rustwide/target/debug/deps/libtextwrap-82f94d89b01e440b.rlib" "/opt/rustwide/target/debug/deps/libunicode_width-d9f8e4799bf0265c.rlib" "/opt/rustwide/target/debug/deps/libstrsim-7f6ccf0d7c562849.rlib" "/opt/rustwide/target/debug/deps/libbitflags-3a40c6903761d7ac.rlib" "/opt/rustwide/target/debug/deps/libatty-90e7af9bcbe8516c.rlib" "/opt/rustwide/target/debug/deps/liblibc-9a6e86d2dafc22bc.rlib" "/opt/rustwide/target/debug/deps/libansi_term-d783327a58311329.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-db812c66f862af4c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-e7871a21575d5ff7.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-2f2c581bc0d759e6.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-35731cabc05dc8a0.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-36477394541292db.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-8b706b170c1272d8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-801dbb3043ccf581.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-a32aa66ce6f72b21.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-d00ea3bfb2bb6c00.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-d2c6ebe88c3e113c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-df74f62f6bb60621.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-2170473575daeedb.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-1a08089bbddc4f51.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2019-09-28-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-f8f562e5472ad5c3.rlib" "-Wl,-Bdynamic" "-lz3" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: cannot find -lz3 [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 `advent-of-code-2018`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "09f353f507f28dcc25d22cc022a19c1dd09faf8741d8fda421a55d77e59aec16"` [INFO] running `"docker" "rm" "-f" "09f353f507f28dcc25d22cc022a19c1dd09faf8741d8fda421a55d77e59aec16"` [INFO] [stdout] 09f353f507f28dcc25d22cc022a19c1dd09faf8741d8fda421a55d77e59aec16