[INFO] fetching crate vinculum 0.1.0...
[INFO] testing vinculum-0.1.0 against beta-2025-09-21 for beta-1.91-3
[INFO] extracting crate vinculum 0.1.0 into /workspace/builds/worker-4-tc2/source
[INFO] started tweaking crates.io crate vinculum 0.1.0
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate vinculum 0.1.0
[INFO] tweaked toml for crates.io crate vinculum 0.1.0 written to /workspace/builds/worker-4-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate vinculum 0.1.0 on toolchain beta-2025-09-21
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate vinculum 0.1.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" "+beta-2025-09-21" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/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" "+beta-2025-09-21" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 033a55d65eab6b65d0fa607592dce18515b42e7fad7dc8721f8068d484fa952c
[INFO] running `Command { std: "docker" "start" "-a" "033a55d65eab6b65d0fa607592dce18515b42e7fad7dc8721f8068d484fa952c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "033a55d65eab6b65d0fa607592dce18515b42e7fad7dc8721f8068d484fa952c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "033a55d65eab6b65d0fa607592dce18515b42e7fad7dc8721f8068d484fa952c", kill_on_drop: false }`
[INFO] [stdout] 033a55d65eab6b65d0fa607592dce18515b42e7fad7dc8721f8068d484fa952c
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/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" "+beta-2025-09-21" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 2c3321b46da0a015cb6be3915f5d5ceac63834b912ff198f562816f73c4f6ea1
[INFO] running `Command { std: "docker" "start" "-a" "2c3321b46da0a015cb6be3915f5d5ceac63834b912ff198f562816f73c4f6ea1", kill_on_drop: false }`
[INFO] [stderr]    Compiling futures-sink v0.3.31
[INFO] [stderr]    Compiling futures-core v0.3.31
[INFO] [stderr]    Compiling slab v0.4.9
[INFO] [stderr]    Compiling futures-channel v0.3.31
[INFO] [stderr]    Compiling futures-util v0.3.31
[INFO] [stderr]    Compiling futures v0.3.31
[INFO] [stderr]    Compiling vinculum v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:484:19
[INFO] [stdout]     |
[INFO] [stdout] 484 |     fn new(inner: std::collections::hash_set::Iter<M>) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the lifetime is hidden here ^^ the same 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: consistently use `'_`
[INFO] [stdout]     |
[INFO] [stdout] 484 |     fn new(inner: std::collections::hash_set::Iter<'_, M>) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:580:25
[INFO] [stdout]     |
[INFO] [stdout] 580 |     pub fn iter_fossils(&self) -> Fossils<C> {
[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] 580 |     pub fn iter_fossils(&self) -> Fossils<'_, C> {
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:593:32
[INFO] [stdout]     |
[INFO] [stdout] 593 |     pub fn iter_seen_manifests(&self) -> CollectionSeenManifests<M> {
[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] 593 |     pub fn iter_seen_manifests(&self) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/collection.rs:79:19
[INFO] [stdout]    |
[INFO] [stdout] 79 |     fn new(inner: std::collections::hash_set::Iter<M>) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                          ^^ the same lifetime is elided here
[INFO] [stdout]    |                   |
[INFO] [stdout]    |                   the 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: consistently use `'_`
[INFO] [stdout]    |
[INFO] [stdout] 79 |     fn new(inner: std::collections::hash_set::Iter<'_, M>) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]    |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:162:35
[INFO] [stdout]     |
[INFO] [stdout] 162 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<C> {
[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] 162 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:172:35
[INFO] [stdout]     |
[INFO] [stdout] 172 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<C> {
[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] 172 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:182:32
[INFO] [stdout]     |
[INFO] [stdout] 182 |     pub fn iter_seen_manifests(&self) -> BuilderSeenManifests<M> {
[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 iter_seen_manifests(&self) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]     |                                                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:166:35
[INFO] [stdout]     |
[INFO] [stdout] 166 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<C> {
[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] 166 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:176:35
[INFO] [stdout]     |
[INFO] [stdout] 176 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<C> {
[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] 176 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:187:32
[INFO] [stdout]     |
[INFO] [stdout] 187 |     pub fn iter_seen_manifests(&self) -> PipelinedSeenManifests<M> {
[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] 187 |     pub fn iter_seen_manifests(&self) -> PipelinedSeenManifests<'_, M> {
[INFO] [stdout]     |                                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 4.93s
[INFO] running `Command { std: "docker" "inspect" "2c3321b46da0a015cb6be3915f5d5ceac63834b912ff198f562816f73c4f6ea1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "2c3321b46da0a015cb6be3915f5d5ceac63834b912ff198f562816f73c4f6ea1", kill_on_drop: false }`
[INFO] [stdout] 2c3321b46da0a015cb6be3915f5d5ceac63834b912ff198f562816f73c4f6ea1
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/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" "+beta-2025-09-21" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] a963d489b5ea1a77d486e0c5f6e602390f5c462fcd875a7fa7d36936b22e428c
[INFO] running `Command { std: "docker" "start" "-a" "a963d489b5ea1a77d486e0c5f6e602390f5c462fcd875a7fa7d36936b22e428c", kill_on_drop: false }`
[INFO] [stderr]    Compiling syn v2.0.98
[INFO] [stderr]    Compiling libc v0.2.170
[INFO] [stderr]    Compiling getrandom v0.3.1
[INFO] [stderr]    Compiling rustix v0.38.44
[INFO] [stderr]    Compiling bitflags v2.8.0
[INFO] [stderr]    Compiling linux-raw-sys v0.4.15
[INFO] [stderr]    Compiling once_cell v1.20.3
[INFO] [stderr]    Compiling tempfile v3.17.1
[INFO] [stderr]    Compiling thiserror-impl v2.0.11
[INFO] [stderr]    Compiling tokio-macros v2.5.0
[INFO] [stderr]    Compiling tokio v1.43.0
[INFO] [stderr]    Compiling thiserror v2.0.11
[INFO] [stderr]    Compiling vinculum v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:484:19
[INFO] [stdout]     |
[INFO] [stdout] 484 |     fn new(inner: std::collections::hash_set::Iter<M>) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the lifetime is hidden here ^^ the same 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: consistently use `'_`
[INFO] [stdout]     |
[INFO] [stdout] 484 |     fn new(inner: std::collections::hash_set::Iter<'_, M>) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:580:25
[INFO] [stdout]     |
[INFO] [stdout] 580 |     pub fn iter_fossils(&self) -> Fossils<C> {
[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] 580 |     pub fn iter_fossils(&self) -> Fossils<'_, C> {
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:593:32
[INFO] [stdout]     |
[INFO] [stdout] 593 |     pub fn iter_seen_manifests(&self) -> CollectionSeenManifests<M> {
[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] 593 |     pub fn iter_seen_manifests(&self) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/collection.rs:79:19
[INFO] [stdout]    |
[INFO] [stdout] 79 |     fn new(inner: std::collections::hash_set::Iter<M>) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                          ^^ the same lifetime is elided here
[INFO] [stdout]    |                   |
[INFO] [stdout]    |                   the 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: consistently use `'_`
[INFO] [stdout]    |
[INFO] [stdout] 79 |     fn new(inner: std::collections::hash_set::Iter<'_, M>) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]    |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:162:35
[INFO] [stdout]     |
[INFO] [stdout] 162 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<C> {
[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] 162 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:172:35
[INFO] [stdout]     |
[INFO] [stdout] 172 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<C> {
[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] 172 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:182:32
[INFO] [stdout]     |
[INFO] [stdout] 182 |     pub fn iter_seen_manifests(&self) -> BuilderSeenManifests<M> {
[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 iter_seen_manifests(&self) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]     |                                                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:166:35
[INFO] [stdout]     |
[INFO] [stdout] 166 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<C> {
[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] 166 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:176:35
[INFO] [stdout]     |
[INFO] [stdout] 176 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<C> {
[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] 176 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:187:32
[INFO] [stdout]     |
[INFO] [stdout] 187 |     pub fn iter_seen_manifests(&self) -> PipelinedSeenManifests<M> {
[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] 187 |     pub fn iter_seen_manifests(&self) -> PipelinedSeenManifests<'_, M> {
[INFO] [stdout]     |                                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]   --> tests/utilities/mod.rs:14:5
[INFO] [stdout]    |
[INFO] [stdout] 14 | use vinculum_benchmark::repository::{initialize, FileRepository};
[INFO] [stdout]    |     ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `vinculum_benchmark`, use `cargo add vinculum_benchmark` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `vinculum_benchmark`
[INFO] [stdout]   --> tests/utilities/mod.rs:15:5
[INFO] [stdout]    |
[INFO] [stdout] 15 | use vinculum_benchmark::{ChunkID, ID};
[INFO] [stdout]    |     ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `vinculum_benchmark`, use `cargo add vinculum_benchmark` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `vinculum_benchmark`
[INFO] [stdout]   --> tests/collection.rs:13:5
[INFO] [stdout]    |
[INFO] [stdout] 13 | use vinculum_benchmark::{ChunkID, ID};
[INFO] [stdout]    |     ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `vinculum_benchmark`, use `cargo add vinculum_benchmark` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]   --> tests/utilities/mod.rs:14:5
[INFO] [stdout]    |
[INFO] [stdout] 14 | use vinculum_benchmark::repository::{initialize, FileRepository};
[INFO] [stdout]    |     ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `vinculum_benchmark`, use `cargo add vinculum_benchmark` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `vinculum_benchmark`
[INFO] [stdout]   --> tests/utilities/mod.rs:15:5
[INFO] [stdout]    |
[INFO] [stdout] 15 | use vinculum_benchmark::{ChunkID, ID};
[INFO] [stdout]    |     ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `vinculum_benchmark`, use `cargo add vinculum_benchmark` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `vinculum_benchmark`
[INFO] [stdout]   --> tests/deletion.rs:15:5
[INFO] [stdout]    |
[INFO] [stdout] 15 | use vinculum_benchmark::{ChunkID, ID};
[INFO] [stdout]    |     ^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `vinculum_benchmark`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `vinculum_benchmark`, use `cargo add vinculum_benchmark` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `vinculum` (test "deletion") due to 3 previous errors
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `vinculum` (test "collection") due to 3 previous errors
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:484:19
[INFO] [stdout]     |
[INFO] [stdout] 484 |     fn new(inner: std::collections::hash_set::Iter<M>) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the lifetime is hidden here ^^ the same 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: consistently use `'_`
[INFO] [stdout]     |
[INFO] [stdout] 484 |     fn new(inner: std::collections::hash_set::Iter<'_, M>) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:580:25
[INFO] [stdout]     |
[INFO] [stdout] 580 |     pub fn iter_fossils(&self) -> Fossils<C> {
[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] 580 |     pub fn iter_fossils(&self) -> Fossils<'_, C> {
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:593:32
[INFO] [stdout]     |
[INFO] [stdout] 593 |     pub fn iter_seen_manifests(&self) -> CollectionSeenManifests<M> {
[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] 593 |     pub fn iter_seen_manifests(&self) -> CollectionSeenManifests<'_, M> {
[INFO] [stdout]     |                                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/collection.rs:79:19
[INFO] [stdout]    |
[INFO] [stdout] 79 |     fn new(inner: std::collections::hash_set::Iter<M>) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                          ^^ the same lifetime is elided here
[INFO] [stdout]    |                   |
[INFO] [stdout]    |                   the 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: consistently use `'_`
[INFO] [stdout]    |
[INFO] [stdout] 79 |     fn new(inner: std::collections::hash_set::Iter<'_, M>) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]    |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:162:35
[INFO] [stdout]     |
[INFO] [stdout] 162 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<C> {
[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] 162 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:172:35
[INFO] [stdout]     |
[INFO] [stdout] 172 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<C> {
[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] 172 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/collection.rs:182:32
[INFO] [stdout]     |
[INFO] [stdout] 182 |     pub fn iter_seen_manifests(&self) -> BuilderSeenManifests<M> {
[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 iter_seen_manifests(&self) -> BuilderSeenManifests<'_, M> {
[INFO] [stdout]     |                                                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:166:35
[INFO] [stdout]     |
[INFO] [stdout] 166 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<C> {
[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] 166 |     pub fn iter_fossil_candidates(&self) -> FossilCandidates<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:176:35
[INFO] [stdout]     |
[INFO] [stdout] 176 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<C> {
[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] 176 |     pub fn iter_referenced_chunks(&self) -> ReferencedChunks<'_, C> {
[INFO] [stdout]     |                                                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/pipelined.rs:187:32
[INFO] [stdout]     |
[INFO] [stdout] 187 |     pub fn iter_seen_manifests(&self) -> PipelinedSeenManifests<M> {
[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] 187 |     pub fn iter_seen_manifests(&self) -> PipelinedSeenManifests<'_, M> {
[INFO] [stdout]     |                                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "a963d489b5ea1a77d486e0c5f6e602390f5c462fcd875a7fa7d36936b22e428c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a963d489b5ea1a77d486e0c5f6e602390f5c462fcd875a7fa7d36936b22e428c", kill_on_drop: false }`
[INFO] [stdout] a963d489b5ea1a77d486e0c5f6e602390f5c462fcd875a7fa7d36936b22e428c
