[INFO] fetching crate colorable 0.1.4...
[INFO] testing colorable-0.1.4 against 1.90.0 for beta-1.91-3
[INFO] extracting crate colorable 0.1.4 into /workspace/builds/worker-1-tc1/source
[INFO] started tweaking crates.io crate colorable 0.1.4
[INFO] finished tweaking crates.io crate colorable 0.1.4
[INFO] tweaked toml for crates.io crate colorable 0.1.4 written to /workspace/builds/worker-1-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate colorable 0.1.4 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-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] e8f100af925ee618c4ff645f549ba08f6cfb8053e707b4d0726b4d537de07d60
[INFO] running `Command { std: "docker" "start" "-a" "e8f100af925ee618c4ff645f549ba08f6cfb8053e707b4d0726b4d537de07d60", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "e8f100af925ee618c4ff645f549ba08f6cfb8053e707b4d0726b4d537de07d60", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "e8f100af925ee618c4ff645f549ba08f6cfb8053e707b4d0726b4d537de07d60", kill_on_drop: false }`
[INFO] [stdout] e8f100af925ee618c4ff645f549ba08f6cfb8053e707b4d0726b4d537de07d60
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] dc4b48eb39e1d9a6f63394d5e96651bfb3656326130bd1d6d75774e0d65e8869
[INFO] running `Command { std: "docker" "start" "-a" "dc4b48eb39e1d9a6f63394d5e96651bfb3656326130bd1d6d75774e0d65e8869", kill_on_drop: false }`
[INFO] [stderr]    Compiling colorable v0.1.4 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:156:14
[INFO] [stdout]     |
[INFO] [stdout] 156 |     fn black(&self) -> Colored<Self>
[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] 156 |     fn black(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:165:12
[INFO] [stdout]     |
[INFO] [stdout] 165 |     fn red(&self) -> Colored<Self>
[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] 165 |     fn red(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:174:14
[INFO] [stdout]     |
[INFO] [stdout] 174 |     fn green(&self) -> Colored<Self>
[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] 174 |     fn green(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:183:13
[INFO] [stdout]     |
[INFO] [stdout] 183 |     fn blue(&self) -> Colored<Self>
[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] 183 |     fn blue(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:192:15
[INFO] [stdout]     |
[INFO] [stdout] 192 |     fn purple(&self) -> Colored<Self>
[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] 192 |     fn purple(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:201:18
[INFO] [stdout]     |
[INFO] [stdout] 201 |     fn dark_cyan(&self) -> Colored<Self>
[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] 201 |     fn dark_cyan(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:210:19
[INFO] [stdout]     |
[INFO] [stdout] 210 |     fn light_grey(&self) -> Colored<Self>
[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] 210 |     fn light_grey(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:219:18
[INFO] [stdout]     |
[INFO] [stdout] 219 |     fn dark_grey(&self) -> Colored<Self>
[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] 219 |     fn dark_grey(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:228:19
[INFO] [stdout]     |
[INFO] [stdout] 228 |     fn bright_red(&self) -> Colored<Self>
[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] 228 |     fn bright_red(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:237:20
[INFO] [stdout]     |
[INFO] [stdout] 237 |     fn light_green(&self) -> Colored<Self>
[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] 237 |     fn light_green(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:246:15
[INFO] [stdout]     |
[INFO] [stdout] 246 |     fn yellow(&self) -> Colored<Self>
[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] 246 |     fn yellow(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:255:19
[INFO] [stdout]     |
[INFO] [stdout] 255 |     fn light_blue(&self) -> Colored<Self>
[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] 255 |     fn light_blue(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:264:16
[INFO] [stdout]     |
[INFO] [stdout] 264 |     fn magenta(&self) -> Colored<Self>
[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] 264 |     fn magenta(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:273:13
[INFO] [stdout]     |
[INFO] [stdout] 273 |     fn cyan(&self) -> Colored<Self>
[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] 273 |     fn cyan(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:282:14
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn white(&self) -> Colored<Self>
[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] 282 |     fn white(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:291:13
[INFO] [stdout]     |
[INFO] [stdout] 291 |     fn bold(&self) -> Colored<Self>
[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] 291 |     fn bold(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:303:15
[INFO] [stdout]     |
[INFO] [stdout] 303 |     fn italic(&self) -> Colored<Self>
[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] 303 |     fn italic(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:315:22
[INFO] [stdout]     |
[INFO] [stdout] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<Self>
[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] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<'_, Self>
[INFO] [stdout]     |                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:324:19
[INFO] [stdout]     |
[INFO] [stdout] 324 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<Self>
[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 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<'_, Self>
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:384:18
[INFO] [stdout]     |
[INFO] [stdout] 384 |     fn black_dbg(&self) -> ColoredDbg<Self>
[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] 384 |     fn black_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:393:16
[INFO] [stdout]     |
[INFO] [stdout] 393 |     fn red_dbg(&self) -> ColoredDbg<Self>
[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] 393 |     fn red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:402:18
[INFO] [stdout]     |
[INFO] [stdout] 402 |     fn green_dbg(&self) -> ColoredDbg<Self>
[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] 402 |     fn green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:411:17
[INFO] [stdout]     |
[INFO] [stdout] 411 |     fn blue_dbg(&self) -> ColoredDbg<Self>
[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] 411 |     fn blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:420:19
[INFO] [stdout]     |
[INFO] [stdout] 420 |     fn purple_dbg(&self) -> ColoredDbg<Self>
[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] 420 |     fn purple_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:429:22
[INFO] [stdout]     |
[INFO] [stdout] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<Self>
[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] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:438:23
[INFO] [stdout]     |
[INFO] [stdout] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<Self>
[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] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:447:22
[INFO] [stdout]     |
[INFO] [stdout] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<Self>
[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] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:456:23
[INFO] [stdout]     |
[INFO] [stdout] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<Self>
[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] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:465:24
[INFO] [stdout]     |
[INFO] [stdout] 465 |     fn light_green_dbg(&self) -> ColoredDbg<Self>
[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] 465 |     fn light_green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:474:19
[INFO] [stdout]     |
[INFO] [stdout] 474 |     fn yellow_dbg(&self) -> ColoredDbg<Self>
[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] 474 |     fn yellow_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:483:23
[INFO] [stdout]     |
[INFO] [stdout] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<Self>
[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] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:492:20
[INFO] [stdout]     |
[INFO] [stdout] 492 |     fn magenta_dbg(&self) -> ColoredDbg<Self>
[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] 492 |     fn magenta_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:501:17
[INFO] [stdout]     |
[INFO] [stdout] 501 |     fn cyan_dbg(&self) -> ColoredDbg<Self>
[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] 501 |     fn cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:510:18
[INFO] [stdout]     |
[INFO] [stdout] 510 |     fn white_dbg(&self) -> ColoredDbg<Self>
[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] 510 |     fn white_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:519:17
[INFO] [stdout]     |
[INFO] [stdout] 519 |     fn bold_dbg(&self) -> ColoredDbg<Self>
[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] 519 |     fn bold_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:531:19
[INFO] [stdout]     |
[INFO] [stdout] 531 |     fn italic_dbg(&self) -> ColoredDbg<Self>
[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] 531 |     fn italic_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:543:26
[INFO] [stdout]     |
[INFO] [stdout] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<Self>
[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] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:552:23
[INFO] [stdout]     |
[INFO] [stdout] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<Self>
[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] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.22s
[INFO] running `Command { std: "docker" "inspect" "dc4b48eb39e1d9a6f63394d5e96651bfb3656326130bd1d6d75774e0d65e8869", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "dc4b48eb39e1d9a6f63394d5e96651bfb3656326130bd1d6d75774e0d65e8869", kill_on_drop: false }`
[INFO] [stdout] dc4b48eb39e1d9a6f63394d5e96651bfb3656326130bd1d6d75774e0d65e8869
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 9426209fc28126035df4d08f493be643354ab7e5a6a41e5c01d9a2899135939b
[INFO] running `Command { std: "docker" "start" "-a" "9426209fc28126035df4d08f493be643354ab7e5a6a41e5c01d9a2899135939b", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:156:14
[INFO] [stdout]     |
[INFO] [stdout] 156 |     fn black(&self) -> Colored<Self>
[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] 156 |     fn black(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:165:12
[INFO] [stdout]     |
[INFO] [stdout] 165 |     fn red(&self) -> Colored<Self>
[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] 165 |     fn red(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:174:14
[INFO] [stdout]     |
[INFO] [stdout] 174 |     fn green(&self) -> Colored<Self>
[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] 174 |     fn green(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:183:13
[INFO] [stdout]     |
[INFO] [stdout] 183 |     fn blue(&self) -> Colored<Self>
[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] 183 |     fn blue(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:192:15
[INFO] [stdout]     |
[INFO] [stdout] 192 |     fn purple(&self) -> Colored<Self>
[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] 192 |     fn purple(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:201:18
[INFO] [stdout]     |
[INFO] [stdout] 201 |     fn dark_cyan(&self) -> Colored<Self>
[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] 201 |     fn dark_cyan(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:210:19
[INFO] [stdout]     |
[INFO] [stdout] 210 |     fn light_grey(&self) -> Colored<Self>
[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] 210 |     fn light_grey(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:219:18
[INFO] [stdout]     |
[INFO] [stdout] 219 |     fn dark_grey(&self) -> Colored<Self>
[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] 219 |     fn dark_grey(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:228:19
[INFO] [stdout]     |
[INFO] [stdout] 228 |     fn bright_red(&self) -> Colored<Self>
[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] 228 |     fn bright_red(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:237:20
[INFO] [stdout]     |
[INFO] [stdout] 237 |     fn light_green(&self) -> Colored<Self>
[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] 237 |     fn light_green(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:246:15
[INFO] [stdout]     |
[INFO] [stdout] 246 |     fn yellow(&self) -> Colored<Self>
[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] 246 |     fn yellow(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:255:19
[INFO] [stdout]     |
[INFO] [stdout] 255 |     fn light_blue(&self) -> Colored<Self>
[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] 255 |     fn light_blue(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:264:16
[INFO] [stdout]     |
[INFO] [stdout] 264 |     fn magenta(&self) -> Colored<Self>
[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] 264 |     fn magenta(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:273:13
[INFO] [stdout]     |
[INFO] [stdout] 273 |     fn cyan(&self) -> Colored<Self>
[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] 273 |     fn cyan(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:282:14
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn white(&self) -> Colored<Self>
[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] 282 |     fn white(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:291:13
[INFO] [stdout]     |
[INFO] [stdout] 291 |     fn bold(&self) -> Colored<Self>
[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] 291 |     fn bold(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:303:15
[INFO] [stdout]     |
[INFO] [stdout] 303 |     fn italic(&self) -> Colored<Self>
[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] 303 |     fn italic(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:315:22
[INFO] [stdout]     |
[INFO] [stdout] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<Self>
[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] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<'_, Self>
[INFO] [stdout]     |                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:324:19
[INFO] [stdout]     |
[INFO] [stdout] 324 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<Self>
[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 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<'_, Self>
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:384:18
[INFO] [stdout]     |
[INFO] [stdout] 384 |     fn black_dbg(&self) -> ColoredDbg<Self>
[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] 384 |     fn black_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:393:16
[INFO] [stdout]     |
[INFO] [stdout] 393 |     fn red_dbg(&self) -> ColoredDbg<Self>
[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] 393 |     fn red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:402:18
[INFO] [stdout]     |
[INFO] [stdout] 402 |     fn green_dbg(&self) -> ColoredDbg<Self>
[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] 402 |     fn green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:411:17
[INFO] [stdout]     |
[INFO] [stdout] 411 |     fn blue_dbg(&self) -> ColoredDbg<Self>
[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] 411 |     fn blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:420:19
[INFO] [stdout]     |
[INFO] [stdout] 420 |     fn purple_dbg(&self) -> ColoredDbg<Self>
[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] 420 |     fn purple_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:429:22
[INFO] [stdout]     |
[INFO] [stdout] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<Self>
[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] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:438:23
[INFO] [stdout]     |
[INFO] [stdout] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<Self>
[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] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:447:22
[INFO] [stdout]     |
[INFO] [stdout] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<Self>
[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] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:456:23
[INFO] [stdout]     |
[INFO] [stdout] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<Self>
[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] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:465:24
[INFO] [stdout]     |
[INFO] [stdout] 465 |     fn light_green_dbg(&self) -> ColoredDbg<Self>
[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] 465 |     fn light_green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:474:19
[INFO] [stdout]     |
[INFO] [stdout] 474 |     fn yellow_dbg(&self) -> ColoredDbg<Self>
[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] 474 |     fn yellow_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:483:23
[INFO] [stdout]     |
[INFO] [stdout] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<Self>
[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] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:492:20
[INFO] [stdout]     |
[INFO] [stdout] 492 |     fn magenta_dbg(&self) -> ColoredDbg<Self>
[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] 492 |     fn magenta_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:501:17
[INFO] [stdout]     |
[INFO] [stdout] 501 |     fn cyan_dbg(&self) -> ColoredDbg<Self>
[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] 501 |     fn cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:510:18
[INFO] [stdout]     |
[INFO] [stdout] 510 |     fn white_dbg(&self) -> ColoredDbg<Self>
[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] 510 |     fn white_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:519:17
[INFO] [stdout]     |
[INFO] [stdout] 519 |     fn bold_dbg(&self) -> ColoredDbg<Self>
[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] 519 |     fn bold_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:531:19
[INFO] [stdout]     |
[INFO] [stdout] 531 |     fn italic_dbg(&self) -> ColoredDbg<Self>
[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] 531 |     fn italic_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:543:26
[INFO] [stdout]     |
[INFO] [stdout] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<Self>
[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] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:552:23
[INFO] [stdout]     |
[INFO] [stdout] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<Self>
[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] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling colorable v0.1.4 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:156:14
[INFO] [stdout]     |
[INFO] [stdout] 156 |     fn black(&self) -> Colored<Self>
[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] 156 |     fn black(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:165:12
[INFO] [stdout]     |
[INFO] [stdout] 165 |     fn red(&self) -> Colored<Self>
[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] 165 |     fn red(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                              +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:174:14
[INFO] [stdout]     |
[INFO] [stdout] 174 |     fn green(&self) -> Colored<Self>
[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] 174 |     fn green(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:183:13
[INFO] [stdout]     |
[INFO] [stdout] 183 |     fn blue(&self) -> Colored<Self>
[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] 183 |     fn blue(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:192:15
[INFO] [stdout]     |
[INFO] [stdout] 192 |     fn purple(&self) -> Colored<Self>
[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] 192 |     fn purple(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:201:18
[INFO] [stdout]     |
[INFO] [stdout] 201 |     fn dark_cyan(&self) -> Colored<Self>
[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] 201 |     fn dark_cyan(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:210:19
[INFO] [stdout]     |
[INFO] [stdout] 210 |     fn light_grey(&self) -> Colored<Self>
[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] 210 |     fn light_grey(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:219:18
[INFO] [stdout]     |
[INFO] [stdout] 219 |     fn dark_grey(&self) -> Colored<Self>
[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] 219 |     fn dark_grey(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:228:19
[INFO] [stdout]     |
[INFO] [stdout] 228 |     fn bright_red(&self) -> Colored<Self>
[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] 228 |     fn bright_red(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:237:20
[INFO] [stdout]     |
[INFO] [stdout] 237 |     fn light_green(&self) -> Colored<Self>
[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] 237 |     fn light_green(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:246:15
[INFO] [stdout]     |
[INFO] [stdout] 246 |     fn yellow(&self) -> Colored<Self>
[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] 246 |     fn yellow(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:255:19
[INFO] [stdout]     |
[INFO] [stdout] 255 |     fn light_blue(&self) -> Colored<Self>
[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] 255 |     fn light_blue(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:264:16
[INFO] [stdout]     |
[INFO] [stdout] 264 |     fn magenta(&self) -> Colored<Self>
[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] 264 |     fn magenta(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:273:13
[INFO] [stdout]     |
[INFO] [stdout] 273 |     fn cyan(&self) -> Colored<Self>
[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] 273 |     fn cyan(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:282:14
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn white(&self) -> Colored<Self>
[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] 282 |     fn white(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:291:13
[INFO] [stdout]     |
[INFO] [stdout] 291 |     fn bold(&self) -> Colored<Self>
[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] 291 |     fn bold(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                               +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:303:15
[INFO] [stdout]     |
[INFO] [stdout] 303 |     fn italic(&self) -> Colored<Self>
[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] 303 |     fn italic(&self) -> Colored<'_, Self>
[INFO] [stdout]     |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:315:22
[INFO] [stdout]     |
[INFO] [stdout] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<Self>
[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] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<'_, Self>
[INFO] [stdout]     |                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:324:19
[INFO] [stdout]     |
[INFO] [stdout] 324 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<Self>
[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 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<'_, Self>
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:384:18
[INFO] [stdout]     |
[INFO] [stdout] 384 |     fn black_dbg(&self) -> ColoredDbg<Self>
[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] 384 |     fn black_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:393:16
[INFO] [stdout]     |
[INFO] [stdout] 393 |     fn red_dbg(&self) -> ColoredDbg<Self>
[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] 393 |     fn red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:402:18
[INFO] [stdout]     |
[INFO] [stdout] 402 |     fn green_dbg(&self) -> ColoredDbg<Self>
[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] 402 |     fn green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:411:17
[INFO] [stdout]     |
[INFO] [stdout] 411 |     fn blue_dbg(&self) -> ColoredDbg<Self>
[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] 411 |     fn blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:420:19
[INFO] [stdout]     |
[INFO] [stdout] 420 |     fn purple_dbg(&self) -> ColoredDbg<Self>
[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] 420 |     fn purple_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:429:22
[INFO] [stdout]     |
[INFO] [stdout] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<Self>
[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] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:438:23
[INFO] [stdout]     |
[INFO] [stdout] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<Self>
[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] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:447:22
[INFO] [stdout]     |
[INFO] [stdout] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<Self>
[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] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:456:23
[INFO] [stdout]     |
[INFO] [stdout] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<Self>
[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] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:465:24
[INFO] [stdout]     |
[INFO] [stdout] 465 |     fn light_green_dbg(&self) -> ColoredDbg<Self>
[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] 465 |     fn light_green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:474:19
[INFO] [stdout]     |
[INFO] [stdout] 474 |     fn yellow_dbg(&self) -> ColoredDbg<Self>
[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] 474 |     fn yellow_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:483:23
[INFO] [stdout]     |
[INFO] [stdout] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<Self>
[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] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:492:20
[INFO] [stdout]     |
[INFO] [stdout] 492 |     fn magenta_dbg(&self) -> ColoredDbg<Self>
[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] 492 |     fn magenta_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:501:17
[INFO] [stdout]     |
[INFO] [stdout] 501 |     fn cyan_dbg(&self) -> ColoredDbg<Self>
[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] 501 |     fn cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:510:18
[INFO] [stdout]     |
[INFO] [stdout] 510 |     fn white_dbg(&self) -> ColoredDbg<Self>
[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] 510 |     fn white_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:519:17
[INFO] [stdout]     |
[INFO] [stdout] 519 |     fn bold_dbg(&self) -> ColoredDbg<Self>
[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] 519 |     fn bold_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                      +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:531:19
[INFO] [stdout]     |
[INFO] [stdout] 531 |     fn italic_dbg(&self) -> ColoredDbg<Self>
[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] 531 |     fn italic_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:543:26
[INFO] [stdout]     |
[INFO] [stdout] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<Self>
[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] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/colorable.rs:552:23
[INFO] [stdout]     |
[INFO] [stdout] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<Self>
[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] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<'_, Self>
[INFO] [stdout]     |                                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.37s
[INFO] running `Command { std: "docker" "inspect" "9426209fc28126035df4d08f493be643354ab7e5a6a41e5c01d9a2899135939b", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "9426209fc28126035df4d08f493be643354ab7e5a6a41e5c01d9a2899135939b", kill_on_drop: false }`
[INFO] [stdout] 9426209fc28126035df4d08f493be643354ab7e5a6a41e5c01d9a2899135939b
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] ef27130e6fc2456faf1076fd9927b3cfd542a528aedd028969f16bb24287252e
[INFO] running `Command { std: "docker" "start" "-a" "ef27130e6fc2456faf1076fd9927b3cfd542a528aedd028969f16bb24287252e", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:156:14
[INFO] [stderr]     |
[INFO] [stderr] 156 |     fn black(&self) -> Colored<Self>
[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] 156 |     fn black(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:165:12
[INFO] [stderr]     |
[INFO] [stderr] 165 |     fn red(&self) -> Colored<Self>
[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] 165 |     fn red(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                              +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:174:14
[INFO] [stderr]     |
[INFO] [stderr] 174 |     fn green(&self) -> Colored<Self>
[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] 174 |     fn green(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:183:13
[INFO] [stderr]     |
[INFO] [stderr] 183 |     fn blue(&self) -> Colored<Self>
[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] 183 |     fn blue(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                               +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:192:15
[INFO] [stderr]     |
[INFO] [stderr] 192 |     fn purple(&self) -> Colored<Self>
[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] 192 |     fn purple(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:201:18
[INFO] [stderr]     |
[INFO] [stderr] 201 |     fn dark_cyan(&self) -> Colored<Self>
[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] 201 |     fn dark_cyan(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                    +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:210:19
[INFO] [stderr]     |
[INFO] [stderr] 210 |     fn light_grey(&self) -> Colored<Self>
[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] 210 |     fn light_grey(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:219:18
[INFO] [stderr]     |
[INFO] [stderr] 219 |     fn dark_grey(&self) -> Colored<Self>
[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] 219 |     fn dark_grey(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                    +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:228:19
[INFO] [stderr]     |
[INFO] [stderr] 228 |     fn bright_red(&self) -> Colored<Self>
[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] 228 |     fn bright_red(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:237:20
[INFO] [stderr]     |
[INFO] [stderr] 237 |     fn light_green(&self) -> Colored<Self>
[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] 237 |     fn light_green(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                      +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:246:15
[INFO] [stderr]     |
[INFO] [stderr] 246 |     fn yellow(&self) -> Colored<Self>
[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] 246 |     fn yellow(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:255:19
[INFO] [stderr]     |
[INFO] [stderr] 255 |     fn light_blue(&self) -> Colored<Self>
[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] 255 |     fn light_blue(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:264:16
[INFO] [stderr]     |
[INFO] [stderr] 264 |     fn magenta(&self) -> Colored<Self>
[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] 264 |     fn magenta(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                  +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:273:13
[INFO] [stderr]     |
[INFO] [stderr] 273 |     fn cyan(&self) -> Colored<Self>
[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] 273 |     fn cyan(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                               +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:282:14
[INFO] [stderr]     |
[INFO] [stderr] 282 |     fn white(&self) -> Colored<Self>
[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] 282 |     fn white(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:291:13
[INFO] [stderr]     |
[INFO] [stderr] 291 |     fn bold(&self) -> Colored<Self>
[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] 291 |     fn bold(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                               +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:303:15
[INFO] [stderr]     |
[INFO] [stderr] 303 |     fn italic(&self) -> Colored<Self>
[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] 303 |     fn italic(&self) -> Colored<'_, Self>
[INFO] [stderr]     |                                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:315:22
[INFO] [stderr]     |
[INFO] [stderr] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<Self>
[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] 315 |     fn with_fg_color(&self, fg: u8) -> Colored<'_, Self>
[INFO] [stderr]     |                                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:324:19
[INFO] [stderr]     |
[INFO] [stderr] 324 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<Self>
[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 |     fn with_fg_bg(&self, fg: u8, bg: u8) -> Colored<'_, Self>
[INFO] [stderr]     |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:384:18
[INFO] [stderr]     |
[INFO] [stderr] 384 |     fn black_dbg(&self) -> ColoredDbg<Self>
[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] 384 |     fn black_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                       +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:393:16
[INFO] [stderr]     |
[INFO] [stderr] 393 |     fn red_dbg(&self) -> ColoredDbg<Self>
[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] 393 |     fn red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:402:18
[INFO] [stderr]     |
[INFO] [stderr] 402 |     fn green_dbg(&self) -> ColoredDbg<Self>
[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] 402 |     fn green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                       +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:411:17
[INFO] [stderr]     |
[INFO] [stderr] 411 |     fn blue_dbg(&self) -> ColoredDbg<Self>
[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] 411 |     fn blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                      +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:420:19
[INFO] [stderr]     |
[INFO] [stderr] 420 |     fn purple_dbg(&self) -> ColoredDbg<Self>
[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] 420 |     fn purple_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:429:22
[INFO] [stderr]     |
[INFO] [stderr] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<Self>
[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] 429 |     fn dark_cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                           +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:438:23
[INFO] [stderr]     |
[INFO] [stderr] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<Self>
[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] 438 |     fn light_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                            +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:447:22
[INFO] [stderr]     |
[INFO] [stderr] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<Self>
[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] 447 |     fn dark_grey_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                           +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:456:23
[INFO] [stderr]     |
[INFO] [stderr] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<Self>
[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] 456 |     fn bright_red_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                            +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:465:24
[INFO] [stderr]     |
[INFO] [stderr] 465 |     fn light_green_dbg(&self) -> ColoredDbg<Self>
[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] 465 |     fn light_green_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                             +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:474:19
[INFO] [stderr]     |
[INFO] [stderr] 474 |     fn yellow_dbg(&self) -> ColoredDbg<Self>
[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] 474 |     fn yellow_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:483:23
[INFO] [stderr]     |
[INFO] [stderr] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<Self>
[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] 483 |     fn light_blue_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                            +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:492:20
[INFO] [stderr]     |
[INFO] [stderr] 492 |     fn magenta_dbg(&self) -> ColoredDbg<Self>
[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] 492 |     fn magenta_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                         +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:501:17
[INFO] [stderr]     |
[INFO] [stderr] 501 |     fn cyan_dbg(&self) -> ColoredDbg<Self>
[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] 501 |     fn cyan_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                      +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:510:18
[INFO] [stderr]     |
[INFO] [stderr] 510 |     fn white_dbg(&self) -> ColoredDbg<Self>
[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] 510 |     fn white_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                       +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:519:17
[INFO] [stderr]     |
[INFO] [stderr] 519 |     fn bold_dbg(&self) -> ColoredDbg<Self>
[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] 519 |     fn bold_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                      +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:531:19
[INFO] [stderr]     |
[INFO] [stderr] 531 |     fn italic_dbg(&self) -> ColoredDbg<Self>
[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] 531 |     fn italic_dbg(&self) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:543:26
[INFO] [stderr]     |
[INFO] [stderr] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<Self>
[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] 543 |     fn with_fg_color_dbg(&self, fg: u8) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                                       +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/colorable.rs:552:23
[INFO] [stderr]     |
[INFO] [stderr] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<Self>
[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] 552 |     fn with_fg_bg_dbg(&self, fg: u8, bg: u8) -> ColoredDbg<'_, Self>
[INFO] [stderr]     |                                                            +++
[INFO] [stderr] 
[INFO] [stderr] warning: `colorable` (lib) generated 38 warnings
[INFO] [stderr] warning: `colorable` (lib test) generated 38 warnings (38 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.07s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/colorable-6cbd8824ed82d660)
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test tests::test ... 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]    Doc-tests colorable
[INFO] [stdout] 
[INFO] [stdout] running 5 tests
[INFO] [stdout] test src/lib.rs - (line 19) ... ok
[INFO] [stdout] test src/lib.rs - (line 30) ... ok
[INFO] [stdout] test src/lib.rs - (line 43) ... ok
[INFO] [stdout] test src/lib.rs - (line 54) ... ok
[INFO] [stdout] test src/lib.rs - (line 62) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.35s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "ef27130e6fc2456faf1076fd9927b3cfd542a528aedd028969f16bb24287252e", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "ef27130e6fc2456faf1076fd9927b3cfd542a528aedd028969f16bb24287252e", kill_on_drop: false }`
[INFO] [stdout] ef27130e6fc2456faf1076fd9927b3cfd542a528aedd028969f16bb24287252e
