[INFO] fetching crate daachorse 1.0.0...
[INFO] testing daachorse-1.0.0 against 1.90.0 for beta-1.91-3
[INFO] extracting crate daachorse 1.0.0 into /workspace/builds/worker-5-tc1/source
[INFO] started tweaking crates.io crate daachorse 1.0.0
[INFO] finished tweaking crates.io crate daachorse 1.0.0
[INFO] tweaked toml for crates.io crate daachorse 1.0.0 written to /workspace/builds/worker-5-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate daachorse 1.0.0 on toolchain 1.90.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 8e640b5ef065b667cf20067c67f5279d3614796ea5212a822e95c3e69c310996
[INFO] running `Command { std: "docker" "start" "-a" "8e640b5ef065b667cf20067c67f5279d3614796ea5212a822e95c3e69c310996", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "8e640b5ef065b667cf20067c67f5279d3614796ea5212a822e95c3e69c310996", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "8e640b5ef065b667cf20067c67f5279d3614796ea5212a822e95c3e69c310996", kill_on_drop: false }`
[INFO] [stdout] 8e640b5ef065b667cf20067c67f5279d3614796ea5212a822e95c3e69c310996
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] ec802e61d8f363f3d7754977f0a68cdc5ee2630ff877eee2ada544e459ef81c7
[INFO] running `Command { std: "docker" "start" "-a" "ec802e61d8f363f3d7754977f0a68cdc5ee2630ff877eee2ada544e459ef81c7", kill_on_drop: false }`
[INFO] [stderr]    Compiling daachorse v1.0.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/build_helper.rs:67:30
[INFO] [stdout]    |
[INFO] [stdout] 67 |     pub const fn vacant_iter(&self) -> VacantIter {
[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] 67 |     pub const fn vacant_iter(&self) -> VacantIter<'_> {
[INFO] [stdout]    |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:179:25
[INFO] [stdout]     |
[INFO] [stdout] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<U8SliceIterator<P>, V>
[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] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:224:35
[INFO] [stdout]     |
[INFO] [stdout] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stdout]     |                                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:271:9
[INFO] [stdout]     |
[INFO] [stdout] 271 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 272 |         haystack: P,
[INFO] [stdout] 273 |     ) -> FindOverlappingIterator<U8SliceIterator<P>, V>
[INFO] [stdout]     |          ---------------------------------------------- the same lifetime is hidden 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] 273 |     ) -> FindOverlappingIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:324:47
[INFO] [stdout]     |
[INFO] [stdout] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<P, V>
[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] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<'_, P, V>
[INFO] [stdout]     |                                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:377:9
[INFO] [stdout]     |
[INFO] [stdout] 377 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 378 |         haystack: P,
[INFO] [stdout] 379 |     ) -> FindOverlappingNoSuffixIterator<U8SliceIterator<P>, V>
[INFO] [stdout]     |          ------------------------------------------------------ the same lifetime is hidden 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] 379 |     ) -> FindOverlappingNoSuffixIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:432:9
[INFO] [stdout]     |
[INFO] [stdout] 432 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 433 |         haystack: P,
[INFO] [stdout] 434 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stdout]     |          ------------------------------------- the same lifetime is hidden 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] 434 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:512:34
[INFO] [stdout]     |
[INFO] [stdout] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:182:25
[INFO] [stdout]     |
[INFO] [stdout] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<StrIterator<P>, V>
[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] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:231:42
[INFO] [stdout]     |
[INFO] [stdout] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:278:9
[INFO] [stdout]     |
[INFO] [stdout] 278 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 279 |         haystack: P,
[INFO] [stdout] 280 |     ) -> FindOverlappingIterator<StrIterator<P>, V>
[INFO] [stdout]     |          ------------------------------------------ the same lifetime is hidden 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] 280 |     ) -> FindOverlappingIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:336:9
[INFO] [stdout]     |
[INFO] [stdout] 336 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 337 |         haystack: P,
[INFO] [stdout] 338 |     ) -> FindOverlappingIterator<P, V>
[INFO] [stdout]     |          ----------------------------- the same lifetime is hidden 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] 338 |     ) -> FindOverlappingIterator<'_, P, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:391:9
[INFO] [stdout]     |
[INFO] [stdout] 391 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 392 |         haystack: P,
[INFO] [stdout] 393 |     ) -> FindOverlappingNoSuffixIterator<StrIterator<P>, V>
[INFO] [stdout]     |          -------------------------------------------------- the same lifetime is hidden 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] 393 |     ) -> FindOverlappingNoSuffixIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:450:9
[INFO] [stdout]     |
[INFO] [stdout] 450 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 451 |         haystack: P,
[INFO] [stdout] 452 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stdout]     |          ------------------------------------- the same lifetime is hidden 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] 452 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:530:34
[INFO] [stdout]     |
[INFO] [stdout] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.75s
[INFO] running `Command { std: "docker" "inspect" "ec802e61d8f363f3d7754977f0a68cdc5ee2630ff877eee2ada544e459ef81c7", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "ec802e61d8f363f3d7754977f0a68cdc5ee2630ff877eee2ada544e459ef81c7", kill_on_drop: false }`
[INFO] [stdout] ec802e61d8f363f3d7754977f0a68cdc5ee2630ff877eee2ada544e459ef81c7
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 5af49f168bf530015de78b5d7a51b2c3abcca0a02a5070206db2d927afa2ec20
[INFO] running `Command { std: "docker" "start" "-a" "5af49f168bf530015de78b5d7a51b2c3abcca0a02a5070206db2d927afa2ec20", kill_on_drop: false }`
[INFO] [stderr]    Compiling daachorse v1.0.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/build_helper.rs:67:30
[INFO] [stdout]    |
[INFO] [stdout] 67 |     pub const fn vacant_iter(&self) -> VacantIter {
[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] 67 |     pub const fn vacant_iter(&self) -> VacantIter<'_> {
[INFO] [stdout]    |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:179:25
[INFO] [stdout]     |
[INFO] [stdout] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<U8SliceIterator<P>, V>
[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] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:224:35
[INFO] [stdout]     |
[INFO] [stdout] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stdout]     |                                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:271:9
[INFO] [stdout]     |
[INFO] [stdout] 271 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 272 |         haystack: P,
[INFO] [stdout] 273 |     ) -> FindOverlappingIterator<U8SliceIterator<P>, V>
[INFO] [stdout]     |          ---------------------------------------------- the same lifetime is hidden 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] 273 |     ) -> FindOverlappingIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:324:47
[INFO] [stdout]     |
[INFO] [stdout] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<P, V>
[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] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<'_, P, V>
[INFO] [stdout]     |                                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:377:9
[INFO] [stdout]     |
[INFO] [stdout] 377 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 378 |         haystack: P,
[INFO] [stdout] 379 |     ) -> FindOverlappingNoSuffixIterator<U8SliceIterator<P>, V>
[INFO] [stdout]     |          ------------------------------------------------------ the same lifetime is hidden 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] 379 |     ) -> FindOverlappingNoSuffixIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:432:9
[INFO] [stdout]     |
[INFO] [stdout] 432 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 433 |         haystack: P,
[INFO] [stdout] 434 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stdout]     |          ------------------------------------- the same lifetime is hidden 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] 434 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:512:34
[INFO] [stdout]     |
[INFO] [stdout] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:182:25
[INFO] [stdout]     |
[INFO] [stdout] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<StrIterator<P>, V>
[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] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:231:42
[INFO] [stdout]     |
[INFO] [stdout] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:278:9
[INFO] [stdout]     |
[INFO] [stdout] 278 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 279 |         haystack: P,
[INFO] [stdout] 280 |     ) -> FindOverlappingIterator<StrIterator<P>, V>
[INFO] [stdout]     |          ------------------------------------------ the same lifetime is hidden 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] 280 |     ) -> FindOverlappingIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:336:9
[INFO] [stdout]     |
[INFO] [stdout] 336 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 337 |         haystack: P,
[INFO] [stdout] 338 |     ) -> FindOverlappingIterator<P, V>
[INFO] [stdout]     |          ----------------------------- the same lifetime is hidden 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] 338 |     ) -> FindOverlappingIterator<'_, P, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:391:9
[INFO] [stdout]     |
[INFO] [stdout] 391 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 392 |         haystack: P,
[INFO] [stdout] 393 |     ) -> FindOverlappingNoSuffixIterator<StrIterator<P>, V>
[INFO] [stdout]     |          -------------------------------------------------- the same lifetime is hidden 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] 393 |     ) -> FindOverlappingNoSuffixIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:450:9
[INFO] [stdout]     |
[INFO] [stdout] 450 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 451 |         haystack: P,
[INFO] [stdout] 452 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stdout]     |          ------------------------------------- the same lifetime is hidden 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] 452 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:530:34
[INFO] [stdout]     |
[INFO] [stdout] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/build_helper.rs:67:30
[INFO] [stdout]    |
[INFO] [stdout] 67 |     pub const fn vacant_iter(&self) -> VacantIter {
[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] 67 |     pub const fn vacant_iter(&self) -> VacantIter<'_> {
[INFO] [stdout]    |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:179:25
[INFO] [stdout]     |
[INFO] [stdout] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<U8SliceIterator<P>, V>
[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] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:224:35
[INFO] [stdout]     |
[INFO] [stdout] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stdout]     |                                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:271:9
[INFO] [stdout]     |
[INFO] [stdout] 271 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 272 |         haystack: P,
[INFO] [stdout] 273 |     ) -> FindOverlappingIterator<U8SliceIterator<P>, V>
[INFO] [stdout]     |          ---------------------------------------------- the same lifetime is hidden 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] 273 |     ) -> FindOverlappingIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:324:47
[INFO] [stdout]     |
[INFO] [stdout] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<P, V>
[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] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<'_, P, V>
[INFO] [stdout]     |                                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:377:9
[INFO] [stdout]     |
[INFO] [stdout] 377 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 378 |         haystack: P,
[INFO] [stdout] 379 |     ) -> FindOverlappingNoSuffixIterator<U8SliceIterator<P>, V>
[INFO] [stdout]     |          ------------------------------------------------------ the same lifetime is hidden 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] 379 |     ) -> FindOverlappingNoSuffixIterator<'_, U8SliceIterator<P>, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:432:9
[INFO] [stdout]     |
[INFO] [stdout] 432 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 433 |         haystack: P,
[INFO] [stdout] 434 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stdout]     |          ------------------------------------- the same lifetime is hidden 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] 434 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/bytewise.rs:512:34
[INFO] [stdout]     |
[INFO] [stdout] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:182:25
[INFO] [stdout]     |
[INFO] [stdout] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<StrIterator<P>, V>
[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] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:231:42
[INFO] [stdout]     |
[INFO] [stdout] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:278:9
[INFO] [stdout]     |
[INFO] [stdout] 278 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 279 |         haystack: P,
[INFO] [stdout] 280 |     ) -> FindOverlappingIterator<StrIterator<P>, V>
[INFO] [stdout]     |          ------------------------------------------ the same lifetime is hidden 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] 280 |     ) -> FindOverlappingIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:336:9
[INFO] [stdout]     |
[INFO] [stdout] 336 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 337 |         haystack: P,
[INFO] [stdout] 338 |     ) -> FindOverlappingIterator<P, V>
[INFO] [stdout]     |          ----------------------------- the same lifetime is hidden 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] 338 |     ) -> FindOverlappingIterator<'_, P, V>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:391:9
[INFO] [stdout]     |
[INFO] [stdout] 391 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 392 |         haystack: P,
[INFO] [stdout] 393 |     ) -> FindOverlappingNoSuffixIterator<StrIterator<P>, V>
[INFO] [stdout]     |          -------------------------------------------------- the same lifetime is hidden 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] 393 |     ) -> FindOverlappingNoSuffixIterator<'_, StrIterator<P>, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:450:9
[INFO] [stdout]     |
[INFO] [stdout] 450 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 451 |         haystack: P,
[INFO] [stdout] 452 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stdout]     |          ------------------------------------- the same lifetime is hidden 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] 452 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stdout]     |                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/charwise.rs:530:34
[INFO] [stdout]     |
[INFO] [stdout] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stdout]     |                                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 4.97s
[INFO] running `Command { std: "docker" "inspect" "5af49f168bf530015de78b5d7a51b2c3abcca0a02a5070206db2d927afa2ec20", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "5af49f168bf530015de78b5d7a51b2c3abcca0a02a5070206db2d927afa2ec20", kill_on_drop: false }`
[INFO] [stdout] 5af49f168bf530015de78b5d7a51b2c3abcca0a02a5070206db2d927afa2ec20
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] c0bba9090cb72370069a640ee921f51a6aaa0ef8d1eee5932b03de6895a9b5c7
[INFO] running `Command { std: "docker" "start" "-a" "c0bba9090cb72370069a640ee921f51a6aaa0ef8d1eee5932b03de6895a9b5c7", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/build_helper.rs:67:30
[INFO] [stderr]    |
[INFO] [stderr] 67 |     pub const fn vacant_iter(&self) -> VacantIter {
[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] 67 |     pub const fn vacant_iter(&self) -> VacantIter<'_> {
[INFO] [stderr]    |                                                  ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:179:25
[INFO] [stderr]     |
[INFO] [stderr] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<U8SliceIterator<P>, V>
[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] 179 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, U8SliceIterator<P>, V>
[INFO] [stderr]     |                                                             +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:224:35
[INFO] [stderr]     |
[INFO] [stderr] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 224 |     pub fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stderr]     |                                                                       +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:271:9
[INFO] [stderr]     |
[INFO] [stderr] 271 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 272 |         haystack: P,
[INFO] [stderr] 273 |     ) -> FindOverlappingIterator<U8SliceIterator<P>, V>
[INFO] [stderr]     |          ---------------------------------------------- the same lifetime is hidden 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] 273 |     ) -> FindOverlappingIterator<'_, U8SliceIterator<P>, V>
[INFO] [stderr]     |                                  +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:324:47
[INFO] [stderr]     |
[INFO] [stderr] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<P, V>
[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] 324 |     pub fn find_overlapping_iter_from_iter<P>(&self, haystack: P) -> FindOverlappingIterator<'_, P, V>
[INFO] [stderr]     |                                                                                              +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:377:9
[INFO] [stderr]     |
[INFO] [stderr] 377 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 378 |         haystack: P,
[INFO] [stderr] 379 |     ) -> FindOverlappingNoSuffixIterator<U8SliceIterator<P>, V>
[INFO] [stderr]     |          ------------------------------------------------------ the same lifetime is hidden 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] 379 |     ) -> FindOverlappingNoSuffixIterator<'_, U8SliceIterator<P>, V>
[INFO] [stderr]     |                                          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:432:9
[INFO] [stderr]     |
[INFO] [stderr] 432 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 433 |         haystack: P,
[INFO] [stderr] 434 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stderr]     |          ------------------------------------- the same lifetime is hidden 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] 434 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stderr]     |                                          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/bytewise.rs:512:34
[INFO] [stderr]     |
[INFO] [stderr] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 512 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stderr]     |                                                                              +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:182:25
[INFO] [stderr]     |
[INFO] [stderr] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<StrIterator<P>, V>
[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] 182 |     pub fn find_iter<P>(&self, haystack: P) -> FindIterator<'_, StrIterator<P>, V>
[INFO] [stderr]     |                                                             +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:231:42
[INFO] [stderr]     |
[INFO] [stderr] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<P, V>
[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] 231 |     pub unsafe fn find_iter_from_iter<P>(&self, haystack: P) -> FindIterator<'_, P, V>
[INFO] [stderr]     |                                                                              +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:278:9
[INFO] [stderr]     |
[INFO] [stderr] 278 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 279 |         haystack: P,
[INFO] [stderr] 280 |     ) -> FindOverlappingIterator<StrIterator<P>, V>
[INFO] [stderr]     |          ------------------------------------------ the same lifetime is hidden 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] 280 |     ) -> FindOverlappingIterator<'_, StrIterator<P>, V>
[INFO] [stderr]     |                                  +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:336:9
[INFO] [stderr]     |
[INFO] [stderr] 336 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 337 |         haystack: P,
[INFO] [stderr] 338 |     ) -> FindOverlappingIterator<P, V>
[INFO] [stderr]     |          ----------------------------- the same lifetime is hidden 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] 338 |     ) -> FindOverlappingIterator<'_, P, V>
[INFO] [stderr]     |                                  +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:391:9
[INFO] [stderr]     |
[INFO] [stderr] 391 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 392 |         haystack: P,
[INFO] [stderr] 393 |     ) -> FindOverlappingNoSuffixIterator<StrIterator<P>, V>
[INFO] [stderr]     |          -------------------------------------------------- the same lifetime is hidden 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] 393 |     ) -> FindOverlappingNoSuffixIterator<'_, StrIterator<P>, V>
[INFO] [stderr]     |                                          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:450:9
[INFO] [stderr]     |
[INFO] [stderr] 450 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 451 |         haystack: P,
[INFO] [stderr] 452 |     ) -> FindOverlappingNoSuffixIterator<P, V>
[INFO] [stderr]     |          ------------------------------------- the same lifetime is hidden 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] 452 |     ) -> FindOverlappingNoSuffixIterator<'_, P, V>
[INFO] [stderr]     |                                          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/charwise.rs:530:34
[INFO] [stderr]     |
[INFO] [stderr] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<P, V>
[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] 530 |     pub fn leftmost_find_iter<P>(&self, haystack: P) -> LestmostFindIterator<'_, P, V>
[INFO] [stderr]     |                                                                              +++
[INFO] [stderr] 
[INFO] [stderr] warning: `daachorse` (lib) generated 15 warnings
[INFO] [stderr] warning: `daachorse` (lib test) generated 15 warnings (15 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.10s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/daachorse-3baace19d1fb8cb9)
[INFO] [stdout] 
[INFO] [stdout] running 26 tests
[INFO] [stdout] test bytewise::tests::test_double_array ... ok
[INFO] [stdout] test bytewise::tests::test_n_blocks_1_2 ... ok
[INFO] [stdout] test bytewise::tests::test_input_order ... ok
[INFO] [stdout] test bytewise::tests::test_serialize_pma ... ok
[INFO] [stdout] test bytewise::tests::test_n_blocks_2_2 ... ok
[INFO] [stdout] test bytewise::tests::test_n_blocks_1_1 ... ok
[INFO] [stdout] test bytewise::tests::test_n_blocks_2_1 ... ok
[INFO] [stdout] test bytewise::tests::test_num_states ... ok
[INFO] [stdout] test bytewise::tests::test_serialize_state ... ok
[INFO] [stdout] test charwise::mapper::tests::test_charwise_code_mapper ... ok
[INFO] [stdout] test charwise::mapper::tests::test_serialize ... ok
[INFO] [stdout] test charwise::tests::test_n_blocks_1_1 ... ok
[INFO] [stdout] test charwise::tests::test_n_blocks_1_2 ... ok
[INFO] [stdout] test charwise::tests::test_serialize_state ... ok
[INFO] [stdout] test serializer::tests::test_nzu32 ... ok
[INFO] [stdout] test serializer::tests::test_u32 ... ok
[INFO] [stdout] test serializer::tests::test_vec_u32 ... ok
[INFO] [stdout] test tests::test_serialize_match_kind ... ok
[INFO] [stdout] test tests::test_serialize_output ... ok
[INFO] [stdout] test charwise::tests::test_n_blocks_2_1 ... ok
[INFO] [stdout] test charwise::tests::test_num_states ... ok
[INFO] [stdout] test charwise::tests::test_n_blocks_2_2 ... ok
[INFO] [stdout] test charwise::tests::test_input_order ... ok
[INFO] [stdout] test charwise::iter::tests::test_char_with_end_offset_iterator ... ok
[INFO] [stdout] test charwise::tests::test_serialize_pma ... ok
[INFO] [stderr]      Running tests/aho_corasick_crate_test.rs (/opt/rustwide/target/debug/deps/aho_corasick_crate_test-3e8578c9e1a08be1)
[INFO] [stdout] test charwise::tests::test_double_array ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 26 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.08s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 9 tests
[INFO] [stdout] test search_leftmost_longest_charwise ... ok
[INFO] [stdout] test search_leftmost_first_charwise ... ok
[INFO] [stdout] test search_standard_non_overlapping_charwise ... ok
[INFO] [stdout] test search_standard_overlapping_charwise ... ok
[INFO] [stdout] test search_tests_have_unique_names ... ok
[INFO] [stdout] test search_standard_non_overlapping ... ok
[INFO] [stdout] test search_standard_overlapping ... ok
[INFO] [stdout] test search_leftmost_first ... ok
[INFO] [stdout] test search_leftmost_longest ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/invalid_option_test.rs (/opt/rustwide/target/debug/deps/invalid_option_test-4aee14abc00eadeb)
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test test_large_num_free_blocks ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/invalid_pattern_charwise_test.rs (/opt/rustwide/target/debug/deps/invalid_pattern_charwise_test-60806fe0f37ac013)
[INFO] [stdout] 
[INFO] [stdout] running 12 tests
[INFO] [stdout] test test_duplicate_patterns ... ok
[INFO] [stdout] test test_duplicate_patterns_with_matchkind_leftmost_first ... ok
[INFO] [stdout] test test_duplicate_patterns_with_matchkind_leftmost_longest ... ok
[INFO] [stdout] test test_empty_pattern ... ok
[INFO] [stdout] test test_empty_pattern_with_matchkind_leftmost_first ... ok
[INFO] [stdout] test test_empty_pattern_with_matchkind_standard ... ok
[INFO] [stdout] test test_empty_set ... ok
[INFO] [stdout] test test_empty_set_with_matchkind_leftmost_first ... ok
[INFO] [stdout] test test_empty_set_with_matchkind_leftmost_longest ... ok
[INFO] [stderr]      Running tests/invalid_pattern_test.rs (/opt/rustwide/target/debug/deps/invalid_pattern_test-806566753436df80)
[INFO] [stdout] test test_empty_pattern_with_matchkind_leftmost_longest ... ok
[INFO] [stdout] test test_empty_set_with_matchkind_standard ... ok
[INFO] [stdout] test test_duplicate_patterns_with_matchkind_standard ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 12 tests
[INFO] [stdout] test test_duplicate_patterns_with_matchkind_leftmost_first ... ok
[INFO] [stdout] test test_duplicate_patterns ... ok
[INFO] [stdout] test test_duplicate_patterns_with_matchkind_leftmost_longest ... ok
[INFO] [stdout] test test_empty_pattern_with_matchkind_leftmost_longest ... ok
[INFO] [stdout] test test_empty_set_with_matchkind_leftmost_longest ... ok
[INFO] [stdout] test test_empty_pattern ... ok
[INFO] [stdout] test test_empty_set_with_matchkind_standard ... ok
[INFO] [stdout] test test_empty_pattern_with_matchkind_standard ... ok
[INFO] [stdout] test test_empty_pattern_with_matchkind_leftmost_first ... ok
[INFO] [stdout] test test_empty_set_with_matchkind_leftmost_first ... ok
[INFO] [stdout] test test_duplicate_patterns_with_matchkind_standard ... ok
[INFO] [stderr]      Running tests/matchkind_mismatch_charwise_test.rs (/opt/rustwide/target/debug/deps/matchkind_mismatch_charwise_test-6dcd55c8f546dd14)
[INFO] [stdout] test test_empty_set ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 7 tests
[INFO] [stdout] test test_find_iter_with_leftmost_longest - should panic ... ok
[INFO] [stdout] test test_find_iter_with_leftmost_first - should panic ... ok
[INFO] [stdout] test test_find_overlapping_iter_with_leftmost_longest - should panic ... ok
[INFO] [stdout] test test_find_overlapping_iter_with_leftmost_first - should panic ... ok
[INFO] [stdout] test test_find_overlapping_no_suffix_iter_with_leftmost_first - should panic ... ok
[INFO] [stdout] test test_leftmost_find_iter_with_standard - should panic ... ok
[INFO] [stdout] test test_find_overlapping_no_suffix_iter_with_leftmost_longest - should panic ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.06s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 7 tests
[INFO] [stdout] test test_find_overlapping_iter_with_leftmost_first - should panic ... ok
[INFO] [stdout] test test_find_overlapping_iter_with_leftmost_longest - should panic ... ok
[INFO] [stdout] test test_find_overlapping_no_suffix_iter_with_leftmost_first - should panic ... ok
[INFO] [stdout] test test_find_overlapping_no_suffix_iter_with_leftmost_longest - should panic ... ok
[INFO] [stdout] test test_find_iter_with_leftmost_first - should panic ... ok
[INFO] [stdout] test test_find_iter_with_leftmost_longest - should panic ... ok
[INFO] [stdout] test test_leftmost_find_iter_with_standard - should panic ... 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]      Running tests/matchkind_mismatch_test.rs (/opt/rustwide/target/debug/deps/matchkind_mismatch_test-aaa9852a86d0daf8)
[INFO] [stderr]    Doc-tests daachorse
[INFO] [stdout] 
[INFO] [stdout] running 42 tests
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::find_overlapping_no_suffix_iter (line 360) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::find_iter_from_iter (line 206) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::deserialize_unchecked (line 608) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::heap_bytes (line 531) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::find_overlapping_no_suffix_iter_from_iter (line 413) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::find_iter (line 163) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::find_overlapping_iter (line 251) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::find_overlapping_iter_from_iter (line 303) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::leftmost_find_iter (line 496) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::new (line 80) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::leftmost_find_iter (line 477) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::with_values (line 122) ... ok
[INFO] [stdout] test src/bytewise/builder.rs - bytewise::builder::DoubleArrayAhoCorasickBuilder::build (line 136) ... ok
[INFO] [stdout] test src/bytewise/builder.rs - bytewise::builder::DoubleArrayAhoCorasickBuilder::new (line 37) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::serialize (line 566) ... ok
[INFO] [stdout] test src/bytewise.rs - bytewise::DoubleArrayAhoCorasick<V>::num_states (line 549) ... ok
[INFO] [stdout] test src/bytewise/builder.rs - bytewise::builder::DoubleArrayAhoCorasickBuilder::match_kind (line 72) ... ok
[INFO] [stdout] test src/bytewise/builder.rs - bytewise::builder::DoubleArrayAhoCorasickBuilder::build_with_values (line 188) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::find_iter (line 166) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::find_overlapping_iter (line 258) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::deserialize_unchecked (line 646) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::find_overlapping_iter_from_iter (line 314) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::find_overlapping_no_suffix_iter_from_iter (line 431) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::find_overlapping_no_suffix_iter (line 374) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::leftmost_find_iter (line 495) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::leftmost_find_iter (line 514) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::find_iter_from_iter (line 213) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::new (line 86) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::heap_bytes (line 583) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::num_states (line 549) ... ok
[INFO] [stdout] test src/charwise/builder.rs - charwise::builder::CharwiseDoubleArrayAhoCorasickBuilder::build_with_values (line 167) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::with_values (line 128) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::serialize (line 602) ... ok
[INFO] [stdout] test src/charwise.rs - charwise::CharwiseDoubleArrayAhoCorasick<V>::num_elements (line 566) ... ok
[INFO] [stdout] test src/lib.rs - (line 128) ... ok
[INFO] [stdout] test src/charwise/builder.rs - charwise::builder::CharwiseDoubleArrayAhoCorasickBuilder::build (line 115) ... ok
[INFO] [stdout] test src/lib.rs - (line 106) ... ok
[INFO] [stdout] test src/charwise/builder.rs - charwise::builder::CharwiseDoubleArrayAhoCorasickBuilder::new (line 37) ... ok
[INFO] [stdout] test src/lib.rs - (line 28) ... ok
[INFO] [stdout] test src/lib.rs - (line 157) ... ok
[INFO] [stdout] test src/lib.rs - (line 79) ... ok
[INFO] [stdout] test src/lib.rs - (line 56) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 42 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 10.83s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "c0bba9090cb72370069a640ee921f51a6aaa0ef8d1eee5932b03de6895a9b5c7", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "c0bba9090cb72370069a640ee921f51a6aaa0ef8d1eee5932b03de6895a9b5c7", kill_on_drop: false }`
[INFO] [stdout] c0bba9090cb72370069a640ee921f51a6aaa0ef8d1eee5932b03de6895a9b5c7
