[INFO] fetching crate yansi 0.5.1... [INFO] testing yansi-0.5.1 against 1.60.0 for beta-1.61-1 [INFO] extracting crate yansi 0.5.1 into /workspace/builds/worker-0/source [INFO] validating manifest of crates.io crate yansi 0.5.1 on toolchain 1.60.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate yansi 0.5.1 [INFO] finished tweaking crates.io crate yansi 0.5.1 [INFO] tweaked toml for crates.io crate yansi 0.5.1 written to /workspace/builds/worker-0/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Downloading crates ... [INFO] [stderr] Downloaded serial_test v0.6.0 [INFO] [stderr] Downloaded serial_test_derive v0.6.0 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] a6aa8696e27a35e6424362ec9e1fa950aa7db6c95c644520271884dd04c8b475 [INFO] running `Command { std: "docker" "start" "-a" "a6aa8696e27a35e6424362ec9e1fa950aa7db6c95c644520271884dd04c8b475", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "a6aa8696e27a35e6424362ec9e1fa950aa7db6c95c644520271884dd04c8b475", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a6aa8696e27a35e6424362ec9e1fa950aa7db6c95c644520271884dd04c8b475", kill_on_drop: false }` [INFO] [stdout] a6aa8696e27a35e6424362ec9e1fa950aa7db6c95c644520271884dd04c8b475 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 7bbd8a08bf4a7eda341c37fe3978d0c701837f2f046d9e29352be6101420115b [INFO] running `Command { std: "docker" "start" "-a" "7bbd8a08bf4a7eda341c37fe3978d0c701837f2f046d9e29352be6101420115b", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling yansi v0.5.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:184:52 [INFO] [stdout] | [INFO] [stdout] 184 | fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 184 - fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] 184 + fn write_spliced(c: &mut bool, f: &mut dyn fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:411:38 [INFO] [stdout] | [INFO] [stdout] 411 | pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 411 - pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 411 + pub fn fmt_prefix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:473:38 [INFO] [stdout] | [INFO] [stdout] 473 | pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 473 - pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 473 + pub fn fmt_suffix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/color.rs:73:44 [INFO] [stdout] | [INFO] [stdout] 73 | pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 73 - pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 73 + pub(crate) fn ascii_fmt(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.96s [INFO] running `Command { std: "docker" "inspect" "7bbd8a08bf4a7eda341c37fe3978d0c701837f2f046d9e29352be6101420115b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "7bbd8a08bf4a7eda341c37fe3978d0c701837f2f046d9e29352be6101420115b", kill_on_drop: false }` [INFO] [stdout] 7bbd8a08bf4a7eda341c37fe3978d0c701837f2f046d9e29352be6101420115b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] e761a4146ed1488922829e8eb9224c71c1eabb050364a4aeb2c71f63ecb08e84 [INFO] running `Command { std: "docker" "start" "-a" "e761a4146ed1488922829e8eb9224c71c1eabb050364a4aeb2c71f63ecb08e84", kill_on_drop: false }` [INFO] [stderr] Compiling syn v1.0.91 [INFO] [stderr] Compiling libc v0.2.123 [INFO] [stderr] Compiling parking_lot_core v0.8.5 [INFO] [stderr] Compiling rustversion v1.0.6 [INFO] [stderr] Compiling lazy_static v1.4.0 [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:184:52 [INFO] [stdout] | [INFO] [stdout] 184 | fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 184 - fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] 184 + fn write_spliced(c: &mut bool, f: &mut dyn fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:411:38 [INFO] [stdout] | [INFO] [stdout] 411 | pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 411 - pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 411 + pub fn fmt_prefix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:473:38 [INFO] [stdout] | [INFO] [stdout] 473 | pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 473 - pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 473 + pub fn fmt_suffix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/color.rs:73:44 [INFO] [stdout] | [INFO] [stdout] 73 | pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 73 - pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 73 + pub(crate) fn ascii_fmt(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling instant v0.1.12 [INFO] [stderr] Compiling proc-macro-error-attr v1.0.4 [INFO] [stderr] Compiling parking_lot v0.11.2 [INFO] [stderr] Compiling proc-macro-error v1.0.4 [INFO] [stderr] Compiling serial_test_derive v0.6.0 [INFO] [stderr] Compiling serial_test v0.6.0 [INFO] [stderr] Compiling yansi v0.5.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:184:52 [INFO] [stdout] | [INFO] [stdout] 184 | fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 184 - fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] 184 + fn write_spliced(c: &mut bool, f: &mut dyn fmt::Write, t: T) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:411:38 [INFO] [stdout] | [INFO] [stdout] 411 | pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 411 - pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 411 + pub fn fmt_prefix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/style.rs:473:38 [INFO] [stdout] | [INFO] [stdout] 473 | pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 473 - pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 473 + pub fn fmt_suffix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/color.rs:73:44 [INFO] [stdout] | [INFO] [stdout] 73 | pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 73 - pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stdout] 73 + pub(crate) fn ascii_fmt(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 7.50s [INFO] running `Command { std: "docker" "inspect" "e761a4146ed1488922829e8eb9224c71c1eabb050364a4aeb2c71f63ecb08e84", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e761a4146ed1488922829e8eb9224c71c1eabb050364a4aeb2c71f63ecb08e84", kill_on_drop: false }` [INFO] [stdout] e761a4146ed1488922829e8eb9224c71c1eabb050364a4aeb2c71f63ecb08e84 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 41ee90b92e1b05a5c879d4b194eb0302799e2a43fa9a73cd5c56de8989aea262 [INFO] running `Command { std: "docker" "start" "-a" "41ee90b92e1b05a5c879d4b194eb0302799e2a43fa9a73cd5c56de8989aea262", kill_on_drop: false }` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/style.rs:184:52 [INFO] [stderr] | [INFO] [stderr] 184 | fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 184 - fn write_spliced(c: &mut bool, f: &mut fmt::Write, t: T) -> fmt::Result { [INFO] [stderr] 184 + fn write_spliced(c: &mut bool, f: &mut dyn fmt::Write, t: T) -> fmt::Result { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/style.rs:411:38 [INFO] [stderr] | [INFO] [stderr] 411 | pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 411 - pub fn fmt_prefix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stderr] 411 + pub fn fmt_prefix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/style.rs:473:38 [INFO] [stderr] | [INFO] [stderr] 473 | pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 473 - pub fn fmt_suffix(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stderr] 473 + pub fn fmt_suffix(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/color.rs:73:44 [INFO] [stderr] | [INFO] [stderr] 73 | pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 73 - pub(crate) fn ascii_fmt(&self, f: &mut fmt::Write) -> fmt::Result { [INFO] [stderr] 73 + pub(crate) fn ascii_fmt(&self, f: &mut dyn fmt::Write) -> fmt::Result { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `yansi` (lib) generated 4 warnings [INFO] [stderr] warning: `yansi` (lib test) generated 4 warnings (4 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/yansi-ae4572f2846a719a) [INFO] [stdout] [INFO] [stdout] running 6 tests [INFO] [stdout] test tests::hash_eq ... ok [INFO] [stdout] test tests::colors_disabled ... ok [INFO] [stdout] test tests::colors_enabled ... ok [INFO] [stdout] test tests::masked_when_disabled ... ok [INFO] [stdout] test tests::masked_when_enabled ... ok [INFO] [stdout] test tests::wrapping ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stderr] Doc-tests yansi [INFO] [stdout] [INFO] [stdout] running 74 tests [INFO] [stdout] test src/paint.rs - paint::Paint<()>::enable_windows_ascii (line 453) ... ok [INFO] [stdout] test src/lib.rs - (line 47) ... ok [INFO] [stdout] test src/style.rs - style::Style::fmt_suffix (line 456) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::yellow (line 207) ... ok [INFO] [stdout] test src/color.rs - color::Color::style (line 62) ... ok [INFO] [stdout] test src/style.rs - style::Style (line 101) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint<()>::is_enabled (line 424) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::cyan (line 207) ... ok [INFO] [stdout] test src/lib.rs - (line 140) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::wrap (line 291) ... ok [INFO] [stdout] test src/style.rs - style::Style::bold (line 284) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::italic (line 336) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::is_invert (line 367) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::default (line 121) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::is_hidden (line 367) ... FAILED [INFO] [stdout] test src/lib.rs - (line 58) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::is_blink (line 367) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::is_strikethrough (line 367) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint<()>::enable (line 400) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::blink (line 284) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::new (line 108) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint<()>::disable (line 381) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::strikethrough (line 336) ... FAILED [INFO] [stdout] test src/lib.rs - (line 159) ... ok [INFO] [stdout] test src/style.rs - style::Style::strikethrough (line 284) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::paint (line 291) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::underline (line 284) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::wrap (line 266) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::mask (line 240) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::italic (line 284) ... FAILED [INFO] [stdout] test src/style.rs - style::Style::new (line 197) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::mask (line 265) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::rgb (line 182) ... FAILED [INFO] [stdout] test src/lib.rs - (line 9) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::red (line 207) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::wrapping (line 164) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::hidden (line 336) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint::dimmed (line 336) ... FAILED [INFO] [stdout] test src/color.rs - color::Color::paint (line 49) ... FAILED [INFO] [stdout] test src/paint.rs - paint::Paint (line 65) ... ok [INFO] [stdout] test src/style.rs - style::Style::bg (line 223) ... ok [INFO] [stdout] test src/style.rs - style::Style::fg (line 210) ... ok [INFO] [stdout] test src/style.rs - style::Style::is_bold (line 367) ... ok [INFO] [stdout] test src/lib.rs - (line 169) ... ok [INFO] [stdout] test src/style.rs - style::Style::fmt_prefix (line 394) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::underline (line 336) ... ok [INFO] [stdout] test src/style.rs - style::Style::invert (line 284) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::masked (line 138) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::blue (line 207) ... ok [INFO] [stdout] test src/style.rs - style::Style::hidden (line 284) ... ok [INFO] [stdout] test src/style.rs - style::Style::bg_color (line 320) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::green (line 207) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::style (line 210) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::white (line 207) ... ok [INFO] [stdout] test src/lib.rs - (line 87) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::magenta (line 207) ... ok [INFO] [stdout] test src/lib.rs - (line 31) ... ok [INFO] [stdout] test src/style.rs - style::Style::fg_color (line 304) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::with_style (line 242) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::fixed (line 195) ... ok [INFO] [stdout] test src/style.rs - style::Style::is_masked (line 336) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::inner (line 225) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::black (line 207) ... ok [INFO] [stdout] test src/style.rs - style::Style::is_wrapping (line 352) ... ok [INFO] [stdout] test src/style.rs - style::Style::is_dimmed (line 367) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::blink (line 336) ... ok [INFO] [stdout] test src/style.rs - style::Style::is_underline (line 367) ... ok [INFO] [stdout] test src/style.rs - style::Style::dimmed (line 284) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::invert (line 336) ... ok [INFO] [stdout] test src/style.rs - style::Style::is_italic (line 367) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::bold (line 336) ... ok [INFO] [stdout] test src/lib.rs - (line 113) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::fg (line 309) ... ok [INFO] [stdout] test src/paint.rs - paint::Paint::bg (line 323) ... ok [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- src/paint.rs - paint::Paint::italic (line 336) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::is_invert (line 367) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::default (line 121) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::is_hidden (line 367) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/lib.rs - (line 58) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::is_blink (line 367) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::is_strikethrough (line 367) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint<()>::enable (line 400) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::blink (line 284) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::new (line 108) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint<()>::disable (line 381) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::strikethrough (line 336) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::strikethrough (line 284) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::paint (line 291) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::underline (line 284) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::wrap (line 266) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::mask (line 240) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::italic (line 284) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/style.rs - style::Style::new (line 197) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::mask (line 265) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::rgb (line 182) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/lib.rs - (line 9) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::red (line 207) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::wrapping (line 164) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::hidden (line 336) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/paint.rs - paint::Paint::dimmed (line 336) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/color.rs - color::Color::paint (line 49) stdout ---- [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] src/color.rs - color::Color::paint (line 49) [INFO] [stdout] src/lib.rs - (line 58) [INFO] [stdout] src/lib.rs - (line 9) [INFO] [stdout] src/paint.rs - paint::Paint<()>::disable (line 381) [INFO] [stdout] src/paint.rs - paint::Paint<()>::enable (line 400) [INFO] [stdout] src/paint.rs - paint::Paint::default (line 121) [INFO] [stdout] src/paint.rs - paint::Paint::dimmed (line 336) [INFO] [stdout] src/paint.rs - paint::Paint::hidden (line 336) [INFO] [stdout] src/paint.rs - paint::Paint::italic (line 336) [INFO] [stdout] src/paint.rs - paint::Paint::mask (line 265) [INFO] [stdout] src/paint.rs - paint::Paint::new (line 108) [INFO] [stdout] src/paint.rs - paint::Paint::red (line 207) [INFO] [stdout] src/paint.rs - paint::Paint::rgb (line 182) [INFO] [stdout] src/paint.rs - paint::Paint::strikethrough (line 336) [INFO] [stdout] src/paint.rs - paint::Paint::wrapping (line 164) [INFO] [stdout] src/style.rs - style::Style::blink (line 284) [INFO] [stdout] src/style.rs - style::Style::is_blink (line 367) [INFO] [stdout] src/style.rs - style::Style::is_hidden (line 367) [INFO] [stdout] src/style.rs - style::Style::is_invert (line 367) [INFO] [stdout] src/style.rs - style::Style::is_strikethrough (line 367) [INFO] [stdout] src/style.rs - style::Style::italic (line 284) [INFO] [stdout] src/style.rs - style::Style::mask (line 240) [INFO] [stdout] src/style.rs - style::Style::new (line 197) [INFO] [stdout] src/style.rs - style::Style::paint (line 291) [INFO] [stdout] src/style.rs - style::Style::strikethrough (line 284) [INFO] [stdout] src/style.rs - style::Style::underline (line 284) [INFO] [stdout] src/style.rs - style::Style::wrap (line 266) [INFO] [stdout] [INFO] [stdout] test result: FAILED. 47 passed; 27 failed; 0 ignored; 0 measured; 0 filtered out; finished in 15.26s [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--doc' [INFO] running `Command { std: "docker" "inspect" "41ee90b92e1b05a5c879d4b194eb0302799e2a43fa9a73cd5c56de8989aea262", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "41ee90b92e1b05a5c879d4b194eb0302799e2a43fa9a73cd5c56de8989aea262", kill_on_drop: false }` [INFO] [stdout] 41ee90b92e1b05a5c879d4b194eb0302799e2a43fa9a73cd5c56de8989aea262