[INFO] cloning repository https://github.com/madmax28/aoc2020
[INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/madmax28/aoc2020" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmadmax28%2Faoc2020", kill_on_drop: false }`
[INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmadmax28%2Faoc2020'...
[INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }`
[INFO] [stdout] 2a9b0248f2457e28b2b2f33a0dd85f3f1fc9862a
[INFO] testing madmax28/aoc2020 against 1.99.0-beta.1+cargoflags=--release for beta-release-1.99-2
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmadmax28%2Faoc2020" "/workspace/builds/worker-1-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-1-tc2/source'...
[INFO] [stderr] done.
[INFO] started tweaking git repo https://github.com/madmax28/aoc2020
[INFO] finished tweaking git repo https://github.com/madmax28/aoc2020
[INFO] tweaked toml for git repo https://github.com/madmax28/aoc2020 written to /workspace/builds/worker-1-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/madmax28/aoc2020 on toolchain 1.99.0-beta.1
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.99.0-beta.1" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/madmax28/aoc2020 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.99.0-beta.1" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,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" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:8683fc1fc2eb5c9ac98e0d076ab094b2ffac7f99da555d2b6a2e27f346de2ec7" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df
[INFO] running `Command { std: "docker" "start" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df" "/opt/rustwide/cargo-home/bin/cargo" "+1.99.0-beta.1" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df" "/opt/rustwide/cargo-home/bin/cargo" "+1.99.0-beta.1" "build" "--frozen" "--message-format=json" "--release", kill_on_drop: false }`
[INFO] [stderr]    Compiling aoc2020 v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/day07/mod.rs:10:19
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_rules(s: &str) -> crate::Result<RuleSet> {
[INFO] [stdout]    |                   ^^^^                   ^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                   |
[INFO] [stdout]    |                   the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_rules(s: &str) -> crate::Result<RuleSet<'_>> {
[INFO] [stdout]    |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/day16/mod.rs:63:13
[INFO] [stdout]    |
[INFO] [stdout] 63 | fn parse(s: &str) -> crate::Result<(RuleSet, Ticket, Vec<Ticket>)> {
[INFO] [stdout]    |             ^^^^                    ^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |             |
[INFO] [stdout]    |             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 63 | fn parse(s: &str) -> crate::Result<(RuleSet<'_>, Ticket, Vec<Ticket>)> {
[INFO] [stdout]    |                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/day21/mod.rs:10:13
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse(s: &str) -> crate::Result<(HashSet<&str>, Vec<ListEntry>)> {
[INFO] [stdout]    |             ^^^^                            ^^^^       ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |             |                               |
[INFO] [stdout]    |             |                               the same lifetime is elided here
[INFO] [stdout]    |             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse(s: &str) -> crate::Result<(HashSet<&str>, Vec<ListEntry<'_>>)> {
[INFO] [stdout]    |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `release` profile [optimized + debuginfo] target(s) in 11.64s
[INFO] running `Command { std: "docker" "inspect" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df" "/opt/rustwide/cargo-home/bin/cargo" "+1.99.0-beta.1" "test" "--frozen" "--no-run" "--message-format=json" "--release", kill_on_drop: false }`
[INFO] [stderr]    Compiling aoc2020 v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/day07/mod.rs:10:19
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_rules(s: &str) -> crate::Result<RuleSet> {
[INFO] [stdout]    |                   ^^^^                   ^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                   |
[INFO] [stdout]    |                   the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_rules(s: &str) -> crate::Result<RuleSet<'_>> {
[INFO] [stdout]    |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/day16/mod.rs:63:13
[INFO] [stdout]    |
[INFO] [stdout] 63 | fn parse(s: &str) -> crate::Result<(RuleSet, Ticket, Vec<Ticket>)> {
[INFO] [stdout]    |             ^^^^                    ^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |             |
[INFO] [stdout]    |             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 63 | fn parse(s: &str) -> crate::Result<(RuleSet<'_>, Ticket, Vec<Ticket>)> {
[INFO] [stdout]    |                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/day21/mod.rs:10:13
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse(s: &str) -> crate::Result<(HashSet<&str>, Vec<ListEntry>)> {
[INFO] [stdout]    |             ^^^^                            ^^^^       ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |             |                               |
[INFO] [stdout]    |             |                               the same lifetime is elided here
[INFO] [stdout]    |             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse(s: &str) -> crate::Result<(HashSet<&str>, Vec<ListEntry<'_>>)> {
[INFO] [stdout]    |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `release` profile [optimized + debuginfo] target(s) in 11.01s
[INFO] running `Command { std: "docker" "inspect" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df" "/opt/rustwide/cargo-home/bin/cargo" "+1.99.0-beta.1" "test" "--frozen" "--release", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout] 
[INFO] [stderr]   --> src/day07/mod.rs:10:19
[INFO] [stdout] running 68 tests
[INFO] [stderr]    |
[INFO] [stderr] 10 | fn parse_rules(s: &str) -> crate::Result<RuleSet> {
[INFO] [stderr]    |                   ^^^^                   ^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                   |
[INFO] [stderr]    |                   the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 10 | fn parse_rules(s: &str) -> crate::Result<RuleSet<'_>> {
[INFO] [stderr]    |                                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/day16/mod.rs:63:13
[INFO] [stderr]    |
[INFO] [stderr] 63 | fn parse(s: &str) -> crate::Result<(RuleSet, Ticket, Vec<Ticket>)> {
[INFO] [stderr]    |             ^^^^                    ^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |             |
[INFO] [stderr]    |             the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 63 | fn parse(s: &str) -> crate::Result<(RuleSet<'_>, Ticket, Vec<Ticket>)> {
[INFO] [stderr]    |                                            ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/day21/mod.rs:10:13
[INFO] [stderr]    |
[INFO] [stderr] 10 | fn parse(s: &str) -> crate::Result<(HashSet<&str>, Vec<ListEntry>)> {
[INFO] [stderr]    |             ^^^^                            ^^^^       ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |             |                               |
[INFO] [stderr]    |             |                               the same lifetime is elided here
[INFO] [stderr]    |             the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 10 | fn parse(s: &str) -> crate::Result<(HashSet<&str>, Vec<ListEntry<'_>>)> {
[INFO] [stderr]    |                                                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `aoc2020` (bin "aoc2020" test) generated 3 warnings (run `cargo fix --bin "aoc2020" -p aoc2020 --tests` to apply 3 suggestions)
[INFO] [stderr]     Finished `release` profile [optimized + debuginfo] target(s) in 0.03s
[INFO] [stderr]      Running unittests src/main.rs (/opt/rustwide/target/release/deps/aoc2020-768774945e5992b3)
[INFO] [stdout] test day13::tests::p2ex1 ... ok
[INFO] [stdout] test day14::tests::ex1 ... ok
[INFO] [stdout] test day18::tests::p2ex1 ... ok
[INFO] [stdout] test day19::tests::p1ex1 ... ok
[INFO] [stdout] test day20::tests::crop_image ... ok
[INFO] [stdout] test day20::tests::rotate_image ... ok
[INFO] [stdout] test day20::tests::flip_image_orientation ... ok
[INFO] [stdout] test day20::tests::flip_image ... ok
[INFO] [stdout] test day20::tests::rotate_image_orientation ... ok
[INFO] [stdout] test day22::tests::p2ex1 ... ok
[INFO] [stdout] test day19::tests::p2ex1 ... ok
[INFO] [stdout] test day18::tests::p2ex2 ... ok
[INFO] [stdout] test day20::tests::rotate_point ... ok
[INFO] [stdout] test day21::tests::p1ex1 ... ok
[INFO] [stdout] test day23::tests::p1ex1 ... ok
[INFO] [stdout] test tests::day01p2 ... ok
[INFO] [stdout] test day20::tests::edge_keys ... ok
[INFO] [stdout] test day22::tests::p2ex2 ... ok
[INFO] [stdout] test tests::day03p1 ... ok
[INFO] [stdout] test tests::day02p2 ... ok
[INFO] [stdout] test tests::day05p2 ... ok
[INFO] [stdout] test tests::day03p2 ... ok
[INFO] [stdout] test tests::day04p2 ... ok
[INFO] [stdout] test tests::day05p1 ... ok
[INFO] [stdout] test tests::day01p1 ... ok
[INFO] [stdout] test tests::day07p2 ... ok
[INFO] [stdout] test tests::day06p1 ... ok
[INFO] [stdout] test tests::day09p2 ... ok
[INFO] [stdout] test tests::day10p1 ... ok
[INFO] [stdout] test tests::day12p1 ... ok
[INFO] [stdout] test tests::day08p1 ... ok
[INFO] [stdout] test tests::day06p2 ... ok
[INFO] [stdout] test tests::day13p2 ... ok
[INFO] [stdout] test tests::day14p1 ... ok
[INFO] [stdout] test tests::day12p2 ... ok
[INFO] [stdout] test tests::day13p1 ... ok
[INFO] [stdout] test tests::day04p1 ... ok
[INFO] [stdout] test tests::day15p1 ... ok
[INFO] [stdout] test tests::day18p1 ... ok
[INFO] [stdout] test tests::day16p1 ... ok
[INFO] [stdout] test tests::day09p1 ... ok
[INFO] [stdout] test tests::day10p2 ... ok
[INFO] [stdout] test tests::day18p2 ... ok
[INFO] [stdout] test day20::tests::p1ex1 ... ok
[INFO] [stdout] test tests::day08p2 ... ok
[INFO] [stdout] test tests::day21p1 ... ok
[INFO] [stdout] test tests::day21p2 ... ok
[INFO] [stdout] test tests::day22p1 ... ok
[INFO] [stdout] test tests::day07p1 ... ok
[INFO] [stdout] test tests::day23p1 ... ok
[INFO] [stdout] test tests::day24p1 ... ok
[INFO] [stdout] test tests::day16p2 ... ok
[INFO] [stdout] test tests::day19p1 ... ok
[INFO] [stdout] test tests::day02p1 ... ok
[INFO] [stdout] test tests::day17p1 ... ok
[INFO] [stdout] test tests::day14p2 ... ok
[INFO] [stdout] test tests::day19p2 ... ok
[INFO] [stdout] test tests::day20p1 ... ok
[INFO] [stdout] test tests::day25p1 ... ok
[INFO] [stdout] test tests::day20p2 ... ok
[INFO] [stdout] test day17::tests::ex1 ... ok
[INFO] [stdout] test tests::day24p2 ... ok
[INFO] [stdout] test tests::day17p2 ... ok
[INFO] [stdout] test tests::day11p1 ... ok
[INFO] [stdout] test tests::day11p2 ... ok
[INFO] [stdout] test tests::day22p2 ... ok
[INFO] [stdout] test tests::day15p2 ... ok
[INFO] [stdout] test tests::day23p2 ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 68 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 9.46s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df", kill_on_drop: false }`
[INFO] [stdout] fdef58d619dfa127935504135cec1145e65934db86386e3b43a38870fee415df
