[INFO] crate termwiz 0.4.0 is already in cache
[INFO] testing termwiz-0.4.0 against 1.38.0 for beta-1.39-1
[INFO] extracting crate termwiz 0.4.0 into work/builds/worker-10/source
[INFO] validating manifest of crates.io crate termwiz 0.4.0 on toolchain 1.38.0
[INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate termwiz 0.4.0
[INFO] finished tweaking crates.io crate termwiz 0.4.0
[INFO] tweaked toml for crates.io crate termwiz 0.4.0 written to work/builds/worker-10/source/Cargo.toml
[INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-10/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+1.38.0" "build" "--frozen"`
[INFO] [stdout] c761d560688e88da3a6735130230b6ad77ef1da3867cc2485bfb33fca8031097
[INFO] running `"docker" "start" "-a" "c761d560688e88da3a6735130230b6ad77ef1da3867cc2485bfb33fca8031097"`
[INFO] [stderr] Compiling num-derive v0.2.5
[INFO] [stderr] Compiling derive_builder v0.7.2
[INFO] [stderr] Compiling vtparse v0.1.0
[INFO] [stderr] Compiling serde v1.0.101
[INFO] [stderr] Compiling memmem v0.1.1
[INFO] [stderr] Compiling syn v0.14.9
[INFO] [stderr] Compiling ordered-float v1.0.2
[INFO] [stderr] Compiling darling_core v0.9.0
[INFO] [stderr] Compiling num-bigint v0.2.3
[INFO] [stderr] Compiling terminfo v0.6.1
[INFO] [stderr] Compiling palette v0.4.1
[INFO] [stderr] Compiling filedescriptor v0.4.0
[INFO] [stderr] Compiling num-rational v0.2.2
[INFO] [stderr] Compiling num v0.2.0
[INFO] [stderr] Compiling darling_macro v0.9.0
[INFO] [stderr] Compiling tiff v0.2.2
[INFO] [stderr] Compiling palette_derive v0.4.1
[INFO] [stderr] Compiling image v0.21.3
[INFO] [stderr] Compiling darling v0.9.0
[INFO] [stderr] Compiling derive_builder_core v0.5.0
[INFO] [stderr] Compiling termwiz v0.4.0 (/opt/rustwide/workdir)
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr] --> src/lineedit/host.rs:65:35
[INFO] [stderr] |
[INFO] [stderr] 65 | fn history(&mut self) -> &mut History;
[INFO] [stderr] | ^^^^^^^ help: use `dyn`: `dyn History`
[INFO] [stderr] |
[INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr]
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr] --> src/lineedit/host.rs:94:35
[INFO] [stderr] |
[INFO] [stderr] 94 | fn history(&mut self) -> &mut History {
[INFO] [stderr] | ^^^^^^^ help: use `dyn`: `dyn History`
[INFO] [stderr]
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr] --> src/lineedit/mod.rs:147:37
[INFO] [stderr] |
[INFO] [stderr] 147 | fn render(&mut self, host: &mut LineEditorHost) -> Fallible<()> {
[INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn LineEditorHost`
[INFO] [stderr]
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr] --> src/lineedit/mod.rs:195:44
[INFO] [stderr] |
[INFO] [stderr] 195 | pub fn read_line(&mut self, host: &mut LineEditorHost) -> Fallible