[INFO] fetching crate zorio 0.1.0... [INFO] testing zorio-0.1.0 against master#99e3aef02079e9c10583638520cd0c134dc3a01d for pr-85530 [INFO] extracting crate zorio 0.1.0 into /workspace/builds/worker-9/source [INFO] validating manifest of crates.io crate zorio 0.1.0 on toolchain 99e3aef02079e9c10583638520cd0c134dc3a01d [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+99e3aef02079e9c10583638520cd0c134dc3a01d" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate zorio 0.1.0 [INFO] finished tweaking crates.io crate zorio 0.1.0 [INFO] tweaked toml for crates.io crate zorio 0.1.0 written to /workspace/builds/worker-9/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+99e3aef02079e9c10583638520cd0c134dc3a01d" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+99e3aef02079e9c10583638520cd0c134dc3a01d" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/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:20528e8c29e4536546f0102ce88568b16ea7538393a33fcca951030f7af10457" "/opt/rustwide/cargo-home/bin/cargo" "+99e3aef02079e9c10583638520cd0c134dc3a01d" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] a35cd64bb91eab10eb12322440cc2f6770005c183bd11511658dcbc694087d43 [INFO] running `Command { std: "docker" "start" "-a" "a35cd64bb91eab10eb12322440cc2f6770005c183bd11511658dcbc694087d43", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "a35cd64bb91eab10eb12322440cc2f6770005c183bd11511658dcbc694087d43", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a35cd64bb91eab10eb12322440cc2f6770005c183bd11511658dcbc694087d43", kill_on_drop: false }` [INFO] [stdout] a35cd64bb91eab10eb12322440cc2f6770005c183bd11511658dcbc694087d43 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/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=forbid" "-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:20528e8c29e4536546f0102ce88568b16ea7538393a33fcca951030f7af10457" "/opt/rustwide/cargo-home/bin/cargo" "+99e3aef02079e9c10583638520cd0c134dc3a01d" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 3081b9828dc2ca582bc15a1b0ae62e028d34901b5e938faa4a91fac7870d3b66 [INFO] running `Command { std: "docker" "start" "-a" "3081b9828dc2ca582bc15a1b0ae62e028d34901b5e938faa4a91fac7870d3b66", kill_on_drop: false }` [INFO] [stderr] Compiling memchr v2.4.0 [INFO] [stderr] Compiling zorio v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:299:33 [INFO] [stdout] | [INFO] [stdout] 299 | struct Guard<'a> { buf: &'a mut Vec, len: usize } [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:326:26 [INFO] [stdout] | [INFO] [stdout] 326 | where F: FnOnce(&mut Vec) -> Result [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/io.rs:325:34 [INFO] [stdout] | [INFO] [stdout] 325 | fn append_to_string(buf: &mut String, f: F) -> Result [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:352:55 [INFO] [stdout] | [INFO] [stdout] 352 | fn read_to_end(r: &mut R, buf: &mut Vec) -> Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:357:61 [INFO] [stdout] | [INFO] [stdout] 357 | ... buf: &mut Vec, [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:598:41 [INFO] [stdout] | [INFO] [stdout] 598 | fn read_to_end(&mut self, buf: &mut Vec) -> Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/io.rs:641:44 [INFO] [stdout] | [INFO] [stdout] 641 | fn read_to_string(&mut self, buf: &mut String) -> Result { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:1242:68 [INFO] [stdout] | [INFO] [stdout] 1242 | fn read_until(r: &mut R, delim: u8, buf: &mut Vec) [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:1446:50 [INFO] [stdout] | [INFO] [stdout] 1446 | fn read_until(&mut self, byte: u8, buf: &mut Vec) -> Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/io.rs:1505:39 [INFO] [stdout] | [INFO] [stdout] 1505 | fn read_line(&mut self, buf: &mut String) -> Result { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:1901:41 [INFO] [stdout] | [INFO] [stdout] 1901 | fn read_to_end(&mut self, buf: &mut Vec) -> Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:1974:24 [INFO] [stdout] | [INFO] [stdout] 1974 | type Item = Result>; [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/io.rs:1976:41 [INFO] [stdout] | [INFO] [stdout] 1976 | fn next(&mut self) -> Option>> { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `Vec` [INFO] [stdout] --> src/io.rs:1977:23 [INFO] [stdout] | [INFO] [stdout] 1977 | let mut buf = Vec::new(); [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/io.rs:2005:24 [INFO] [stdout] | [INFO] [stdout] 2005 | type Item = Result; [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/io.rs:2007:41 [INFO] [stdout] | [INFO] [stdout] 2007 | fn next(&mut self) -> Option> { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `String` [INFO] [stdout] --> src/io.rs:2008:23 [INFO] [stdout] | [INFO] [stdout] 2008 | let mut buf = String::new(); [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/cursor.rs:255:43 [INFO] [stdout] | [INFO] [stdout] 255 | fn vec_write(pos_mut: &mut u64, vec: &mut Vec, buf: &[u8]) -> io::Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/cursor.rs:291:35 [INFO] [stdout] | [INFO] [stdout] 291 | impl<'a> Write for Cursor<&'a mut Vec> { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/cursor.rs:299:23 [INFO] [stdout] | [INFO] [stdout] 299 | impl Write for Cursor> { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Box` in this scope [INFO] [stdout] --> src/cursor.rs:307:23 [INFO] [stdout] | [INFO] [stdout] 307 | impl Write for Cursor> { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing this struct [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::v1::Box; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/impls.rs:24:41 [INFO] [stdout] | [INFO] [stdout] 24 | fn read_to_end(&mut self, buf: &mut Vec) -> io::Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/impls.rs:29:44 [INFO] [stdout] | [INFO] [stdout] 29 | fn read_to_string(&mut self, buf: &mut String) -> io::Result { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/impls.rs:70:50 [INFO] [stdout] | [INFO] [stdout] 70 | fn read_until(&mut self, byte: u8, buf: &mut Vec) -> io::Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/impls.rs:75:39 [INFO] [stdout] | [INFO] [stdout] 75 | fn read_line(&mut self, buf: &mut String) -> io::Result { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Box` in this scope [INFO] [stdout] --> src/impls.rs:81:33 [INFO] [stdout] | [INFO] [stdout] 81 | impl Read for Box { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::v1::Box; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Box; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/impls.rs:93:41 [INFO] [stdout] | [INFO] [stdout] 93 | fn read_to_end(&mut self, buf: &mut Vec) -> io::Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/impls.rs:98:44 [INFO] [stdout] | [INFO] [stdout] 98 | fn read_to_string(&mut self, buf: &mut String) -> io::Result { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Box` in this scope [INFO] [stdout] --> src/impls.rs:108:35 [INFO] [stdout] | [INFO] [stdout] 108 | impl Write for Box { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::v1::Box; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Box; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Box` in this scope [INFO] [stdout] --> src/impls.rs:126:33 [INFO] [stdout] | [INFO] [stdout] 126 | impl Seek for Box { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::v1::Box; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Box; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Box` in this scope [INFO] [stdout] --> src/impls.rs:131:39 [INFO] [stdout] | [INFO] [stdout] 131 | impl BufRead for Box { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::v1::Box; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Box; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/impls.rs:139:50 [INFO] [stdout] | [INFO] [stdout] 139 | fn read_until(&mut self, byte: u8, buf: &mut Vec) -> io::Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `String` in this scope [INFO] [stdout] --> src/impls.rs:144:39 [INFO] [stdout] | [INFO] [stdout] 144 | fn read_line(&mut self, buf: &mut String) -> io::Result { [INFO] [stdout] | ^^^^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::string::String; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::String; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/impls.rs:203:41 [INFO] [stdout] | [INFO] [stdout] 203 | fn read_to_end(&mut self, buf: &mut Vec) -> io::Result { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0412]: cannot find type `Vec` in this scope [INFO] [stdout] --> src/impls.rs:252:16 [INFO] [stdout] | [INFO] [stdout] 252 | impl Write for Vec { [INFO] [stdout] | ^^^ not found in this scope [INFO] [stdout] | [INFO] [stdout] help: consider importing one of these items [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::vec::Vec; [INFO] [stdout] | [INFO] [stdout] 1 | use crate::impls::v1::Vec; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `alloc::prelude::*` [INFO] [stdout] --> src/io.rs:262:5 [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::prelude::*; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_imports)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `alloc::prelude::*` [INFO] [stdout] --> src/cursor.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::*; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unused import: `alloc::prelude::*` [INFO] [stdout] --> src/impls.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::*; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'alloc_prelude' [INFO] [stdout] --> src/io.rs:262:5 [INFO] [stdout] | [INFO] [stdout] 262 | use alloc::prelude::*; [INFO] [stdout] | ^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #58935 for more information [INFO] [stdout] = help: add `#![feature(alloc_prelude)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'alloc_prelude' [INFO] [stdout] --> src/cursor.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::*; [INFO] [stdout] | ^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #58935 for more information [INFO] [stdout] = help: add `#![feature(alloc_prelude)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0658]: use of unstable library feature 'alloc_prelude' [INFO] [stdout] --> src/impls.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use alloc::prelude::*; [INFO] [stdout] | ^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: see issue #58935 for more information [INFO] [stdout] = help: add `#![feature(alloc_prelude)]` to the crate attributes to enable [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 38 previous errors; 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0412, E0433, E0658. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0412`. [INFO] [stdout] [INFO] [stderr] error: could not compile `zorio` [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `Command { std: "docker" "inspect" "3081b9828dc2ca582bc15a1b0ae62e028d34901b5e938faa4a91fac7870d3b66", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3081b9828dc2ca582bc15a1b0ae62e028d34901b5e938faa4a91fac7870d3b66", kill_on_drop: false }` [INFO] [stdout] 3081b9828dc2ca582bc15a1b0ae62e028d34901b5e938faa4a91fac7870d3b66