[INFO] fetching crate minced-parser 2.0.0...
[INFO] testing minced-parser-2.0.0 against 1.91.0 for beta-1.92-2
[INFO] extracting crate minced-parser 2.0.0 into /workspace/builds/worker-1-tc1/source
[INFO] started tweaking crates.io crate minced-parser 2.0.0
[INFO] finished tweaking crates.io crate minced-parser 2.0.0
[INFO] tweaked toml for crates.io crate minced-parser 2.0.0 written to /workspace/builds/worker-1-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate minced-parser 2.0.0 on toolchain 1.91.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.91.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate minced-parser 2.0.0 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.91.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] a3b875799942800e7d39839445e61dda77afc52f764a3863a2eaa834f1264c06
[INFO] running `Command { std: "docker" "start" "-a" "a3b875799942800e7d39839445e61dda77afc52f764a3863a2eaa834f1264c06", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "a3b875799942800e7d39839445e61dda77afc52f764a3863a2eaa834f1264c06", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a3b875799942800e7d39839445e61dda77afc52f764a3863a2eaa834f1264c06", kill_on_drop: false }`
[INFO] [stdout] a3b875799942800e7d39839445e61dda77afc52f764a3863a2eaa834f1264c06
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] ed241f5a3aaa99203993e26ba2b52063791f99f91ddfde9da41edb70dbb66078
[INFO] running `Command { std: "docker" "start" "-a" "ed241f5a3aaa99203993e26ba2b52063791f99f91ddfde9da41edb70dbb66078", kill_on_drop: false }`
[INFO] [stderr]    Compiling memchr v2.5.0
[INFO] [stderr]    Compiling nom v7.1.3
[INFO] [stderr]    Compiling minced-parser v2.0.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/lib.rs:98:21
[INFO] [stdout]    |
[INFO] [stdout] 98 | pub fn parse(input: &str) -> Result<Vec<Contig>, Err<Error<&str>>> {
[INFO] [stdout]    |                     ^^^^                ^^^^^^             ^^^^ the same lifetime is elided here
[INFO] [stdout]    |                     |                   |
[INFO] [stdout]    |                     |                   the same lifetime is hidden 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] note: the lint level is defined here
[INFO] [stdout]   --> src/lib.rs:1:9
[INFO] [stdout]    |
[INFO] [stdout]  1 | #![deny(warnings, missing_docs)]
[INFO] [stdout]    |         ^^^^^^^^
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]`
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 98 | pub fn parse(input: &str) -> Result<Vec<Contig<'_>>, Err<Error<&str>>> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:107:31
[INFO] [stdout]     |
[INFO] [stdout] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig> {
[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] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig<'_>> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:128:23
[INFO] [stdout]     |
[INFO] [stdout] 128 | fn parse_array(input: &str) -> IResult<&str, Array> {
[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] 128 | fn parse_array(input: &str) -> IResult<&str, Array<'_>> {
[INFO] [stdout]     |                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:232:36
[INFO] [stdout]     |
[INFO] [stdout] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat> {
[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] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:237:29
[INFO] [stdout]     |
[INFO] [stdout] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat> {
[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] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:256:36
[INFO] [stdout]     |
[INFO] [stdout] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat> {
[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] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 3.45s
[INFO] running `Command { std: "docker" "inspect" "ed241f5a3aaa99203993e26ba2b52063791f99f91ddfde9da41edb70dbb66078", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "ed241f5a3aaa99203993e26ba2b52063791f99f91ddfde9da41edb70dbb66078", kill_on_drop: false }`
[INFO] [stdout] ed241f5a3aaa99203993e26ba2b52063791f99f91ddfde9da41edb70dbb66078
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 7f0ec15119645a875e39730a359195bf218f25be1c13e9eeac2c428639d754a8
[INFO] running `Command { std: "docker" "start" "-a" "7f0ec15119645a875e39730a359195bf218f25be1c13e9eeac2c428639d754a8", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/lib.rs:98:21
[INFO] [stdout]    |
[INFO] [stdout] 98 | pub fn parse(input: &str) -> Result<Vec<Contig>, Err<Error<&str>>> {
[INFO] [stdout]    |                     ^^^^                ^^^^^^             ^^^^ the same lifetime is elided here
[INFO] [stdout]    |                     |                   |
[INFO] [stdout]    |                     |                   the same lifetime is hidden 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] note: the lint level is defined here
[INFO] [stdout]   --> src/lib.rs:1:9
[INFO] [stdout]    |
[INFO] [stdout]  1 | #![deny(warnings, missing_docs)]
[INFO] [stdout]    |         ^^^^^^^^
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]`
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 98 | pub fn parse(input: &str) -> Result<Vec<Contig<'_>>, Err<Error<&str>>> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:107:31
[INFO] [stdout]     |
[INFO] [stdout] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig> {
[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] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig<'_>> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:128:23
[INFO] [stdout]     |
[INFO] [stdout] 128 | fn parse_array(input: &str) -> IResult<&str, Array> {
[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] 128 | fn parse_array(input: &str) -> IResult<&str, Array<'_>> {
[INFO] [stdout]     |                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:232:36
[INFO] [stdout]     |
[INFO] [stdout] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat> {
[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] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:237:29
[INFO] [stdout]     |
[INFO] [stdout] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat> {
[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] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling minced-parser v2.0.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:256:36
[INFO] [stdout]     |
[INFO] [stdout] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat> {
[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] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/lib.rs:98:21
[INFO] [stdout]    |
[INFO] [stdout] 98 | pub fn parse(input: &str) -> Result<Vec<Contig>, Err<Error<&str>>> {
[INFO] [stdout]    |                     ^^^^                ^^^^^^             ^^^^ the same lifetime is elided here
[INFO] [stdout]    |                     |                   |
[INFO] [stdout]    |                     |                   the same lifetime is hidden 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] note: the lint level is defined here
[INFO] [stdout]   --> src/lib.rs:1:9
[INFO] [stdout]    |
[INFO] [stdout]  1 | #![deny(warnings, missing_docs)]
[INFO] [stdout]    |         ^^^^^^^^
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]`
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 98 | pub fn parse(input: &str) -> Result<Vec<Contig<'_>>, Err<Error<&str>>> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:107:31
[INFO] [stdout]     |
[INFO] [stdout] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig> {
[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] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig<'_>> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:128:23
[INFO] [stdout]     |
[INFO] [stdout] 128 | fn parse_array(input: &str) -> IResult<&str, Array> {
[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] 128 | fn parse_array(input: &str) -> IResult<&str, Array<'_>> {
[INFO] [stdout]     |                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:232:36
[INFO] [stdout]     |
[INFO] [stdout] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat> {
[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] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:237:29
[INFO] [stdout]     |
[INFO] [stdout] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat> {
[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] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:256:36
[INFO] [stdout]     |
[INFO] [stdout] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat> {
[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] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stdout]     |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.84s
[INFO] running `Command { std: "docker" "inspect" "7f0ec15119645a875e39730a359195bf218f25be1c13e9eeac2c428639d754a8", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "7f0ec15119645a875e39730a359195bf218f25be1c13e9eeac2c428639d754a8", kill_on_drop: false }`
[INFO] [stdout] 7f0ec15119645a875e39730a359195bf218f25be1c13e9eeac2c428639d754a8
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 5740c2fdbd575a49de6793771ef4ecef46b7a946d2082de0c9573d4a10027c6b
[INFO] running `Command { std: "docker" "start" "-a" "5740c2fdbd575a49de6793771ef4ecef46b7a946d2082de0c9573d4a10027c6b", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/lib.rs:98:21
[INFO] [stderr]    |
[INFO] [stderr] 98 | pub fn parse(input: &str) -> Result<Vec<Contig>, Err<Error<&str>>> {
[INFO] [stderr]    |                     ^^^^                ^^^^^^             ^^^^ the same lifetime is elided here
[INFO] [stderr]    |                     |                   |
[INFO] [stderr]    |                     |                   the same lifetime is hidden 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] note: the lint level is defined here
[INFO] [stderr]   --> src/lib.rs:1:9
[INFO] [stderr]    |
[INFO] [stderr]  1 | #![deny(warnings, missing_docs)]
[INFO] [stderr]    |         ^^^^^^^^
[INFO] [stderr]    = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]`
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 98 | pub fn parse(input: &str) -> Result<Vec<Contig<'_>>, Err<Error<&str>>> {
[INFO] [stderr]    |                                               ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:107:31
[INFO] [stderr]     |
[INFO] [stderr] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig> {
[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] 107 | fn parse_contig_arrays(input: &str) -> IResult<&str, Contig<'_>> {
[INFO] [stderr]     |                                                            ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:128:23
[INFO] [stderr]     |
[INFO] [stderr] 128 | fn parse_array(input: &str) -> IResult<&str, Array> {
[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] 128 | fn parse_array(input: &str) -> IResult<&str, Array<'_>> {
[INFO] [stderr]     |                                                   ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:232:36
[INFO] [stderr]     |
[INFO] [stderr] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat> {
[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] 232 | fn parse_repeat_spacer_line(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stderr]     |                                                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:237:29
[INFO] [stderr]     |
[INFO] [stderr] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat> {
[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] 237 | fn parse_repeat_only(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stderr]     |                                                          ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:256:36
[INFO] [stderr]     |
[INFO] [stderr] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat> {
[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] 256 | fn parse_repeat_with_spacer(input: &str) -> IResult<&str, Repeat<'_>> {
[INFO] [stderr]     |                                                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `minced-parser` (lib) generated 6 warnings (run `cargo fix --lib -p minced-parser` to apply 6 suggestions)
[INFO] [stderr] warning: `minced-parser` (lib test) generated 6 warnings (6 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.04s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/minced_parser-53690b80c5b8b0f9)
[INFO] [stdout] 
[INFO] [stdout] running 7 tests
[INFO] [stdout] test tests::test_parse_accession_line ... ok
[INFO] [stdout] test tests::test_parse ... ok
[INFO] [stdout] test tests::test_parse_array ... ok
[INFO] [stdout] test tests::test_parse_contig_arrays ... ok
[INFO] [stdout] test tests::test_parse_crispr_order_and_coordinates ... ok
[INFO] [stdout] test tests::test_parse_repeat_spacer ... ok
[INFO] [stdout] test tests::test_parse_repeat_only_line ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests minced_parser
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test src/lib.rs - (line 7) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.25s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "5740c2fdbd575a49de6793771ef4ecef46b7a946d2082de0c9573d4a10027c6b", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "5740c2fdbd575a49de6793771ef4ecef46b7a946d2082de0c9573d4a10027c6b", kill_on_drop: false }`
[INFO] [stdout] 5740c2fdbd575a49de6793771ef4ecef46b7a946d2082de0c9573d4a10027c6b
