[INFO] fetching crate jimage-rs 0.0.3...
[INFO] testing jimage-rs-0.0.3 against 1.90.0 for beta-1.91-3
[INFO] extracting crate jimage-rs 0.0.3 into /workspace/builds/worker-0-tc1/source
[INFO] started tweaking crates.io crate jimage-rs 0.0.3
[INFO] finished tweaking crates.io crate jimage-rs 0.0.3
[INFO] tweaked toml for crates.io crate jimage-rs 0.0.3 written to /workspace/builds/worker-0-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate jimage-rs 0.0.3 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] crate crates.io crate jimage-rs 0.0.3 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.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-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-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] 07974da5a574b83bb7c35a0a913313ac7c136a391c57fb9e0237a4ddf23fe712
[INFO] running `Command { std: "docker" "start" "-a" "07974da5a574b83bb7c35a0a913313ac7c136a391c57fb9e0237a4ddf23fe712", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "07974da5a574b83bb7c35a0a913313ac7c136a391c57fb9e0237a4ddf23fe712", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "07974da5a574b83bb7c35a0a913313ac7c136a391c57fb9e0237a4ddf23fe712", kill_on_drop: false }`
[INFO] [stdout] 07974da5a574b83bb7c35a0a913313ac7c136a391c57fb9e0237a4ddf23fe712
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-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] d1a7b6028fbf0484634fce383574d39ef1b0a03af2c0dcc64af05b0fced6acbf
[INFO] running `Command { std: "docker" "start" "-a" "d1a7b6028fbf0484634fce383574d39ef1b0a03af2c0dcc64af05b0fced6acbf", kill_on_drop: false }`
[INFO] [stderr]    Compiling syn v2.0.103
[INFO] [stderr]    Compiling clap_builder v4.5.47
[INFO] [stderr]    Compiling memmap2 v0.9.8
[INFO] [stderr]    Compiling clap_derive v4.5.47
[INFO] [stderr]    Compiling snafu-derive v0.8.9
[INFO] [stderr]    Compiling snafu v0.8.9
[INFO] [stderr]    Compiling clap v4.5.47
[INFO] [stderr]    Compiling jimage-rs v0.0.3 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/jimage.rs:94:26
[INFO] [stdout]    |
[INFO] [stdout] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<[u8]>>> {
[INFO] [stdout]    |                          ^^^^^ the lifetime is elided here   --------- the same lifetime is hidden here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stdout]    |                                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/jimage.rs:146:30
[INFO] [stdout]     |
[INFO] [stdout] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<str>> {
[INFO] [stdout]     |                              ^^^^^ the lifetime is elided here                          -------- the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<'_, str>> {
[INFO] [stdout]     |                                                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/jimage.rs:223:21
[INFO] [stdout]     |
[INFO] [stdout] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<[u8]>>> {
[INFO] [stdout]     |                     ^^^^^ the lifetime is elided here              --------- the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stdout]     |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 7.83s
[INFO] running `Command { std: "docker" "inspect" "d1a7b6028fbf0484634fce383574d39ef1b0a03af2c0dcc64af05b0fced6acbf", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "d1a7b6028fbf0484634fce383574d39ef1b0a03af2c0dcc64af05b0fced6acbf", kill_on_drop: false }`
[INFO] [stdout] d1a7b6028fbf0484634fce383574d39ef1b0a03af2c0dcc64af05b0fced6acbf
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-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] edbee1f2f938367914187782cf1a016024ad3d96a808ec9336e484d0f17e36c5
[INFO] running `Command { std: "docker" "start" "-a" "edbee1f2f938367914187782cf1a016024ad3d96a808ec9336e484d0f17e36c5", kill_on_drop: false }`
[INFO] [stderr]    Compiling syn v2.0.103
[INFO] [stderr]    Compiling semver v1.0.26
[INFO] [stderr]    Compiling winnow v0.7.11
[INFO] [stderr]    Compiling indexmap v2.11.0
[INFO] [stderr]    Compiling relative-path v1.9.3
[INFO] [stderr]    Compiling regex v1.11.2
[INFO] [stderr]    Compiling rustc_version v0.4.1
[INFO] [stderr]    Compiling rstest_macros v0.26.1
[INFO] [stderr]    Compiling toml_edit v0.22.27
[INFO] [stderr]    Compiling proc-macro-crate v3.3.0
[INFO] [stderr]    Compiling clap_derive v4.5.47
[INFO] [stderr]    Compiling futures-macro v0.3.31
[INFO] [stderr]    Compiling snafu-derive v0.8.9
[INFO] [stderr]    Compiling futures-util v0.3.31
[INFO] [stderr]    Compiling snafu v0.8.9
[INFO] [stderr]    Compiling clap v4.5.47
[INFO] [stderr]    Compiling jimage-rs v0.0.3 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/jimage.rs:94:26
[INFO] [stdout]    |
[INFO] [stdout] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<[u8]>>> {
[INFO] [stdout]    |                          ^^^^^ the lifetime is elided here   --------- the same lifetime is hidden here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stdout]    |                                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/jimage.rs:146:30
[INFO] [stdout]     |
[INFO] [stdout] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<str>> {
[INFO] [stdout]     |                              ^^^^^ the lifetime is elided here                          -------- the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<'_, str>> {
[INFO] [stdout]     |                                                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/jimage.rs:223:21
[INFO] [stdout]     |
[INFO] [stdout] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<[u8]>>> {
[INFO] [stdout]     |                     ^^^^^ the lifetime is elided here              --------- the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stdout]     |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling rstest v0.26.1
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/jimage.rs:94:26
[INFO] [stdout]    |
[INFO] [stdout] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<[u8]>>> {
[INFO] [stdout]    |                          ^^^^^ the lifetime is elided here   --------- the same lifetime is hidden here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stdout]    |                                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/jimage.rs:146:30
[INFO] [stdout]     |
[INFO] [stdout] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<str>> {
[INFO] [stdout]     |                              ^^^^^ the lifetime is elided here                          -------- the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<'_, str>> {
[INFO] [stdout]     |                                                                                             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/jimage.rs:223:21
[INFO] [stdout]     |
[INFO] [stdout] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<[u8]>>> {
[INFO] [stdout]     |                     ^^^^^ the lifetime is elided here              --------- the same lifetime is hidden here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stdout]     |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 13.64s
[INFO] running `Command { std: "docker" "inspect" "edbee1f2f938367914187782cf1a016024ad3d96a808ec9336e484d0f17e36c5", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "edbee1f2f938367914187782cf1a016024ad3d96a808ec9336e484d0f17e36c5", kill_on_drop: false }`
[INFO] [stdout] edbee1f2f938367914187782cf1a016024ad3d96a808ec9336e484d0f17e36c5
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-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] 4622ace5037d68303a14639b6536ee2ac5655ec44b7999d16d708fa55ff773b3
[INFO] running `Command { std: "docker" "start" "-a" "4622ace5037d68303a14639b6536ee2ac5655ec44b7999d16d708fa55ff773b3", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/jimage.rs:94:26
[INFO] [stderr]    |
[INFO] [stderr] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<[u8]>>> {
[INFO] [stderr]    |                          ^^^^^ the lifetime is elided here   --------- the same lifetime is hidden here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 94 |     pub fn find_resource(&self, name: &str) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stderr]    |                                                                  +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/jimage.rs:146:30
[INFO] [stderr]     |
[INFO] [stderr] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<str>> {
[INFO] [stderr]     |                              ^^^^^ the lifetime is elided here                          -------- the same lifetime is hidden here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 146 |     fn get_str_for_attribute(&self, attribute: [u64; 8], kind: AttributeKind) -> Result<Cow<'_, str>> {
[INFO] [stderr]     |                                                                                             +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/jimage.rs:223:21
[INFO] [stderr]     |
[INFO] [stderr] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<[u8]>>> {
[INFO] [stderr]     |                     ^^^^^ the lifetime is elided here              --------- the same lifetime is hidden here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 223 |     fn get_resource(&self, attributes: &[u64; 8]) -> Result<Option<Cow<'_, [u8]>>> {
[INFO] [stderr]     |                                                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: `jimage-rs` (lib) generated 3 warnings
[INFO] [stderr] warning: `jimage-rs` (lib test) generated 3 warnings (3 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.09s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/jimage_rs-2b93c3e1a49b4101)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running unittests src/main.rs (/opt/rustwide/target/debug/deps/jimage_rs-086db514e315b7b6)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests jimage_rs
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test src/lib.rs - (line 4) ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - (line 4) stdout ----
[INFO] [stdout] Test executable failed (exit status: 1).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] Error: NotPresent
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     src/lib.rs - (line 4)
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.39s
[INFO] [stdout] 
[INFO] [stderr] error: doctest failed, to rerun pass `--doc`
[INFO] running `Command { std: "docker" "inspect" "4622ace5037d68303a14639b6536ee2ac5655ec44b7999d16d708fa55ff773b3", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "4622ace5037d68303a14639b6536ee2ac5655ec44b7999d16d708fa55ff773b3", kill_on_drop: false }`
[INFO] [stdout] 4622ace5037d68303a14639b6536ee2ac5655ec44b7999d16d708fa55ff773b3
